| 12345678910111213141516171819202122232425 | <?phpnamespace App\Model;use Illuminate\Database\Eloquent\Model;class BasicType extends Model{    protected $table = "basic_type"; //指定表    const CREATED_AT = 'crt_time';    const UPDATED_AT = 'upd_time';    protected $dateFormat = 'U';    public static $type = [        1 => '客户意向类型',        2 => '客户来源类型',        3 => '客户类型',        4 => '客户电话类型',        5 => '进展阶段类型',        6 => '客户状态类型',        7 => '决策关系类型',        8 => '级别类型',        9 => '状态类型',    ];}
 |