RD.php 710 B

123456789101112131415161718192021222324
  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. public static $field_2 = ['a.belong_month','a.type','b.id'];
  12. protected $dateFormat = 'U';
  13. const type_one = 1;
  14. const type_two = 2;
  15. public static $type_name = [
  16. self::type_one => '研发人员工时单',
  17. self::type_two => '研发设备工时单',
  18. ];
  19. }