DepartEveryday.php 742 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\cxinv\model;
  3. class DepartEveryday extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'depart_id' =>'bigint',//部门id
  9. 'depart_name' =>'varchar',//部门名称
  10. 'day_time' =>'date',//
  11. 'sale_total' =>'decimal',//销售额含退货
  12. 'th_total' =>'decimal',//退货总额当天
  13. 'zy_sale_total' =>'decimal',//直营净销售额
  14. 'channel_sale_total' =>'decimal',//渠道净销售额
  15. 'cgd_total' =>'decimal',//采购额
  16. 'cgd_th_total' =>'decimal',//采购退货额
  17. 'companyNo' =>'varchar',//业务公司
  18. 'companyName' =>'varchar',//业务公司
  19. 'addtime' =>'datetime',//
  20. ];
  21. }