123456789101112131415161718 |
- <?php
- namespace app\admin\model;
- class DepartTips extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'year' =>'int',//指标年份
- 'month' =>'int',//指标月份
- 'depart_item' =>'varchar',//部门
- 'depart_id' =>'int',//
- 'total_tips' =>'decimal',//业绩指标
- 'is_del' =>'int',//是否删除
- 'addtime' =>'datetime',//
- ];
- }
|