| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Model;
- class QuantizationCreate extends UseScopeBaseModel
- {
- protected $table = "quantization_create"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const employee_column = "crt_id";
- public static $field = ['data_id','data_title','id','crt_time','crt_id','type','products','score','start_time','end_time','quantization_id','address', 'man_mark', 'address_title'];
- const type_one = 1;
- const type_two = 2;
- const type_three = 3;
- public static $type_name = [
- self::type_one => '能力量化',
- self::type_two => '合作现状量化',
- self::type_three => '人物记忆',
- ];
- }
|