Files
liche/common/models/receiver/Receiver_customers_model.php
T
2021-07-22 15:46:17 +08:00

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;
}
}