12345678910111213141516171819 |
- <?php
- namespace app\cxinv\model;
- class DepartCompany extends Base
- {
- protected $schema = [
- 'id' =>'bigint',
- 'companyNo' =>'varchar',
- 'companyName' =>'varchar',
- 'type' =>'tinyint',
- 'day_time' =>'date',
- 'sale_total' =>'decimal',
- 'th_total' =>'decimal',
- 'cgd_total' =>'decimal',
- 'addtime' =>'datetime',
- 'cgd_th_total' =>'decimal',
- ];
- }
|