DepartTips.php 470 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\model;
  3. class DepartTips extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'year' =>'int',//指标年份
  9. 'month' =>'int',//指标月份
  10. 'depart_item' =>'varchar',//部门
  11. 'depart_id' =>'int',//
  12. 'total_tips' =>'decimal',//业绩指标
  13. 'is_del' =>'int',//是否删除
  14. 'addtime' =>'datetime',//
  15. ];
  16. }