| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Model;
- class OrganizationDetails extends UseScopeBaseModel
- {
- protected $table = "organization_details"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const type_one = 1;
- const type_two = 2;
- const type_three = 3;
- const type_four = 4;
- const type_five = 5;
- const type_six = 6;
- const type_seven = 7;
- public static $type_name = [
- self::type_one => '上级单位',
- self::type_two => '下级单位',
- self::type_three => '营收信息',
- self::type_four => '主营业务',
- self::type_five => '主要需求',
- self::type_six => '竟对主要需求',
- self::type_seven => '客户主要需求',
- ];
- }
|