DPay.Class.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace Jobs\Dao\Finance;
  3. use Jobs\Dao\BaseDao;
  4. class DPay extends BaseDao
  5. {
  6. public function __construct($serviceDB = 'default')
  7. {
  8. $this->_table = 'qianniao_pay_receipt_1_201901';
  9. $this->_primary = 'id';
  10. $this->_fields = [
  11. 'id',//int(11) NOT NULL AUTO_INCREMENT 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. 'sourceNo',//char(25) DEFAULT NULL COMMENT '源订单号',
  16. 'purchaseId',
  17. 'createTime',//int(11) DEFAULT NULL COMMENT '创建时间',
  18. 'updateTime',//int(11) DEFAULT NULL COMMENT '修改时间',
  19. 'financeTypeId',//int(10) DEFAULT NULL COMMENT '财务类型id',
  20. 'financeType',//varchar(50) DEFAULT NULL COMMENT '财务类型名称',
  21. 'discountMoney',//float(10,2) DEFAULT NULL COMMENT '优惠金额',
  22. 'payMoney',//float(10,2) DEFAULT NULL COMMENT '实际应付金额',
  23. 'shopId',//int(11) DEFAULT NULL COMMENT '商铺Id',
  24. 'shopName',//varchar(50) DEFAULT NULL COMMENT '商铺名称',
  25. 'deleteStatus',//tinyint(1) DEFAULT NULL COMMENT '删除状态',
  26. 'auditStatus',//tinyint(1) NOT NULL COMMENT '审核状态(1未审核 2已审核)',
  27. 'receiptTypeId',//tinyint(2) DEFAULT NULL COMMENT '应付单据类型',
  28. ];
  29. $this->_readonly = ['id'];
  30. $this->_create_autofill = [
  31. 'createTime' => time()
  32. ];
  33. $this->_update_autofill = [
  34. 'updateTime' => time()
  35. ];
  36. parent::__construct($serviceDB);
  37. }
  38. }