| 1234567891011121314151617181920212223 | <?phpnamespace App\Model;class CustomerReportDepart extends UseScopeBaseModel{    protected $table = "customer_report_depart"; //指定表    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_list = [        -1 => '待跟进',        0 => '跟进中',        1 => '联系不上',        2 => '无意向',        3 => '已成交',    ];}
 |