12345678910111213141516171819 |
- <?php
- namespace app\cxinv\model;
- class DepartCompany extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'companyNo' =>'varchar',//业务公司
- 'companyName' =>'varchar',//
- 'type' =>'tinyint',//类型 1 直营 2渠道 3采购供货
- 'day_time' =>'date',//
- 'sale_total' =>'decimal',//
- 'th_total' =>'decimal',//
- 'cgd_total' =>'decimal',//
- 'addtime' =>'datetime',//
- 'cgd_th_total' =>'decimal',//
- ];
- }
|