123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- namespace JinDouYun\Dao\Merchant;
- use JinDouYun\Dao\BaseDao;
- class DMerchantApply extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'merchant_apply';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "enterpriseId",
- "userCenterId",
- "groupId",
- "name",
- "desc",
- 'license',
- "category",
- "provinceCode",
- "cityCode",
- "districtCode",
- "address",
- "latitude",
- "longitude",
- "contactName",
- "contactMobile",
- "info",
- "settleType",
- "settle",
- "auditType",
- "audit",
- "settingType",
- "setting",
- "enabledStatus",
- "auditStatus",
- 'auditFailReason',
- "deleteStatus",
- "expireTime",
- "auditTime",
- "deleteTime",
- "createTime",
- "updateTime",
- "extend",
- "balance",
- "waitAuditWithdraw",
- "auditWithdraw",
- "withdraw" .
- "totalMoney",
- "orderNum",
- "auditOrderNum",
- "finishOrderNum",
- "notOrderNum",
- "passOrderNum",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- $this->_update_autofill = [
- 'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|