DCustomerCardNum.Class.php 916 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * 打卡时间模板
  4. * Created by PhpStorm.
  5. * User: wxj
  6. * Date: 2019/10/31
  7. * Time: 15:02
  8. */
  9. namespace JinDouYun\Dao\Customer;
  10. use JinDouYun\Dao\BaseDao;
  11. class DCustomerCardNum extends BaseDao
  12. {
  13. public function __construct($serviceDB = 'default')
  14. {
  15. $this->_table = 'customer_card_num';
  16. $this->_primary = 'id';
  17. $this->_fields = [
  18. 'id', //int unsigned NOT NULL AUTO_INCREMENT,
  19. 'customer_card',// int NOT NULL COMMENT '持有优惠卡id',
  20. 'enterprise_id',// int NOT NULL,
  21. 'customer_id',// int NOT NULL COMMENT '客户id',
  22. 'project_id',// int NOT NULL,
  23. 'number',// int NOT NULL,
  24. 'createTime',// int NOT NULL,
  25. ];
  26. $this->_readonly = ['id'];
  27. $this->_create_autofill = [
  28. 'createTime' => time()
  29. ];
  30. parent::__construct($serviceDB);
  31. }
  32. }