12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace JinDouYun\Dao\GoodsCategory;
- use JinDouYun\Dao\BaseDao;
- class DGoodsCategory extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'goods_category';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "code",
- "images",
- "pid",
- "sort",
- "title",
- "notCustomerType",
- "extends",
- "enableStatus",
- "deleteStatus",
- "createTime",
- "updateTime",
- "link",
- "adImage",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- $this->_update_autofill = [
- 'updateTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|