1234567891011121314151617181920212223242526 |
- <?php
- namespace app\model;
- class commission extends \think\Model
- {
- protected $schema = [
- 'id' => 'int',
- 'order_id' => 'int',
- 'no' => 'string',
- 'year' => 'int',
- 'month' => 'int',
- 'contract_no' => 'string',
- 'time'=> 'date',
- 'general_money' => 'int',
- 'special_money' => 'int',
- 'company_id' => 'int',
- 'company_name' => 'string',
- 'seller_id' => 'int',
- 'seller_name' => 'string',
- 'department_id' => 'int',
- 'department_name' => 'string',
- 'remark' => 'string',
- 'create_time' => 'int'
- ];
- }
|