| 1234567891011121314151617 |
- <?php
- namespace App\Model;
- class MonthlyPsOrder extends DataScopeBaseModel
- {
- //人员月度工资单
- protected $table = "monthly_ps_order"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const employee_column = "crt_id";
- public static $field = ['id','code','crt_id','crt_time','month'];
- const Order_type = "monthly_ps_order";
- }
|