| 1234567891011121314151617 |
- <?php
- namespace App\Model;
- class DailyDwOrder extends DataScopeBaseModel
- {
- //设备日工时单
- protected $table = "daily_dw_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','order_time', 'item_id'];
- const Order_type = "daily_dw_order";
- }
|