12345678910111213141516171819202122 |
- <?php
- namespace app\cxinv\model;
- class DepartEveryday extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'depart_id' =>'bigint',//部门id
- 'depart_name' =>'varchar',//部门名称
- 'day_time' =>'date',//
- 'sale_total' =>'decimal',//销售额含退货
- 'th_total' =>'decimal',//退货总额当天
- 'zy_sale_total' =>'decimal',//直营净销售额
- 'channel_sale_total' =>'decimal',//渠道净销售额
- 'cgd_total' =>'decimal',//采购额
- 'cgd_th_total' =>'decimal',//采购退货额
- 'companyNo' =>'varchar',//业务公司
- 'companyName' =>'varchar',//业务公司
- 'addtime' =>'datetime',//
- ];
- }
|