RD.php 645 B

1234567891011121314151617181920212223
  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. const type_one = 1;
  13. const type_two = 2;
  14. public static $type_name = [
  15. self::type_one => '研发人员工时单',
  16. self::type_two => '研发设备工时单',
  17. ];
  18. }