| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Model;
- class RD extends UseScopeBaseModel
- {
- protected $guarded = [];
- protected $table = "rd"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- const employee_column = "crt_id";
- public static $field = ['order_number','id','item_id','start_time_hour','crt_time','order_time','crt_id','start_time_min','end_time_hour','end_time_min','total_hours'];
- protected $dateFormat = 'U';
- const type_one = 1;
- const type_two = 2;
- public static $type_name = [
- self::type_one => '研发人员工时单',
- self::type_two => '研发设备工时单',
- ];
- }
|