| 1234567891011121314151617181920212223242526272829303132333435 | <?phpnamespace App\Model;use Illuminate\Database\Eloquent\Model;class CustomerInfo extends Model{    protected $table = "customer_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; // 联系人    const type_five = 5; // 图片    const type_six = 6; // 文件    const type_nine = 9; //前负责人    public static $type = [        self::type_one,        self::type_two,        self::type_three,        self::type_four,        self::type_five,        self::type_six,    ];    public static $contact_type = [        1 => '手机',        2 => '电话',        3 => '微信号',        4 => '其他',    ];}
 |