1234567891011121314151617181920212223 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- class ContactsInfo extends Model
- {
- protected $table = "contacts_info"; //指定表
- 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; // 协同人
- public static $type = [
- self::type_one,
- self::type_two,
- self::type_three,
- self::type_four,
- ];
- }
|