RdDetails.php 516 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class RdDetails extends Model
  5. {
  6. protected $guarded = [];
  7. protected $table = "rd_details"; //指定表
  8. const CREATED_AT = 'crt_time';
  9. const UPDATED_AT = 'upd_time';
  10. protected $dateFormat = 'U';
  11. public static $field = ['rd_id','id','type','data_id'];
  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. }