mirror of
https://gitee.com/zhc02/timely_service.git
synced 2025-08-01 20:27:26 +08:00
core
This commit is contained in:
parent
4432758d6c
commit
c26583505b
@ -1,15 +1,44 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* Author: baihu
|
||||
* Date: 2019/12/16
|
||||
* Time: 17:55
|
||||
*/
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
|
||||
class Kefu
|
||||
{
|
||||
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* Author: baihu
|
||||
* Date: 2019/12/16
|
||||
* Time: 17:55
|
||||
*/
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
use Logic\KefuLogic;
|
||||
class Kefu extends Base
|
||||
{
|
||||
|
||||
/**
|
||||
* 客服列表
|
||||
* @param $param
|
||||
* @return array
|
||||
*/
|
||||
public function index(){
|
||||
if (request()->isAjax()) {
|
||||
$page = input('param.page');
|
||||
$limit = input('param.limit');
|
||||
$where = [];
|
||||
if (input('param.name')) {
|
||||
$where[] = ['kf_name', '=', input('param.name')];
|
||||
}
|
||||
|
||||
if ( input('param.status') == 1 || input('param.status') ==2) {
|
||||
$where[] = ['kf_status', '=', input('param.status')];
|
||||
}
|
||||
if ( input('param.online') == 1 || input('param.online') ==2) {
|
||||
$where[] = ['online_status', '=', input('param.online')];
|
||||
}
|
||||
if (input('param.merchant')) {
|
||||
$where[] = ['mc_id', '=', input('param.merchant')];
|
||||
}
|
||||
$list = KefuLogic::getKefuByPage($where, '*', $limit);
|
||||
return $this->response->api($list->items() ? $list->items() : '',self::SUCCESS_CODE,'操作成功',['count'=>$list->total()]);
|
||||
}
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,15 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* Author: baihu
|
||||
* Date: 2019/12/16
|
||||
* Time: 17:32
|
||||
*/
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
|
||||
class User
|
||||
{
|
||||
|
||||
}
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* Author: baihu
|
||||
* Date: 2019/12/16
|
||||
* Time: 17:32
|
||||
*/
|
||||
|
||||
namespace app\admin\controller;
|
||||
|
||||
use Logic\AdminLogic;
|
||||
|
||||
class User extends Base
|
||||
|
||||
{
|
||||
|
||||
/**
|
||||
* 用户列表
|
||||
* @param $param
|
||||
* @return array
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
if (request()->isAjax()) {
|
||||
$limit = input('param.limit');
|
||||
$where = [];
|
||||
if (input('param.account')) {
|
||||
$where[] = ['account', 'like', '%' . input('param.account') . '%'];
|
||||
}
|
||||
$list = AdminLogic::getAdminList($where, '*', $limit);
|
||||
|
||||
return $this->response->api($list->items() ? $list->items() : '', self::SUCCESS_CODE, '操作成功', ['count' => $list->total()]);
|
||||
}
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,10 +1,237 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>$Title$</title>
|
||||
</head>
|
||||
<body>
|
||||
$END$
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>layui</title>
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" href="/static/lib/layui-v2.5.4/css/layui.css" media="all">
|
||||
<link rel="stylesheet" href="/static/css/public.css" media="all">
|
||||
</head>
|
||||
<style>
|
||||
#currentTableId + .layui-table-view .layui-table-body tbody > tr > td {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#currentTableId + .layui-table-view .layui-table-body tbody > tr > td > .layui-table-cell {
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
}
|
||||
|
||||
.tdImg {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
max-width: none;
|
||||
cursor: zoom-in;
|
||||
}
|
||||
|
||||
.layui-table-view {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
</style>
|
||||
<body>
|
||||
<div class="layuimini-container">
|
||||
<div class="layuimini-main">
|
||||
|
||||
<fieldset class="layui-elem-field layuimini-search">
|
||||
<legend>搜索信息</legend>
|
||||
<div style="margin: 10px 10px 10px 10px">
|
||||
<form class="layui-form layui-form-pane" action="">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-inline">
|
||||
<label class="layui-form-label">客服姓名</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" name="username" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-inline">
|
||||
<label class="layui-form-label">在线状态</label>
|
||||
<div class="layui-input-inline mr0">
|
||||
<select name="online">
|
||||
<option value="">所有</option>
|
||||
<option value="1">在线</option>
|
||||
<option value="2">离线</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-inline">
|
||||
<a class="layui-btn" lay-submit="" lay-filter="data-search-btn">搜索</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<div class="layui-btn-group">
|
||||
<button class="layui-btn data-add-btn">添加</button>
|
||||
</div>
|
||||
<table class="layui-hide" id="currentTableId" lay-filter="currentTableFilter"></table>
|
||||
<script type="text/html" id="currentTableBar">
|
||||
<a class="layui-btn layui-btn-xs data-count-edit" lay-event="edit">编辑</a>
|
||||
<a class="layui-btn layui-btn-xs layui-btn-danger data-count-delete" lay-event="delete">删除</a>
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 表单弹窗 -->
|
||||
<script type="text/html" id="modelUser">
|
||||
<form id="modelUserForm" lay-filter="modelUserForm" class="layui-form model-form" style="padding: 25px 30px 0 0;">
|
||||
<input name="kf_id" type="hidden"/>
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">客服名</label>
|
||||
<div class="layui-input-block">
|
||||
<input name="kefu_name" placeholder="请输入客服名" type="text" class="layui-input" maxlength="20"
|
||||
lay-verType="tips" lay-verify="required" required/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label">客服名</label>
|
||||
<div class="layui-input-block">
|
||||
<input name="kefu_password" placeholder="请输入客服密码" type="password" class="layui-input" maxlength="20"
|
||||
lay-verType="tips" lay-verify="required" required/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-form-item text-right" style="text-align: right;">
|
||||
<button class="layui-btn layui-btn-primary" type="button" ew-event="closePageDialog">取消</button>
|
||||
<button class="layui-btn" lay-filter="modelSubmitUser" lay-submit>保存</button>
|
||||
</div>
|
||||
</form>
|
||||
</script>
|
||||
|
||||
<script src="/static/lib/layui-v2.5.4/layui.js" charset="utf-8"></script>
|
||||
<script>
|
||||
layui.use(['form', 'table','layer'], function () {
|
||||
var $ = layui.jquery,
|
||||
form = layui.form,
|
||||
table = layui.table;
|
||||
var layer = layui.layer;
|
||||
|
||||
// 点击图片放大
|
||||
$(document).off('click.tbImg').on('click.tbImg', '[tb-img]', function () {
|
||||
layer.photos({photos: {data: [{src: $(this).attr('src')}]}, shade: .1, closeBtn: true});
|
||||
});
|
||||
table.render({
|
||||
elem: '#currentTableId',
|
||||
url: '/kefuList',
|
||||
limit:20,
|
||||
limits:[20,30,50],
|
||||
cellMinWidth: 100,
|
||||
response: {
|
||||
statusCode: 1000 //规定成功的状态码,默认:0
|
||||
},
|
||||
cols: [[
|
||||
{field: 'kefu_id', width: 80, title: 'ID', align: 'center'},
|
||||
{field: 'kefu_code', width: 200, title: '客服编码'},
|
||||
{field: 'kefu_name', title: '客服名称',align: 'center'},
|
||||
{align: 'center', templet: function (d) {
|
||||
var url = d.kefu_avatar;
|
||||
return '<img src="' + url + '" class="tdImg" tb-img/>';
|
||||
}, title: '客服头像', width: 200, unresize: true
|
||||
},
|
||||
{
|
||||
field: 'online_status', align: 'center', templet: function (d) {
|
||||
var strs = {
|
||||
1: '<span class="text-success" style="color: #0abb87;">上线</span>',
|
||||
2: '<span class="text-danger" style="color: red;">离线</span>'
|
||||
};
|
||||
return strs[d.online_status]?strs[d.online_status]:strs[2];
|
||||
}, title: '在线状态'
|
||||
},
|
||||
{field: 'create_time', title: '创建时间', minWidth: 150,align: 'center'},
|
||||
|
||||
{title: '操作', minWidth: 50, templet: '#currentTableBar', fixed: "right", align: "center"}
|
||||
]],
|
||||
page: true
|
||||
});
|
||||
|
||||
// 监听搜索操作
|
||||
form.on('submit(data-search-btn)', function (data) {
|
||||
var result = JSON.stringify(data.field);
|
||||
layer.alert(result, {
|
||||
title: '最终的搜索信息'
|
||||
});
|
||||
|
||||
//执行搜索重载
|
||||
table.reload('currentTableId', {
|
||||
page: {
|
||||
curr: 1
|
||||
}
|
||||
, where: {
|
||||
searchParams: result
|
||||
}
|
||||
}, 'data');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
// 监听添加操作
|
||||
$(".data-add-btn").on("click", function () {
|
||||
showEditModel();
|
||||
});
|
||||
|
||||
// 监听删除操作
|
||||
$(".data-delete-btn").on("click", function () {
|
||||
var checkStatus = table.checkStatus('currentTableId')
|
||||
, data = checkStatus.data;
|
||||
layer.alert(JSON.stringify(data));
|
||||
});
|
||||
|
||||
//监听表格复选框选择
|
||||
table.on('checkbox(currentTableFilter)', function (obj) {
|
||||
console.log(obj)
|
||||
});
|
||||
|
||||
table.on('tool(currentTableFilter)', function (obj) {
|
||||
var data = obj.data;
|
||||
if (obj.event === 'edit') {
|
||||
layer.alert('编辑行:<br>' + JSON.stringify(data))
|
||||
} else if (obj.event === 'delete') {
|
||||
layer.confirm('真的删除行么', function (index) {
|
||||
obj.del();
|
||||
layer.close(index);
|
||||
});
|
||||
}
|
||||
});
|
||||
// 显示表单弹窗
|
||||
function showEditModel(mUser) {
|
||||
layer.open({
|
||||
type: 1,
|
||||
title: (mUser ? '修改' : '添加') + '客服',
|
||||
area: ['500px', '400px'],
|
||||
content: $('#modelUser').html(),
|
||||
success: function (layero, dIndex) {
|
||||
$(layero).children('.layui-layer-content').css('overflow', 'visible');
|
||||
var url = mUser ? '/mer/kefu/updateKefu' : '/mer/kefu/addKefu';
|
||||
mUser && (mUser.gid = mUser.g_id);
|
||||
// 回显数据
|
||||
form.val('modelUserForm', mUser);
|
||||
// 表单提交事件
|
||||
form.on('submit(modelSubmitUser)', function (data) {
|
||||
layer.load(2);
|
||||
$.post(url, data.field, function (res) {
|
||||
layer.closeAll('loading');
|
||||
if (res.code == 1000) {
|
||||
layer.close(dIndex);
|
||||
layer.msg(res.message, {icon: 1});
|
||||
insTb.reload({}, 'data');
|
||||
} else {
|
||||
layer.msg(res.message, {icon: 2});
|
||||
}
|
||||
}, 'json');
|
||||
return false;
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
||||
<script>
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,10 +1,115 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>layui</title>
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<link rel="stylesheet" href="/static/lib/layui-v2.5.4/css/layui.css" media="all">
|
||||
<link rel="stylesheet" href="/static/css/public.css" media="all">
|
||||
</head>
|
||||
<body>
|
||||
<div class="layuimini-container">
|
||||
<div class="layuimini-main">
|
||||
|
||||
<fieldset class="layui-elem-field layuimini-search">
|
||||
<legend>搜索信息</legend>
|
||||
<div style="margin: 10px 10px 10px 10px">
|
||||
<form class="layui-form layui-form-pane" action="">
|
||||
<div class="layui-form-item">
|
||||
<div class="layui-inline">
|
||||
<label class="layui-form-label">账号</label>
|
||||
<div class="layui-input-inline">
|
||||
<input type="text" name="account" autocomplete="off" class="layui-input">
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-inline">
|
||||
<a class="layui-btn" lay-submit="" lay-filter="data-search-btn">搜索</a>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</fieldset>
|
||||
<table class="layui-hide" id="currentTableId" lay-filter="currentTableFilter"></table>
|
||||
</div>
|
||||
</div>
|
||||
<script src="/static/lib/layui-v2.5.4/layui.js" charset="utf-8"></script>
|
||||
<script>
|
||||
layui.use(['form', 'table'], function () {
|
||||
var $ = layui.jquery,
|
||||
form = layui.form,
|
||||
table = layui.table;
|
||||
|
||||
table.render({
|
||||
elem: '#currentTableId',
|
||||
url: '/user',
|
||||
limit:20,
|
||||
limits:[20,30,50],
|
||||
cellMinWidth: 100,
|
||||
response: {
|
||||
statusCode: 1000 //规定成功的状态码,默认:0
|
||||
},
|
||||
cols: [[
|
||||
{type: "checkbox", width: 50, fixed: "left"},
|
||||
{field: 'id', width: 80, title: 'ID', sort: true},
|
||||
{field: 'account', title: '用户名'},
|
||||
{field: 'create_time', title: '创建时间'},
|
||||
|
||||
]],
|
||||
|
||||
page: true
|
||||
});
|
||||
|
||||
// 监听搜索操作
|
||||
form.on('submit(data-search-btn)', function (data) {
|
||||
|
||||
//执行搜索重载
|
||||
table.reload('currentTableId', {
|
||||
page: {
|
||||
curr: 1
|
||||
}
|
||||
, where: data.field
|
||||
|
||||
}, 'data');
|
||||
|
||||
return false;
|
||||
});
|
||||
|
||||
// 监听添加操作
|
||||
$(".data-add-btn").on("click", function () {
|
||||
layer.msg('添加数据');
|
||||
});
|
||||
|
||||
// 监听删除操作
|
||||
$(".data-delete-btn").on("click", function () {
|
||||
var checkStatus = table.checkStatus('currentTableId')
|
||||
, data = checkStatus.data;
|
||||
layer.alert(JSON.stringify(data));
|
||||
});
|
||||
|
||||
//监听表格复选框选择
|
||||
table.on('checkbox(currentTableFilter)', function (obj) {
|
||||
console.log(obj)
|
||||
});
|
||||
|
||||
table.on('tool(currentTableFilter)', function (obj) {
|
||||
var data = obj.data;
|
||||
if (obj.event === 'edit') {
|
||||
layer.alert('编辑行:<br>' + JSON.stringify(data))
|
||||
} else if (obj.event === 'delete') {
|
||||
layer.confirm('真的删除行么', function (index) {
|
||||
obj.del();
|
||||
layer.close(index);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -39,4 +39,21 @@ class AdminLogic
|
||||
throw new ResponsableException('登录失败', 404);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 获取管理员列表 分页
|
||||
* @param $where 查询条件
|
||||
* @param $filed 显示字段
|
||||
* @param $page 页码
|
||||
* @param$limit 条数
|
||||
* @return array
|
||||
*/
|
||||
public static function getAdminList($where, $filed = "*", $limit = 20)
|
||||
{
|
||||
try {
|
||||
return Db::name('admin')->field($filed)->where($where)->paginate( $limit);
|
||||
} catch (Exception $e) {
|
||||
throw new ResponsableException('信息错误', 404);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -11,11 +11,28 @@ namespace Logic;
|
||||
use exception\LogicException;
|
||||
use think\Db;
|
||||
use think\facade\Log;
|
||||
use Logic\SellerLogic;
|
||||
|
||||
use exception\ResponsableException;
|
||||
use think\Exception;
|
||||
class KefuLogic
|
||||
{
|
||||
/**
|
||||
* 获取客服列表
|
||||
* @param $where 查询条件
|
||||
* @param $filed 显示字段
|
||||
* @param $page 页码
|
||||
* @param$limit 条数
|
||||
* @return array
|
||||
*/
|
||||
public static function getKefuByPage($where, $filed = "*", $limit = 20)
|
||||
{
|
||||
try {
|
||||
return Db::name('kefu_info')->field($filed)->where($where)->paginate($limit);
|
||||
|
||||
} catch (Exception $e) {
|
||||
throw new ResponsableException('信息错误', 404);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 查找在线客服
|
||||
|
@ -39,13 +39,13 @@
|
||||
"child": [
|
||||
{
|
||||
"title": "用户列表",
|
||||
"href": "page/form.html",
|
||||
"href": "/user",
|
||||
"icon": "fa fa-list-alt",
|
||||
"target": "_self"
|
||||
},
|
||||
{
|
||||
"title": "客服列表",
|
||||
"href": "page/form-step.html",
|
||||
"href": "/kefuList",
|
||||
"icon": "fa fa-navicon",
|
||||
"target": "_self"
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 14 KiB |
220
timely_demo.sql
220
timely_demo.sql
@ -1,25 +1,42 @@
|
||||
/*
|
||||
Navicat MySQL Data Transfer
|
||||
|
||||
Source Server : 192.168.88.133
|
||||
Source Server : 192.168.88.134
|
||||
Source Server Version : 50726
|
||||
Source Host : 192.168.88.133:3306
|
||||
Source Host : 192.168.88.134:3306
|
||||
Source Database : timely_demo
|
||||
|
||||
Target Server Type : MYSQL
|
||||
Target Server Version : 50726
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 2019-11-04 11:50:19
|
||||
Date: 2019-12-16 18:36:03
|
||||
*/
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for chat_log
|
||||
-- Table structure for ty_admin
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `chat_log`;
|
||||
CREATE TABLE `chat_log` (
|
||||
DROP TABLE IF EXISTS `ty_admin`;
|
||||
CREATE TABLE `ty_admin` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`account` varchar(55) NOT NULL COMMENT '账号',
|
||||
`password` varchar(155) NOT NULL COMMENT '登录密码',
|
||||
`create_time` datetime NOT NULL COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ty_admin
|
||||
-- ----------------------------
|
||||
INSERT INTO `ty_admin` VALUES ('1', 'admin', 'E10ADC3949BA59ABBE56E057F20F883E', '2019-10-08 17:50:30');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for ty_chat_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `ty_chat_log`;
|
||||
CREATE TABLE `ty_chat_log` (
|
||||
`log_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '日志id',
|
||||
`from_id` varchar(32) NOT NULL COMMENT '发送者id',
|
||||
`from_name` varchar(55) NOT NULL COMMENT '发送者名称',
|
||||
@ -37,10 +54,114 @@ CREATE TABLE `chat_log` (
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for kefu_info
|
||||
-- Records of ty_chat_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `kefu_info`;
|
||||
CREATE TABLE `kefu_info` (
|
||||
INSERT INTO `ty_chat_log` VALUES ('120', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '尔特人', '1', '1', '2019-10-30 18:28:48');
|
||||
INSERT INTO `ty_chat_log` VALUES ('121', '225db946744b2ca', '游客225db946744b2ca', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '尔特人', '1', '1', '2019-10-30 18:28:53');
|
||||
INSERT INTO `ty_chat_log` VALUES ('122', '225db946744b2ca', '游客225db946744b2ca', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-10-30 18:29:23');
|
||||
INSERT INTO `ty_chat_log` VALUES ('123', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '是的发生的', '1', '1', '2019-10-30 18:29:30');
|
||||
INSERT INTO `ty_chat_log` VALUES ('124', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-10-31 10:16:34');
|
||||
INSERT INTO `ty_chat_log` VALUES ('125', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-10-31 10:25:07');
|
||||
INSERT INTO `ty_chat_log` VALUES ('126', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '12121', '1', '1', '2019-10-31 10:25:11');
|
||||
INSERT INTO `ty_chat_log` VALUES ('127', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '34343', '2', '1', '2019-10-31 10:25:21');
|
||||
INSERT INTO `ty_chat_log` VALUES ('128', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '2', '1', '2019-10-31 10:25:22');
|
||||
INSERT INTO `ty_chat_log` VALUES ('129', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '2', '1', '2019-10-31 10:25:23');
|
||||
INSERT INTO `ty_chat_log` VALUES ('130', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '2', '1', '2019-10-31 10:25:24');
|
||||
INSERT INTO `ty_chat_log` VALUES ('131', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '2', '1', '2019-10-31 10:25:25');
|
||||
INSERT INTO `ty_chat_log` VALUES ('132', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 10:29:45');
|
||||
INSERT INTO `ty_chat_log` VALUES ('133', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 10:36:50');
|
||||
INSERT INTO `ty_chat_log` VALUES ('134', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '234儿童隔热个梵蒂冈', '1', '1', '2019-10-31 10:36:54');
|
||||
INSERT INTO `ty_chat_log` VALUES ('135', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '舒服舒服', '1', '1', '2019-10-31 10:43:49');
|
||||
INSERT INTO `ty_chat_log` VALUES ('136', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '1', '1', '2019-10-31 10:44:12');
|
||||
INSERT INTO `ty_chat_log` VALUES ('137', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-10-31 10:53:10');
|
||||
INSERT INTO `ty_chat_log` VALUES ('138', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '热污染', '1', '1', '2019-10-31 10:54:35');
|
||||
INSERT INTO `ty_chat_log` VALUES ('139', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'rete', '1', '1', '2019-10-31 10:54:44');
|
||||
INSERT INTO `ty_chat_log` VALUES ('140', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 11:01:07');
|
||||
INSERT INTO `ty_chat_log` VALUES ('141', '225db946744b2ca', '游客225db946744b2ca', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-10-31 11:01:23');
|
||||
INSERT INTO `ty_chat_log` VALUES ('142', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'dgdg', '1', '1', '2019-10-31 12:42:33');
|
||||
INSERT INTO `ty_chat_log` VALUES ('143', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '212', '1', '1', '2019-10-31 12:53:27');
|
||||
INSERT INTO `ty_chat_log` VALUES ('144', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '4545', '1', '1', '2019-10-31 12:53:31');
|
||||
INSERT INTO `ty_chat_log` VALUES ('145', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'dfdf', '1', '1', '2019-10-31 12:53:39');
|
||||
INSERT INTO `ty_chat_log` VALUES ('146', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'sfsf', '1', '1', '2019-10-31 12:53:46');
|
||||
INSERT INTO `ty_chat_log` VALUES ('147', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 12:54:39');
|
||||
INSERT INTO `ty_chat_log` VALUES ('148', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '1', '1', '2019-10-31 12:55:40');
|
||||
INSERT INTO `ty_chat_log` VALUES ('149', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '3434', '1', '1', '2019-10-31 12:55:42');
|
||||
INSERT INTO `ty_chat_log` VALUES ('150', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 12:56:20');
|
||||
INSERT INTO `ty_chat_log` VALUES ('151', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '2', '1', '2019-10-31 12:58:21');
|
||||
INSERT INTO `ty_chat_log` VALUES ('152', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2332', '1', '1', '2019-10-31 12:59:14');
|
||||
INSERT INTO `ty_chat_log` VALUES ('153', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-10-31 12:59:21');
|
||||
INSERT INTO `ty_chat_log` VALUES ('154', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '2', '1', '2019-10-31 13:01:41');
|
||||
INSERT INTO `ty_chat_log` VALUES ('155', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '2', '1', '2019-10-31 13:01:50');
|
||||
INSERT INTO `ty_chat_log` VALUES ('156', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-10-31 13:01:54');
|
||||
INSERT INTO `ty_chat_log` VALUES ('157', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'dfgd', '1', '1', '2019-10-31 13:02:13');
|
||||
INSERT INTO `ty_chat_log` VALUES ('158', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'sdfsdf', '2', '1', '2019-10-31 13:02:16');
|
||||
INSERT INTO `ty_chat_log` VALUES ('159', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '2', '1', '2019-10-31 13:04:53');
|
||||
INSERT INTO `ty_chat_log` VALUES ('160', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 13:05:04');
|
||||
INSERT INTO `ty_chat_log` VALUES ('161', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-10-31 13:05:07');
|
||||
INSERT INTO `ty_chat_log` VALUES ('162', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-10-31 13:05:16');
|
||||
INSERT INTO `ty_chat_log` VALUES ('163', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'sdfsd', '1', '1', '2019-10-31 13:05:40');
|
||||
INSERT INTO `ty_chat_log` VALUES ('164', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'dfgf', '1', '1', '2019-10-31 13:05:49');
|
||||
INSERT INTO `ty_chat_log` VALUES ('165', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'er', '1', '1', '2019-10-31 13:06:41');
|
||||
INSERT INTO `ty_chat_log` VALUES ('166', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '2', '1', '2019-10-31 13:08:02');
|
||||
INSERT INTO `ty_chat_log` VALUES ('167', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'dgd', '2', '1', '2019-10-31 13:08:12');
|
||||
INSERT INTO `ty_chat_log` VALUES ('168', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'dgd', '2', '1', '2019-10-31 13:08:15');
|
||||
INSERT INTO `ty_chat_log` VALUES ('169', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-10-31 13:08:50');
|
||||
INSERT INTO `ty_chat_log` VALUES ('170', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '232', '1', '1', '2019-10-31 13:08:54');
|
||||
INSERT INTO `ty_chat_log` VALUES ('171', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '232323', '1', '1', '2019-10-31 13:08:58');
|
||||
INSERT INTO `ty_chat_log` VALUES ('172', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '23233', '1', '1', '2019-10-31 13:09:27');
|
||||
INSERT INTO `ty_chat_log` VALUES ('173', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'gfdg', '1', '1', '2019-10-31 13:10:52');
|
||||
INSERT INTO `ty_chat_log` VALUES ('174', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '3434', '1', '1', '2019-10-31 13:12:07');
|
||||
INSERT INTO `ty_chat_log` VALUES ('175', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'ter', '1', '1', '2019-10-31 13:12:15');
|
||||
INSERT INTO `ty_chat_log` VALUES ('176', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '4545', '1', '1', '2019-10-31 13:12:24');
|
||||
INSERT INTO `ty_chat_log` VALUES ('177', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '343', '1', '1', '2019-10-31 13:13:48');
|
||||
INSERT INTO `ty_chat_log` VALUES ('178', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '343', '1', '1', '2019-10-31 13:17:02');
|
||||
INSERT INTO `ty_chat_log` VALUES ('179', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'tryrty', '1', '1', '2019-10-31 13:19:13');
|
||||
INSERT INTO `ty_chat_log` VALUES ('180', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '3434', '1', '1', '2019-10-31 13:24:01');
|
||||
INSERT INTO `ty_chat_log` VALUES ('181', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '43434', '1', '1', '2019-10-31 13:24:05');
|
||||
INSERT INTO `ty_chat_log` VALUES ('182', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '434', '1', '1', '2019-10-31 13:24:10');
|
||||
INSERT INTO `ty_chat_log` VALUES ('183', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '343434', '1', '1', '2019-10-31 13:24:14');
|
||||
INSERT INTO `ty_chat_log` VALUES ('184', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '232323', '2', '1', '2019-10-31 13:24:36');
|
||||
INSERT INTO `ty_chat_log` VALUES ('185', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '454', '1', '1', '2019-10-31 13:24:42');
|
||||
INSERT INTO `ty_chat_log` VALUES ('186', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '4545', '1', '1', '2019-10-31 13:24:45');
|
||||
INSERT INTO `ty_chat_log` VALUES ('187', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '454', '1', '1', '2019-10-31 13:24:48');
|
||||
INSERT INTO `ty_chat_log` VALUES ('188', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '4545', '1', '1', '2019-10-31 13:24:51');
|
||||
INSERT INTO `ty_chat_log` VALUES ('189', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '4545', '1', '1', '2019-10-31 13:24:53');
|
||||
INSERT INTO `ty_chat_log` VALUES ('190', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '4545554', '1', '1', '2019-10-31 13:24:56');
|
||||
INSERT INTO `ty_chat_log` VALUES ('191', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '45454', '1', '1', '2019-10-31 13:24:58');
|
||||
INSERT INTO `ty_chat_log` VALUES ('192', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'rtyt', '1', '1', '2019-10-31 13:25:02');
|
||||
INSERT INTO `ty_chat_log` VALUES ('193', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'tyrty', '1', '1', '2019-10-31 13:25:10');
|
||||
INSERT INTO `ty_chat_log` VALUES ('194', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '3434', '1', '1', '2019-10-31 13:26:17');
|
||||
INSERT INTO `ty_chat_log` VALUES ('195', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'grty', '1', '1', '2019-10-31 13:26:21');
|
||||
INSERT INTO `ty_chat_log` VALUES ('196', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'gjgj', '1', '1', '2019-10-31 13:26:35');
|
||||
INSERT INTO `ty_chat_log` VALUES ('197', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'ghgj', '1', '1', '2019-10-31 13:26:39');
|
||||
INSERT INTO `ty_chat_log` VALUES ('198', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'fghfg', '2', '1', '2019-10-31 13:26:47');
|
||||
INSERT INTO `ty_chat_log` VALUES ('199', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'rtytr', '1', '1', '2019-10-31 13:26:52');
|
||||
INSERT INTO `ty_chat_log` VALUES ('200', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'rtytr', '1', '1', '2019-10-31 13:26:56');
|
||||
INSERT INTO `ty_chat_log` VALUES ('201', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 13:38:43');
|
||||
INSERT INTO `ty_chat_log` VALUES ('202', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '1212', '1', '1', '2019-10-31 13:38:46');
|
||||
INSERT INTO `ty_chat_log` VALUES ('203', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-10-31 14:01:18');
|
||||
INSERT INTO `ty_chat_log` VALUES ('204', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', '电饭锅电饭锅的', '1', '1', '2019-10-31 14:01:24');
|
||||
INSERT INTO `ty_chat_log` VALUES ('205', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:18:34');
|
||||
INSERT INTO `ty_chat_log` VALUES ('206', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:19:59');
|
||||
INSERT INTO `ty_chat_log` VALUES ('207', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:20:03');
|
||||
INSERT INTO `ty_chat_log` VALUES ('208', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:20:10');
|
||||
INSERT INTO `ty_chat_log` VALUES ('209', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '434', '1', '1', '2019-11-01 13:21:27');
|
||||
INSERT INTO `ty_chat_log` VALUES ('210', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:21:35');
|
||||
INSERT INTO `ty_chat_log` VALUES ('211', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:21:38');
|
||||
INSERT INTO `ty_chat_log` VALUES ('212', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:21:39');
|
||||
INSERT INTO `ty_chat_log` VALUES ('213', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:21:40');
|
||||
INSERT INTO `ty_chat_log` VALUES ('214', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:21:42');
|
||||
INSERT INTO `ty_chat_log` VALUES ('215', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '2323', '1', '1', '2019-11-01 13:44:44');
|
||||
INSERT INTO `ty_chat_log` VALUES ('216', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', 'KF_kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', '2122', '1', '1', '2019-11-01 14:22:50');
|
||||
INSERT INTO `ty_chat_log` VALUES ('217', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', 'KF_kefu5dbf961558d32', '22', '/static/common/images/kefu.jpg', '1212', '1', '1', '2019-11-04 11:09:03');
|
||||
INSERT INTO `ty_chat_log` VALUES ('218', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', 'KF_kefu5dbf961558d32', '22', '/static/common/images/kefu.jpg', '4545', '1', '1', '2019-11-04 11:09:14');
|
||||
INSERT INTO `ty_chat_log` VALUES ('219', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', 'KF_kefu5dbf961558d32', '22', '/static/common/images/kefu.jpg', '2323', '1', '1', '2019-11-04 11:09:24');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for ty_kefu_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `ty_kefu_info`;
|
||||
CREATE TABLE `ty_kefu_info` (
|
||||
`kefu_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '客服id',
|
||||
`kefu_code` varchar(32) NOT NULL COMMENT '客服唯一标识',
|
||||
`kefu_name` varchar(55) NOT NULL COMMENT '客服名称',
|
||||
@ -55,10 +176,18 @@ CREATE TABLE `kefu_info` (
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for visitor
|
||||
-- Records of ty_kefu_info
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `visitor`;
|
||||
CREATE TABLE `visitor` (
|
||||
INSERT INTO `ty_kefu_info` VALUES ('21', 'kefu5db8128b0553e', '客服啊', '/static/common/images/kefu.jpg', 'e10adc3949ba59abbe56e057f20f883e', '1', '0', '2019-10-29 18:20:59', '2019-10-29 18:20:59', '');
|
||||
INSERT INTO `ty_kefu_info` VALUES ('22', 'kefu5db8eafbe332f', '尔耳', '/static/common/images/kefu.jpg', 'e10adc3949ba59abbe56e057f20f883e', '1', '1', '2019-10-30 09:44:27', '2019-10-30 09:44:27', '30');
|
||||
INSERT INTO `ty_kefu_info` VALUES ('23', 'kefu5dbbbf322d050', '而耳', '/static/common/images/kefu.jpg', 'e10adc3949ba59abbe56e057f20f883e', '1', '1', '2019-11-01 13:14:26', '2019-11-01 13:14:26', '18');
|
||||
INSERT INTO `ty_kefu_info` VALUES ('24', 'kefu5dbf961558d32', '22', '/static/common/images/kefu.jpg', '14c879f3f5d8ed93a09f6090d77c2cc3', '1', '1', '2019-11-04 11:08:05', '2019-11-04 11:08:05', '16');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for ty_visitor
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `ty_visitor`;
|
||||
CREATE TABLE `ty_visitor` (
|
||||
`vid` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`visitor_id` varchar(32) NOT NULL COMMENT '访客id',
|
||||
`visitor_name` varchar(55) NOT NULL COMMENT '访客名称',
|
||||
@ -73,10 +202,17 @@ CREATE TABLE `visitor` (
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=196 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for visitor_queue
|
||||
-- Records of ty_visitor
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `visitor_queue`;
|
||||
CREATE TABLE `visitor_queue` (
|
||||
INSERT INTO `ty_visitor` VALUES ('192', '225db94641ddafe', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '0', '0', '2019-11-04 11:09:12');
|
||||
INSERT INTO `ty_visitor` VALUES ('193', '225db946744b2ca', '游客225db946744b2ca', '/static/common/images/visitor.jpg', '127.0.0.1', '0', '0', '2019-10-31 11:57:29');
|
||||
INSERT INTO `ty_visitor` VALUES ('195', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '0', '0', '2019-11-04 13:48:11');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for ty_visitor_queue
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `ty_visitor_queue`;
|
||||
CREATE TABLE `ty_visitor_queue` (
|
||||
`qid` int(11) NOT NULL AUTO_INCREMENT COMMENT '队列id',
|
||||
`visitor_id` varchar(32) NOT NULL COMMENT '访客id',
|
||||
`visitor_name` varchar(55) NOT NULL COMMENT '访客名称',
|
||||
@ -91,13 +227,19 @@ CREATE TABLE `visitor_queue` (
|
||||
UNIQUE KEY `id` (`visitor_id`) USING BTREE,
|
||||
KEY `visiter` (`visitor_id`) USING BTREE,
|
||||
KEY `time` (`create_time`) USING BTREE
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for visitor_service_log
|
||||
-- Records of ty_visitor_queue
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `visitor_service_log`;
|
||||
CREATE TABLE `visitor_service_log` (
|
||||
INSERT INTO `ty_visitor_queue` VALUES ('9', '225db946744b2ca', '游客225db946744b2ca', '/static/common/images/visitor.jpg', '127.0.0.1', '0', '2019-10-31 11:57:29', '2', 'kefu5db8eafbe332f', '40');
|
||||
INSERT INTO `ty_visitor_queue` VALUES ('12', '235dbbc01213539', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '0', '2019-11-04 13:48:11', '2', 'kefu5dbf961558d32', '16');
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for ty_visitor_service_log
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `ty_visitor_service_log`;
|
||||
CREATE TABLE `ty_visitor_service_log` (
|
||||
`vsid` int(11) NOT NULL AUTO_INCREMENT COMMENT '服务编号',
|
||||
`visitor_id` varchar(55) NOT NULL COMMENT '访客id',
|
||||
`client_id` varchar(32) NOT NULL COMMENT '访客的客户端标识',
|
||||
@ -112,4 +254,42 @@ CREATE TABLE `visitor_service_log` (
|
||||
PRIMARY KEY (`vsid`),
|
||||
KEY `user_id,client_id` (`visitor_id`,`client_id`) USING BTREE,
|
||||
KEY `kf_id,start_time,end_time` (`kefu_code`,`start_date`,`end_date`) USING BTREE
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=3268 DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=3270 DEFAULT CHARSET=utf8;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of ty_visitor_service_log
|
||||
-- ----------------------------
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3236', '235dbbc01213539', '29', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:21:29', '2019-11-01 13:21:47', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3237', '235dbbc01213539', '30', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:21:47', '2019-11-01 13:31:56', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3238', '225db94641ddafe', '32', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:31:48', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3239', '235dbbc01213539', '33', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:31:57', '2019-11-01 13:31:57', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3240', '235dbbc01213539', '34', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:31:58', '2019-11-01 13:44:33', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3241', '235dbbc01213539', '36', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:44:34', '2019-11-01 13:44:46', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3242', '235dbbc01213539', '38', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 13:44:46', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3243', '225db94641ddafe', '60', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:13:22', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3244', '235dbbc01213539', '67', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:14:02', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3245', '225db94641ddafe', '69', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:14:38', '2019-11-01 14:14:45', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3246', '225db94641ddafe', '71', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:14:46', '2019-11-01 14:14:50', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3247', '235dbbc01213539', '2', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:22:44', '2019-11-01 14:22:47', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3248', '235dbbc01213539', '3', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:22:47', '2019-11-01 14:22:53', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3249', '235dbbc01213539', '4', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:22:59', '2019-11-01 14:23:03', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3250', '235dbbc01213539', '5', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:22:59', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3251', '235dbbc01213539', '6', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', '2019-11-01 14:23:03', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3252', '235dbbc01213539', '7', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3253', '235dbbc01213539', '8', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3254', '235dbbc01213539', '9', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3255', '235dbbc01213539', '10', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3256', '235dbbc01213539', '11', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3257', '235dbbc01213539', '12', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:03', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3258', '235dbbc01213539', '13', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:04', '2019-11-01 14:23:16', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3259', '235dbbc01213539', '14', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:04', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3260', '235dbbc01213539', '15', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:04', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3261', '235dbbc01213539', '16', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:23:22', '2019-11-01 14:32:19', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3262', '235dbbc01213539', '17', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:32:25', '2019-11-01 14:32:39', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3263', '235dbbc01213539', '19', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:32:45', '2019-11-01 15:11:53', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3264', '225db94641ddafe', '20', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '23', 'kefu5dbbbf322d050', '2019-11-01 14:32:50', '2019-11-01 15:11:50', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3265', '235dbbc01213539', '2', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '24', 'kefu5dbf961558d32', '2019-11-04 11:09:01', '2019-11-04 11:09:22', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3266', '225db94641ddafe', '3', '游客225db94641ddafe', '/static/common/images/visitor.jpg', '127.0.0.1', '24', 'kefu5dbf961558d32', '2019-11-04 11:09:12', '2019-11-04 11:09:26', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3267', '235dbbc01213539', '4', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '24', 'kefu5dbf961558d32', '2019-11-04 11:09:22', null, '1');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3268', '235dbbc01213539', '2', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '24', 'kefu5dbf961558d32', '2019-11-04 13:46:46', '2019-11-04 13:47:37', '2');
|
||||
INSERT INTO `ty_visitor_service_log` VALUES ('3269', '235dbbc01213539', '7', '游客235dbbc01213539', '/static/common/images/visitor.jpg', '127.0.0.1', '24', 'kefu5dbf961558d32', '2019-11-04 13:48:11', '2019-11-04 13:50:53', '2');
|
||||
|
Loading…
x
Reference in New Issue
Block a user