| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class RdDetails extends Model
- {
- protected $guarded = [];
- protected $table = "rd_details"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- public static $field = ['rd_id','id','type','data_id'];
- const type_one = 1;
- const type_two = 2;
- public static $type_name = [
- self::type_one => '研发人',
- self::type_two => '研发设备',
- ];
- }
|