DShopCardOrder.Class.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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\Shop;
  10. use JinDouYun\Dao\BaseDao;
  11. class DShopCardOrder extends BaseDao
  12. {
  13. public function __construct($serviceDB = 'default')
  14. {
  15. $this->_table = 'shop_card_order';
  16. $this->_primary = 'id';
  17. $this->_fields = [
  18. "id",// int unsigned NOT NULL AUTO_INCREMENT,
  19. "enterprise_id",// int NOT NULL COMMENT '门店id',
  20. "card_id", //int NOT NULL COMMENT '购买优惠卡',
  21. "customer_id",// int NOT NULL COMMENT '客户id',
  22. "order_id",// varchar(255) COLLATE utf8mb4_general_ci NOT NULL,
  23. "ot_price",// decimal(10,2) NOT NULL COMMENT '总金额',
  24. "pay_price", //decimal(10,2) NOT NULL COMMENT '实际支付金额',
  25. "paid",// int NOT NULL COMMENT '0未支付1已支付',
  26. 'pay_type', // tinyint NOT NULL COMMENT '1余额2微信3支付宝',
  27. "createTime",// int NOT NULL,
  28. ];
  29. $this->_readonly = ['id'];
  30. $this->_create_autofill = [
  31. 'createTime' => time()
  32. ];
  33. parent::__construct($serviceDB);
  34. }
  35. }