12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class BusinessOpportunityInfo extends Model
- {
- protected $table = "business_opportunity_info"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const type_one = 1; // 联系方式
- const type_five = 5; // 图片
- const type_six = 6; // 文件
- public static $type = [
- self::type_one,
- self::type_five,
- self::type_six,
- ];
- public static $contact_type = [
- 1 => '手机',
- 2 => '电话',
- 3 => '微信号',
- 4 => '其他',
- ];
- }
|