17 lines
437 B
PHP
17 lines
437 B
PHP
<?php
|
|
defined('BASEPATH') or exit('No direct script access allowed');
|
|
|
|
class App_paic_users_model extends HD_Model
|
|
{
|
|
private $table_name = 'lc_app_paic_users';
|
|
|
|
const BELONG_TO_LIST = ['电销', '创展', '寿险'];
|
|
const STATUS_NORMAL = 0; //状态正常
|
|
const STATUS_DISABLE = 0; //状态禁用
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct($this->table_name, 'default');
|
|
}
|
|
}
|