DReceivedReceiptCheckQueue.Class.php 891 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: wxj
  5. * Date: 2020/3/11
  6. * Time: 16:17
  7. */
  8. namespace JinDouYun\Dao\Finance;
  9. use JinDouYun\Dao\BaseDao;
  10. class DReceivedReceiptCheckQueue extends BaseDao
  11. {
  12. public function __construct($serviceDB = 'default')
  13. {
  14. $this->_table = 'received_receipt_check_queue';
  15. $this->_primary = 'id';
  16. $this->_fields = [
  17. 'id',//int(11) NOT NULL AUTO_INCREMENT,
  18. 'enterpriseId',//int(11) NOT NULL COMMENT '企业id',
  19. 'receivedNo',// varchar(50) NOT NULL COMMENT '收款单编号',
  20. 'createTime',// int(11) DEFAULT NULL,
  21. ];
  22. $this->_readonly = ['id'];
  23. $this->_create_autofill = [
  24. //'createTime' => time()
  25. ];
  26. $this->_update_autofill = [
  27. //'updateTime' => time()
  28. ];
  29. parent::__construct($serviceDB);
  30. }
  31. }