DReceive.Class.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. namespace JinDouYun\Dao\Finance;
  3. use JinDouYun\Dao\BaseDao;
  4. class DReceive extends BaseDao
  5. {
  6. public function __construct($serviceDB = 'default')
  7. {
  8. $this->_table = 'qianniao_receive_receipt_1';
  9. $this->_primary = 'id';
  10. $this->_fields = [
  11. 'id',//int(11) NOT NULL COMMENT '应收单据id',
  12. 'customerId',//int(11) DEFAULT NULL COMMENT '客户Id',
  13. 'customerName',//varchar(50) DEFAULT NULL COMMENT '客户名称',
  14. 'no',//char(25) DEFAULT NULL COMMENT '应收单据编号',
  15. 'originId',//int(11) DEFAULT '0' COMMENT '订单id',
  16. 'sourceNo',//char(25) DEFAULT NULL COMMENT '原单号No',
  17. 'originNo',//char(50) DEFAULT NULL COMMENT '订单no',
  18. 'sourceId',//int(11) DEFAULT NULL COMMENT '原单号id',
  19. 'createTime',//int(11) DEFAULT NULL COMMENT '创建时间',
  20. 'updateTime',//int(11) DEFAULT NULL COMMENT '修改时间',
  21. 'financeTypeId',//int(10) DEFAULT NULL COMMENT '财务类型id',
  22. 'financeType',//varchar(255) DEFAULT NULL COMMENT '财务类型名称',
  23. 'discountMoney',//decimal(15,4) DEFAULT NULL COMMENT '优惠金额',
  24. 'receiveMoney',//decimal(15,4) DEFAULT NULL COMMENT '实际应收金额',
  25. 'shopId',//int(11) DEFAULT NULL COMMENT '商铺Id',
  26. 'shopName',//varchar(50) DEFAULT NULL COMMENT '商铺名称',
  27. 'offsetMoney',//decimal(15,4) DEFAULT '0.0000' COMMENT '核销金额',
  28. 'notOffsetMoney',//decimal(15,4) DEFAULT '0.0000' COMMENT '未核销金额',
  29. 'offsetStatus',//tinyint(1) unsigned DEFAULT '4' COMMENT '核销状态 5全部核销/4部分核销',
  30. 'deleteStatus',//tinyint(1) DEFAULT '5' COMMENT '删除状态',
  31. 'auditStatus',//tinyint(1) DEFAULT '1' COMMENT '审核状态(2审核成功 1待审核)',
  32. 'receiptTypeId',//tinyint(2) DEFAULT NULL COMMENT '单据类型',
  33. ];
  34. $this->_readonly = ['id'];
  35. $this->_create_autofill = [
  36. 'createTime' => time()
  37. ];
  38. $this->_update_autofill = [
  39. 'updateTime' => time()
  40. ];
  41. parent::__construct($serviceDB);
  42. }
  43. }