123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace JinDouYun\Dao\Manage;
- use JinDouYun\Dao\BaseDao;
- class DReservation extends BaseDao
- {
- public function __construct($serviceDB = 'manage')
- {
- $this->_table = 'reservation';
- $this->_primary = 'id';
- $this->_fields = [
- "id",
- "mobile",
- "createTime",
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- ];
- $this->_update_autofill = [
- ];
- parent::__construct($serviceDB);
- }
- }
|