123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * 新分销合伙人表
- */
- namespace JinDouYun\Dao\CommissionPartner;
- use JinDouYun\Dao\BaseDao;
- class DNewCommissionPartner extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'new_commission_partner';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "userCenterId",
- "customerId",
- "balance",
- "waitMoney",
- "withdraw",
- "totalMoney",
- "deleteStatus",
- "createTime",
- "updateTime",
- "expand",
- ];
- $this->_readonly = ['id'];
- parent::__construct($serviceDB);
- }
- }
|