123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace JinDouYun\Dao\Department;
- use JinDouYun\Dao\BaseDao;
- class DStaffLadderRecord extends BaseDao
- {
- public function __construct($serviceDB = 'default')
- {
- $this->_table = 'staff_ladder_record';
- $this->_primary = 'id';
- $this->_fields = [
- 'id',
- 'en_id',
- 'staff_id',
- 'ladder_id',
- 'createTime',
- ];
- $this->_readonly = ['id'];
- $this->_create_autofill = [
- 'createTime' => time()
- ];
- parent::__construct($serviceDB);
- }
- }
|