RD.php 454 B

12345678910111213141516
  1. <?php
  2. namespace App\Model;
  3. class RD extends UseScopeBaseModel
  4. {
  5. protected $guarded = [];
  6. protected $table = "rd"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. const employee_column = "crt_id";
  10. 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'];
  11. protected $dateFormat = 'U';
  12. }