265 lines
3.9 KiB
PHP
265 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
class TabConf
|
|
{
|
|
|
|
/**
|
|
* 企业员工
|
|
*/
|
|
static $__fa_firmemployee = '__fa_firmemployee';
|
|
|
|
|
|
/**
|
|
* 管理员表
|
|
*/
|
|
static $fa_admin = 'fa_admin';
|
|
|
|
|
|
/**
|
|
* 管理员日志表
|
|
*/
|
|
static $fa_admin_log = 'fa_admin_log';
|
|
|
|
|
|
/**
|
|
* AI客服管理
|
|
*/
|
|
static $fa_aicustomerservice = 'fa_aicustomerservice';
|
|
|
|
|
|
/**
|
|
* API颁发token
|
|
*/
|
|
static $fa_api_keys = 'fa_api_keys';
|
|
|
|
|
|
/**
|
|
* api日志审计
|
|
*/
|
|
static $fa_api_logs = 'fa_api_logs';
|
|
|
|
|
|
/**
|
|
* 地区表
|
|
*/
|
|
static $fa_area = 'fa_area';
|
|
|
|
|
|
/**
|
|
* 附件表
|
|
*/
|
|
static $fa_attachment = 'fa_attachment';
|
|
|
|
|
|
/**
|
|
* 分组表
|
|
*/
|
|
static $fa_auth_group = 'fa_auth_group';
|
|
|
|
|
|
/**
|
|
* 权限分组表
|
|
*/
|
|
static $fa_auth_group_access = 'fa_auth_group_access';
|
|
|
|
|
|
/**
|
|
* 节点表
|
|
*/
|
|
static $fa_auth_rule = 'fa_auth_rule';
|
|
|
|
|
|
/**
|
|
* 分类表
|
|
*/
|
|
static $fa_category = 'fa_category';
|
|
|
|
|
|
/**
|
|
* 在线命令表
|
|
*/
|
|
static $fa_command = 'fa_command';
|
|
|
|
|
|
/**
|
|
* 系统配置
|
|
*/
|
|
static $fa_config = 'fa_config';
|
|
|
|
|
|
/**
|
|
* 邮箱验证码表
|
|
*/
|
|
static $fa_ems = 'fa_ems';
|
|
|
|
|
|
/**
|
|
* 合作企业
|
|
*/
|
|
static $fa_firm = 'fa_firm';
|
|
|
|
|
|
/**
|
|
* 大类
|
|
*/
|
|
static $fa_firmbigcategory = 'fa_firmbigcategory';
|
|
|
|
|
|
/**
|
|
* 企业客户信息
|
|
*/
|
|
static $fa_firmcustomer = 'fa_firmcustomer';
|
|
|
|
|
|
/**
|
|
* 客户回访记录
|
|
*/
|
|
static $fa_firmcustomerfollowuprecord = 'fa_firmcustomerfollowuprecord';
|
|
|
|
|
|
/**
|
|
* 回访发送时间列表
|
|
*/
|
|
static $fa_firmcustomerfollowuptimelist = 'fa_firmcustomerfollowuptimelist';
|
|
|
|
|
|
/**
|
|
* 客户来源
|
|
*/
|
|
static $fa_firmcustomerorigin = 'fa_firmcustomerorigin';
|
|
|
|
|
|
/**
|
|
* 职务
|
|
*/
|
|
static $fa_firmduty = 'fa_firmduty';
|
|
|
|
|
|
/**
|
|
* 回访模板
|
|
*/
|
|
static $fa_firmfollowuptemplate = 'fa_firmfollowuptemplate';
|
|
|
|
|
|
/**
|
|
* 回访模板回访时间列表
|
|
*/
|
|
static $fa_firmfollowuptemplatetimelist = 'fa_firmfollowuptemplatetimelist';
|
|
|
|
|
|
/**
|
|
* 注意事项
|
|
*/
|
|
static $fa_firmnotespoints = 'fa_firmnotespoints';
|
|
|
|
|
|
/**
|
|
* 门店
|
|
*/
|
|
static $fa_firmstore = 'fa_firmstore';
|
|
|
|
|
|
/**
|
|
* 店铺一级项目
|
|
*/
|
|
static $fa_firmstoreprojectsone = 'fa_firmstoreprojectsone';
|
|
|
|
|
|
/**
|
|
* 店铺二级项目
|
|
*/
|
|
static $fa_firmstoreprojectstwo = 'fa_firmstoreprojectstwo';
|
|
|
|
|
|
/**
|
|
* 标签
|
|
*/
|
|
static $fa_firmtags = 'fa_firmtags';
|
|
|
|
|
|
/**
|
|
* 短信验证码表
|
|
*/
|
|
static $fa_sms = 'fa_sms';
|
|
|
|
|
|
/**
|
|
* 系统维护配置,支持模块、控制器、方法。全等匹配。
|
|
*/
|
|
static $fa_sys_maintain_config = 'fa_sys_maintain_config';
|
|
|
|
|
|
/**
|
|
* 测试表
|
|
*/
|
|
static $fa_test = 'fa_test';
|
|
|
|
|
|
/**
|
|
* 会员表
|
|
*/
|
|
static $fa_user = 'fa_user';
|
|
|
|
|
|
/**
|
|
* 会员组表
|
|
*/
|
|
static $fa_user_group = 'fa_user_group';
|
|
|
|
|
|
/**
|
|
* 会员余额变动表
|
|
*/
|
|
static $fa_user_money_log = 'fa_user_money_log';
|
|
|
|
|
|
/**
|
|
* 会员规则表
|
|
*/
|
|
static $fa_user_rule = 'fa_user_rule';
|
|
|
|
|
|
/**
|
|
* 会员积分变动表
|
|
*/
|
|
static $fa_user_score_log = 'fa_user_score_log';
|
|
|
|
|
|
/**
|
|
* 会员Token表
|
|
*/
|
|
static $fa_user_token = 'fa_user_token';
|
|
|
|
|
|
/**
|
|
* 用户
|
|
*/
|
|
static $fa_users = 'fa_users';
|
|
|
|
|
|
/**
|
|
* 用户操作日志
|
|
*/
|
|
static $fa_users_operate_log = 'fa_users_operate_log';
|
|
|
|
|
|
/**
|
|
* 版本表
|
|
*/
|
|
static $fa_version = 'fa_version';
|
|
|
|
|
|
/**
|
|
* 微信群信息表
|
|
*/
|
|
static $fa_wechatchatroom = 'fa_wechatchatroom';
|
|
|
|
|
|
/**
|
|
* 微信社群成员表
|
|
*/
|
|
static $fa_wechatgroupmember = 'fa_wechatgroupmember';
|
|
|
|
} |