123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- namespace JinDouYun\Dao\Department;
- use JinDouYun\Dao\BaseDao;
- class DStaffRewardDesc extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'staff_reward_desc';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "userCenterId",
- "customerId",
- "staffId",
- "shopId",
- "ruleId",
- "originId",
- "originNo",
- "title",
- "amount",
- "changeAmount",
- "type",
- "source",
- "createTime",
- "updateTime",
- "extend",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- $this->_update_autofill = [
- 'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|