DepartCompany.php 523 B

12345678910111213141516171819
  1. <?php
  2. namespace app\cxinv\model;
  3. class DepartCompany extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'companyNo' =>'varchar',//业务公司
  9. 'companyName' =>'varchar',//
  10. 'type' =>'tinyint',//类型 1 直营 2渠道 3采购供货
  11. 'day_time' =>'date',//
  12. 'sale_total' =>'decimal',//
  13. 'th_total' =>'decimal',//
  14. 'cgd_total' =>'decimal',//
  15. 'addtime' =>'datetime',//
  16. 'cgd_th_total' =>'decimal',//
  17. ];
  18. }