123456789101112131415 |
- <?php
- namespace App\Model;
- class SalaryEmployee extends UseScopeBaseModel
- {
- protected $guarded = [];
- protected $table = "salary_employee"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- const employee_column = 'employee_id_1';
- protected $dateFormat = 'U';
- public static $field = ['id','order_time','order_type','payment_amount','payment_amount_not_include_activity','payment_amount_activity','payment_amount_lower_than_rate','payment_amount_greater_than_rate','business','sale_bonus','index_1','pay_in_advance','basic_salary','should_pay','employee_id_1','employee_id_1_title'];
- }
|