25 lines
559 B
PHP
25 lines
559 B
PHP
<?php
|
|
/**
|
|
* Created by Vim
|
|
* User: lcc
|
|
* Date: 2021/06/29
|
|
* Time: 13:47
|
|
*/
|
|
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
class Receiver_customers_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_receiver_customers';
|
|
|
|
private $status_arr = [-1 => '删除',0 => '未见客户',1 => '到店客户',2 => '订单客户',3 => '战败客户'];
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
|
|
public function get_status(){
|
|
return $this->status_arr;
|
|
}
|
|
}
|