123456789101112131415161718192021 |
- <?php
- namespace app\cxinv\model;
- class ProductFz extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'fzCode' =>'varchar',//封账编号
- 'company_code' =>'varchar',//业务公司编号
- 'company_name' =>'varchar',//业务公司名称
- 'fz_date' =>'varchar',//封账月份
- 'remark' =>'varchar',
- 'status' =>'tinyint',//
- 'apply_id' =>'int',//
- 'apply_name' =>'varchar',//
- 'update_name' =>'varchar',//
- 'create_time' =>'datetime',//
- 'update_time' =>'datetime',//
- ];
- }
|