初始版本
163
server/public/install/YxEnv.php
Executable file
@@ -0,0 +1,163 @@
|
||||
<?php
|
||||
|
||||
class YxEnv
|
||||
{
|
||||
/**
|
||||
* 环境变量数据
|
||||
* @var array
|
||||
*/
|
||||
protected $data = [];
|
||||
protected $filePath = '';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
//$this->data = $_ENV;
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取环境变量定义文件
|
||||
* @access public
|
||||
* @param string $file 环境变量定义文件
|
||||
* @return void
|
||||
*/
|
||||
public function load($file)
|
||||
{
|
||||
$this->filePath = $file;
|
||||
$env = parse_ini_file($file, true);
|
||||
$this->set($env);
|
||||
}
|
||||
|
||||
public function makeEnv($file){
|
||||
if(!file_exists($file)){
|
||||
try{
|
||||
touch($file);
|
||||
}catch (Exception $e){
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取环境变量值
|
||||
* @access public
|
||||
* @param string $name 环境变量名
|
||||
* @param mixed $default 默认值
|
||||
* @return mixed
|
||||
*/
|
||||
public function get($name = null, $default = null, $php_prefix = true)
|
||||
{
|
||||
if (is_null($name)) {
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
if (isset($this->data[$name])) {
|
||||
return $this->data[$name];
|
||||
}
|
||||
|
||||
return $this->getEnv($name, $default, $php_prefix);
|
||||
}
|
||||
|
||||
protected function getEnv($name, $default = null, $php_prefix = true)
|
||||
{
|
||||
if ($php_prefix) {
|
||||
$name = 'PHP_' . $name;
|
||||
}
|
||||
|
||||
$result = getenv($name);
|
||||
|
||||
if (false === $result) {
|
||||
return $default;
|
||||
}
|
||||
|
||||
if ('false' === $result) {
|
||||
$result = false;
|
||||
} elseif ('true' === $result) {
|
||||
$result = true;
|
||||
}
|
||||
|
||||
if ( !isset($this->data[$name])) {
|
||||
$this->data[$name] = $result;
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 写入Env文件
|
||||
* @author luzg(2020/8/27 18:12)
|
||||
* @param $envFilePath
|
||||
* @param array $databaseEnv
|
||||
*/
|
||||
public function putEnv($envFilePath, array $databaseEnv)
|
||||
{
|
||||
$applyDbEnv = [
|
||||
'DATABASE.HOSTNAME' => $databaseEnv['host'],
|
||||
'DATABASE.DATABASE' => $databaseEnv['name'],
|
||||
'DATABASE.USERNAME' => $databaseEnv['user'],
|
||||
'DATABASE.PASSWORD' => $databaseEnv['password'],
|
||||
'DATABASE.HOSTPORT' => $databaseEnv['port'],
|
||||
'DATABASE.PREFIX' => $databaseEnv['prefix'],
|
||||
];
|
||||
|
||||
$envLine = array_merge($this->data, $applyDbEnv);
|
||||
|
||||
$content = '';
|
||||
$lastPrefix = '';
|
||||
|
||||
global $uniqueSalt;
|
||||
|
||||
foreach ($envLine as $index => $value) {
|
||||
|
||||
if ($index == 'PROJECT.UNIQUE_IDENTIFICATION' && !empty($uniqueSalt)) {
|
||||
$value = $uniqueSalt;
|
||||
}
|
||||
|
||||
@list($prefix, $key) = explode('.', $index);
|
||||
|
||||
if ($prefix != $lastPrefix && $key != null) {
|
||||
if ($lastPrefix != '')
|
||||
$content .= "\n";
|
||||
$content .= "[$prefix]\n";
|
||||
$lastPrefix = $prefix;
|
||||
}
|
||||
|
||||
if ($prefix != $lastPrefix && $key == null) {
|
||||
$content .= "$index = \"$value\"\n";
|
||||
} else {
|
||||
$content .= "$key = \"$value\"\n";
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($content)) {
|
||||
file_put_contents($envFilePath, $content);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 设置环境变量值
|
||||
* @access public
|
||||
* @param string|array $env 环境变量
|
||||
* @param mixed $value 值
|
||||
* @return void
|
||||
*/
|
||||
public function set($env, $value = null)
|
||||
{
|
||||
if (is_array($env)) {
|
||||
|
||||
foreach ($env as $key => $val) {
|
||||
if (is_array($val)) {
|
||||
foreach ($val as $k => $v) {
|
||||
$this->data[$key . '.' . $k] = $v;
|
||||
}
|
||||
} else {
|
||||
$this->data[$key] = $val;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$name = strtoupper(str_replace('.', '_', $env));
|
||||
|
||||
$this->data[$name] = $value;
|
||||
}
|
||||
}
|
||||
}
|
||||
401
server/public/install/css/mounted.css
Executable file
@@ -0,0 +1,401 @@
|
||||
body {
|
||||
position: relative;
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
.mounted {
|
||||
background-color: #F6F6F6;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
margin-bottom: 17px;
|
||||
margin-top: 70px;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
background-color: #F6F6F6;
|
||||
padding: 14px 39px;
|
||||
}
|
||||
|
||||
.mounted-box {
|
||||
display: flex;
|
||||
width: 940px;
|
||||
min-height: 611px;
|
||||
background-color: white;
|
||||
padding: 15px 30px 24px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
box-shadow:3px 2px 20px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.mounted-title {
|
||||
font-size: 18px;
|
||||
color: #222222;
|
||||
font-weight: Bold;
|
||||
}
|
||||
|
||||
.mounted-container {
|
||||
width: 940px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.mounted-nav {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.mounted-nav .active {
|
||||
color: white;
|
||||
background-color: #2C85EA;
|
||||
border: 1px solid #2C85EA !important;
|
||||
}
|
||||
|
||||
.mounted-nav li:nth-of-type(even) {
|
||||
width: 140px;
|
||||
height: 36px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
font-family: PingFang SC;
|
||||
border-top: 1px solid #E5E5E5;
|
||||
border-bottom: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
.mounted-nav li:nth-of-type(odd) {
|
||||
width: 140px;
|
||||
height: 36px;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
font-family: PingFang SC;
|
||||
border: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
.mounted-nav li:last-child {
|
||||
border-right: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
.mounted-content-item {
|
||||
margin-top: 15px;
|
||||
/* border:1px solid #E5E5E5; */
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content-header {
|
||||
background-color: #E5E5E5;
|
||||
padding: 8px 16px;
|
||||
font-family: PingFang SC;
|
||||
}
|
||||
|
||||
.content {
|
||||
padding: 16px;
|
||||
height: 392px;
|
||||
border: 1px solid #E5E5E5;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.content p {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.content h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.mt6 {
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.mt16 {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.content-form {
|
||||
padding: 23px 60px;
|
||||
border: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
.form-box-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 40px;
|
||||
}
|
||||
.form-box-item:not(:nth-of-type(1)) {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 40px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
|
||||
.form-desc {
|
||||
width: 60px;
|
||||
font-size: 12px;
|
||||
margin-right: 16px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.form-box-item div input {
|
||||
width:328px;
|
||||
height: 32px;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.cancel-btn {
|
||||
padding: 7px 28px;
|
||||
background-color: white;
|
||||
border: 1px solid #D7D7D7;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.accept-btn {
|
||||
padding: 7px 28px;
|
||||
color: white;
|
||||
background-color: #2C85EA;
|
||||
border: none;
|
||||
flex: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.disabled-btn {
|
||||
padding: 7px 28px;
|
||||
color: #222222;
|
||||
background-color: #D7D7D7;
|
||||
border: none;
|
||||
flex: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border:1px solid #D7D7D7;
|
||||
}
|
||||
|
||||
.item-btn-group {
|
||||
display: none;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.show {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.form-box-check {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
footer {
|
||||
font-size: 12px;
|
||||
margin-bottom: 20px;
|
||||
color:#707070;
|
||||
font-weight: 400;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
background-color: #F6F6F6;
|
||||
}
|
||||
|
||||
.layui-table {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.layui-table tr {
|
||||
background-color: white !important;
|
||||
}
|
||||
|
||||
.layui-table tr td{
|
||||
font-size: 12px;
|
||||
font-family:PingFang SC;
|
||||
line-height:20px;
|
||||
background-color: white !important;
|
||||
}
|
||||
|
||||
.layui-table tr th {
|
||||
font-size: 14px;
|
||||
font-family:PingFang SC;
|
||||
font-weight:bold;
|
||||
line-height:20px;
|
||||
}
|
||||
|
||||
.mounted-env-container {
|
||||
height: 440px;
|
||||
padding-bottom: 20px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.mounted-tips {
|
||||
padding: 15px 24px;
|
||||
color: #2C85EA;
|
||||
background-color: #eef4ff;
|
||||
}
|
||||
|
||||
.mounting-container {
|
||||
padding: 16px;
|
||||
height: 479px;
|
||||
max-height: 479px;
|
||||
border: 1px solid #E5E5E5;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.item-cell {
|
||||
padding: 4px 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.green{
|
||||
color: #11d55c;
|
||||
}
|
||||
|
||||
.wrong {
|
||||
color: #FC4D4D;
|
||||
}
|
||||
|
||||
.layui-icon {
|
||||
font-size: 18px !important;
|
||||
}
|
||||
|
||||
.success-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 392px;
|
||||
border: 1px solid #E5E5E5;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.success-content .tips {
|
||||
width: 400px;
|
||||
height: 80px;
|
||||
padding: 9px 18px;
|
||||
background-color: #F8F8F8;
|
||||
font-size: 12px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.success-content .btn-group {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.success-content .result {
|
||||
font-size:20px;
|
||||
font-family:PingFang SC;
|
||||
font-weight:bold;
|
||||
line-height:28px;
|
||||
}
|
||||
|
||||
.success-content .btn-group .store-btn {
|
||||
padding: 7px 35px;
|
||||
border: 1px solid #2C85EA;
|
||||
background-color: white;
|
||||
color: #2C85EA;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.success-content .btn-group .btn {
|
||||
padding: 7px 35px;
|
||||
border: 1px solid #2C85EA;
|
||||
background-color: #2C85EA;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.mounted-footer {
|
||||
width: 940px;
|
||||
background-color: white;
|
||||
padding: 16px 30px 23px;
|
||||
margin-top: 16px;
|
||||
box-shadow:3px 2px 20px rgba(0,0,0,0.08);
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mounted-footer-title {
|
||||
font-size: 18px;
|
||||
line-height: 25px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.mounted-recommend-box {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.mounted-recommend-item {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
width: 224px;
|
||||
height: 140px;
|
||||
border:1px solid #D7D7D7;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.mounted-recommend-item .icon {
|
||||
width: 128px;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover {
|
||||
background-color: #F6F9FF;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
width: 224px;
|
||||
height: 140px;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover .icon{
|
||||
display: none;
|
||||
}
|
||||
|
||||
.recommend-content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover .recommend-content {
|
||||
display: block;
|
||||
padding: 6px 10px 10px;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover .recommend-content .title {
|
||||
font-size: 16px;
|
||||
line-height: 22px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover .recommend-content ul {
|
||||
list-style-type: disc;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.mounted-recommend-item:hover .recommend-content li {
|
||||
list-style-type: disc;
|
||||
}
|
||||
1885
server/public/install/db/like.sql
Executable file
497
server/public/install/db/ys.sql
Executable file
@@ -0,0 +1,497 @@
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
INSERT INTO `ls_user` (`id`, `sn`, `nickname`, `avatar`, `mobile`, `real_name`, `user_money`, `user_earnings`, `total_earnings`, `total_recharge_amount`, `sex`, `account`, `password`, `login_time`, `login_ip`, `is_disable`, `channel`, `create_time`, `update_time`, `delete_time`, `is_new_user`) VALUES (21, '24207464', '用户24207464', 'resource/image/api/default/avatar.png', '', NULL, 0.00, 0.00, 0.00, 0.00, 0, '15216949486', '1d6b41eef691c9316f631a73c1ee10d0', 1733913156, '223.104.78.174', 0, 2, 1733908946, 1733913156, NULL, 0);
|
||||
INSERT INTO `ls_user` (`id`, `sn`, `nickname`, `avatar`, `mobile`, `real_name`, `user_money`, `user_earnings`, `total_earnings`, `total_recharge_amount`, `sex`, `account`, `password`, `login_time`, `login_ip`, `is_disable`, `channel`, `create_time`, `update_time`, `delete_time`, `is_new_user`) VALUES (22, '99207326', '李富贵', 'uploads/images/20241211/202412111830296cd4e3432.jpeg', '', NULL, 496703.22, 0.00, 0.00, 0.00, 1, '13000013001', '256413d6da93c440c881f2f0a34e03b3', 1733918922, '116.23.161.150', 0, 2, 1733913008, 1733927428, NULL, 0);
|
||||
INSERT INTO `ls_user` (`id`, `sn`, `nickname`, `avatar`, `mobile`, `real_name`, `user_money`, `user_earnings`, `total_earnings`, `total_recharge_amount`, `sex`, `account`, `password`, `login_time`, `login_ip`, `is_disable`, `channel`, `create_time`, `update_time`, `delete_time`, `is_new_user`) VALUES (23, '01263418', '用户01263418', 'uploads/images/20241211/2024121120061612a831499.jpeg', '', NULL, 99998.99, 0.00, 0.00, 0.00, 0, '15820396971', '4045a726c72382dd4aeedfa8bb2491a1', 1733918988, '116.23.161.150', 0, 2, 1733918653, 1733923827, NULL, 0);
|
||||
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (3, 11, 3, 1729047278, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (4, 19, 3, 1729047325, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (5, 9, 3, 1729047325, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (6, 1, 7, 1729158170, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (7, 11, 7, 1729158174, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (8, 10, 7, 1729158177, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (9, 19, 7, 1729158182, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (14, 16, 1, 1729673433, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (15, 22, 6, 1730033065, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (18, 20, 9, 1730686640, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (20, 1, 9, 1730689494, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (22, 15, 1, 1731404452, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (23, 18, 3, 1731490427, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (33, 33, 6, 1731835020, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (34, 1, 16, 1732082811, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (36, 34, 19, 1732508246, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (39, 44, 16, 1732701137, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (41, 46, 1, 1732791806, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (42, 1, 20, 1732792174, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (47, 31, 3, 1732807093, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (48, 48, 3, 1732807401, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (49, 35, 3, 1732811762, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (50, 11, 20, 1732862735, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (51, 21, 16, 1732873888, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (52, 17, 16, 1732873893, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (53, 46, 3, 1732889644, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (54, 31, 16, 1732891049, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (55, 36, 16, 1732891150, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (56, 48, 16, 1732891214, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (57, 45, 16, 1732891216, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (58, 24, 16, 1732948040, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (59, 34, 3, 1733056854, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (62, 35, 1, 1733222525, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (63, 24, 1, 1733228155, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (64, 9, 16, 1733475174, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (65, 25, 16, 1733475180, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (66, 44, 1, 1733712971, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (67, 44, 2, 1733802301, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (68, 72, 22, 1733913549, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (69, 63, 22, 1733913551, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (70, 60, 22, 1733913553, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (71, 73, 22, 1733913555, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (72, 67, 22, 1733913557, 2);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (73, 111, 22, 1733913559, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (75, 52, 22, 1733913563, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (76, 53, 22, 1733913566, 3);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (78, 110, 22, 1733918870, 1);
|
||||
INSERT INTO `ls_collect` (`id`, `relation_id`, `user_id`, `create_time`, `type`) VALUES (79, 111, 23, 1733919814, 1);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (57, '中式推拿', 31, 'uploads/images/20241211/20241211144141d80b71441.png', 218.00, 60, 698.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"width: 100%;\"/></p>', 0, '对症推拿|局部调理', 1000, '6', '23', 0, 1, '', 1733890384, 1733899450, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (58, '通络培元', 30, 'uploads/images/20241211/202412111441401adf88914.png', 198.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '缓解压力|静心助眠', 1000, '7', '23', 0, 1, '', 1733896775, 1733899352, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (59, '泰式SPA', 29, 'uploads/images/20241211/202412111441417131d9943.png', 298.00, 60, 369.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '释放压力|缓解疲劳', 1000, '1', '23', 0, 1, '', 1733896949, 1733899462, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (60, '柔情似水', 32, 'uploads/images/20241211/20241211144138904d92845.png', 998.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '全身放松|悦你身心', 1000, '6', '23', 0, 1, '', 1733897104, 1733899383, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (61, '都市SPA', 29, 'uploads/images/20241211/202412111441417131d9943.png', 698.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '芳香精油|安心睡眠', 500, '6', '23', 0, 1, '', 1733897232, 1733899399, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (62, '经络调理全身按摩', 30, 'uploads/images/20241211/20241211144141d80b71441.png', 198.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '燃烧你的卡路里', 800, '6', '20', 0, 1, '', 1733898074, 1733899413, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (63, '日式SPA', 29, 'uploads/images/20241211/202412111441416381f5744.png', 498.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 2, 'FBI |角色扮演', 2698, '6', '23', 0, 1, '', 1733898149, 1733921375, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (64, '深海精油呵护', 31, 'uploads/images/20241211/2024121114413849ec71726.png', 298.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '通络舒畅|焕活舒压', 600, '6', '23', 0, 1, '', 1733898650, 1733899525, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (65, '韩式SPA', 31, 'uploads/images/20241211/202412111441417131d9943.png', 618.00, 60, 998.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '深层SPA|突破极限', 269, '6', '23', 0, 1, '', 1733898752, 1733899656, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (66, '水韵月华呵护', 32, 'uploads/images/20241211/202412111441401adf88914.png', 718.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 1, '清柔|甜美|绝美', 600, '6', '23', 0, 1, '', 1733898976, 1733920889, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (67, '深层经络按压', 32, 'uploads/images/20241211/20241211144141926dd8333.png', 369.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '日本|角色扮演', 200, '6', '23', 0, 1, '', 1733899927, 1733899933, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (68, '意式SPA', 31, 'uploads/images/20241211/20241211144138904d92845.png', 598.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 1, '美轮美奂|天上人间', 1200, '6', '23', 0, 1, '', 1733900069, 1733918878, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (69, '广州专属', 30, 'uploads/images/20241211/20241211144141d80b71441.png', 648.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 2, '广州专属|舒缓一整天', 1000, '6', '23', 0, 1, '', 1733900209, 1733920606, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (70, '沪上阿姨', 29, 'uploads/images/20241211/202412111441401adf88914.png', 498.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '上海专属|卡路里', 800, '6', '23', 0, 1, '', 1733900354, 1733900359, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (71, '深海揉按', 32, 'uploads/images/20241211/20241211144140df2ee5748.png', 798.00, 60, 0.00, 10.00, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 0, '深圳专属|缓解压力', 600, '6', '23', 0, 1, '', 1733900549, 1733900554, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (72, '经典按摩', 30, 'uploads/images/20241211/20241211144141926dd8333.png', 0.01, 30, 698.00, 0.10, 10, 20.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.png\" alt=\"\" data-href=\"\" style=\"\"/></p>', 14, '全国通用|释放压力', 3000, '1', '23', 0, 1, '', 1733900796, 1733920704, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (73, '全身按摩', 30, 'uploads/images/20241211/20241211180617cebd64711.jpeg', 198.00, 60, 0.00, 10.00, 10, 0.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.jpeg\" alt=\"图像\"></p>', 0, '放松身心', 0, '06:00', '18:30', 52, 1, '', 1733911654, 1733911673, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (74, '活力推拿', 31, 'uploads/images/20241211/20241211180809e49dc4336.jpeg', 219.00, 60, 0.00, 10.00, 10, 0.00, 30.00, 1, 0, '<p><img src=\"uploads/images/20241211/20241211135331597b13478.jpeg\" alt=\"图像\"></p>', 0, '活力|温柔', 0, '06:10', '23:16', 52, 0, '', 1733911787, 1733911787, NULL);
|
||||
INSERT INTO `ls_goods` (`id`, `name`, `category_id`, `image`, `price`, `duration`, `scribing_price`, `overtime_price`, `overtime_duration`, `shop_ratio`, `commission_ratio`, `status`, `sort`, `content`, `order_num`, `tags`, `virtual_order_num`, `appoint_start_time`, `appoint_end_time`, `shop_id`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (75, '全身疏筋', 32, 'uploads/images/20241211/20241211184011d70240200.jpeg', 698.00, 60, 0.00, 10.00, 10, 0.00, 30.00, 1, 0, '', 0, '角色扮演', 0, '06:00', '23:00', 53, 0, '', 1733913723, 1733913723, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods_category` (`id`, `name`, `pid`, `level`, `image`, `sort`, `is_show`, `is_recommend`, `create_time`, `update_time`, `delete_time`) VALUES (29, '窈窕淑女', 0, 1, 'uploads/images/20241211/20241211144140df2ee5748.png', 0, 1, 0, 1733889591, 1733889591, NULL);
|
||||
INSERT INTO `ls_goods_category` (`id`, `name`, `pid`, `level`, `image`, `sort`, `is_show`, `is_recommend`, `create_time`, `update_time`, `delete_time`) VALUES (30, '全身按摩', 0, 1, 'uploads/images/20241211/20241211144141926dd8333.png', 0, 1, 0, 1733889625, 1733889709, NULL);
|
||||
INSERT INTO `ls_goods_category` (`id`, `name`, `pid`, `level`, `image`, `sort`, `is_show`, `is_recommend`, `create_time`, `update_time`, `delete_time`) VALUES (31, '局部按摩', 0, 1, 'uploads/images/20241211/202412111441401adf88914.png', 0, 1, 0, 1733889637, 1733889720, NULL);
|
||||
INSERT INTO `ls_goods_category` (`id`, `name`, `pid`, `level`, `image`, `sort`, `is_show`, `is_recommend`, `create_time`, `update_time`, `delete_time`) VALUES (32, '舒缓身心', 0, 1, 'uploads/images/20241211/202412111441417131d9943.png', 0, 1, 0, 1733889733, 1733889733, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (167, 57, 440100, 1733899450);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (172, 70, 310100, 1733900359);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (173, 69, 440100, 1733900389);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (175, 71, 440300, 1733900554);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (176, 73, 440100, 1733911654);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (177, 74, 440100, 1733911787);
|
||||
INSERT INTO `ls_goods_city_index` (`id`, `goods_id`, `city_id`, `create_time`) VALUES (178, 75, 440300, 1733913723);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (361, 58, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (362, 58, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (363, 58, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (364, 58, 'uploads/images/20241211/202412111441416381f5744.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (370, 60, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (371, 60, 'uploads/images/20241211/202412111441392aa107163.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (372, 60, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (373, 60, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (374, 60, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (375, 60, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (376, 61, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (377, 61, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (378, 61, 'uploads/images/20241211/202412111441392aa107163.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (379, 61, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (380, 61, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (381, 62, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (382, 62, 'uploads/images/20241211/202412111441416381f5744.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (383, 62, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (384, 62, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (385, 62, 'uploads/images/20241211/202412111441392aa107163.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (386, 57, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (387, 57, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (388, 57, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (389, 57, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (390, 59, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (391, 59, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (392, 59, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (393, 59, 'uploads/images/20241211/202412111441392aa107163.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (394, 63, 'uploads/images/20241211/202412111441416381f5744.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (395, 63, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (396, 63, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (397, 63, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (398, 64, 'uploads/images/20241211/2024121114413849ec71726.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (399, 64, 'uploads/images/20241211/20241211144140df2ee5748.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (400, 64, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (401, 64, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (407, 65, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (408, 65, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (409, 65, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (410, 65, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (411, 65, 'uploads/images/20241211/20241211144140df2ee5748.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (412, 66, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (413, 66, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (414, 66, 'uploads/images/20241211/202412111441416381f5744.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (415, 66, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (416, 66, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (417, 66, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (419, 67, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (421, 68, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (441, 70, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (442, 70, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (443, 70, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (444, 70, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (445, 69, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (446, 69, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (447, 69, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (448, 69, 'uploads/images/20241211/202412111441392aa107163.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (449, 69, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (454, 71, 'uploads/images/20241211/20241211144140df2ee5748.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (455, 71, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (456, 71, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (457, 71, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (476, 72, 'uploads/images/20241211/20241211144141926dd8333.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (477, 72, 'uploads/images/20241211/202412111441417131d9943.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (478, 72, 'uploads/images/20241211/20241211144140df2ee5748.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (479, 72, 'uploads/images/20241211/20241211144141d80b71441.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (480, 72, 'uploads/images/20241211/202412111441403adee5647.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (481, 72, 'uploads/images/20241211/202412111441401adf88914.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (482, 72, 'uploads/images/20241211/20241211144138904d92845.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (483, 72, 'uploads/images/20241211/2024121114413849ec71726.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (484, 72, 'uploads/images/20241211/202412111441416381f5744.png');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (485, 73, 'uploads/images/20241211/20241211180617cebd64711.jpeg');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (486, 74, 'uploads/images/20241211/20241211180809e49dc4336.jpeg');
|
||||
INSERT INTO `ls_goods_image` (`id`, `goods_id`, `uri`) VALUES (487, 75, 'uploads/images/20241211/20241211184011d70240200.jpeg');
|
||||
|
||||
INSERT INTO `ls_city` (`id`, `parent_id`, `parent_name`, `city_id`, `name`, `level`, `gcj02_lng`, `gcj02_lat`, `db09_lng`, `db09_lat`, `taxi`, `start_km`, `start_price`, `continue_price`, `bus`, `bus_start_time`, `bus_end_time`, `bus_fare`, `create_time`, `update_time`, `delete_time`) VALUES (11, 440000, '广东省', 440100, '广州市', 2, '113.280637', '23.125178', '113.287049', '23.131514', 1, '1', 1.00, 1.00, 1, '6:00', '23:30', 6.00, 1731643353, 1733886024, NULL);
|
||||
INSERT INTO `ls_city` (`id`, `parent_id`, `parent_name`, `city_id`, `name`, `level`, `gcj02_lng`, `gcj02_lat`, `db09_lng`, `db09_lat`, `taxi`, `start_km`, `start_price`, `continue_price`, `bus`, `bus_start_time`, `bus_end_time`, `bus_fare`, `create_time`, `update_time`, `delete_time`) VALUES (36, 440000, '广东省', 440300, '深圳市', 2, '114.085947', '22.547', '114.092449', '22.552925', 1, '1', 2.00, 0.50, 1, '6', '23', 5.00, 1733886073, 1733886073, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (399, 58, 12, 1733899352);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (401, 60, 11, 1733899383);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (402, 61, 11, 1733899399);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (403, 62, 10, 1733899413);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (404, 57, 12, 1733899450);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (405, 59, 11, 1733899462);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (406, 63, 11, 1733899483);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (407, 64, 12, 1733899525);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (409, 65, 12, 1733899656);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (410, 66, 12, 1733899674);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (412, 67, 10, 1733899933);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (414, 68, 12, 1733900075);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (425, 70, 12, 1733900359);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (426, 69, 11, 1733900389);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (428, 71, 10, 1733900554);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (435, 72, 11, 1733900824);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (436, 72, 12, 1733900824);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (437, 72, 10, 1733900824);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (438, 73, 12, 1733911654);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (439, 74, 10, 1733911787);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (440, 75, 12, 1733913723);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (441, 75, 11, 1733913723);
|
||||
INSERT INTO `ls_goods_skill_index` (`id`, `goods_id`, `skill_id`, `create_time`) VALUES (442, 75, 10, 1733913723);
|
||||
|
||||
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (77, '中式拔罐', 1, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (78, '艾灸理疗', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (79, '针灸套餐', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (80, '刮痧祛湿', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (81, '上门按摩', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (82, '修脚', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (83, '全身SPA', 0, 1733888304);
|
||||
INSERT INTO `ls_hot_search` (`id`, `name`, `sort`, `create_time`) VALUES (84, '精油按摩', 0, 1733888304);
|
||||
|
||||
|
||||
INSERT INTO `ls_skill` (`id`, `name`, `is_show`, `create_time`, `update_time`, `delete_time`) VALUES (10, '穴位按压', 1, 1733889853, 1733889853, NULL);
|
||||
INSERT INTO `ls_skill` (`id`, `name`, `is_show`, `create_time`, `update_time`, `delete_time`) VALUES (11, '经络疏通', 1, 1733889859, 1733889859, NULL);
|
||||
INSERT INTO `ls_skill` (`id`, `name`, `is_show`, `create_time`, `update_time`, `delete_time`) VALUES (12, '深层按摩', 1, 1733889866, 1733889866, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_coach_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (35, '001', 'resource/image/api/default/avatar.png', '13000013002', '256413d6da93c440c881f2f0a34e03b3', 1733921633, '116.23.161.150', 1733903587, 1733921633, NULL);
|
||||
INSERT INTO `ls_coach_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (36, '002', 'resource/image/api/default/avatar.png', '13000013001', '256413d6da93c440c881f2f0a34e03b3', 1733920097, '116.23.161.150', 1733905368, 1733920097, NULL);
|
||||
INSERT INTO `ls_coach_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (37, '003', 'resource/image/api/default/avatar.png', '13000013003', '256413d6da93c440c881f2f0a34e03b3', 1733909168, '116.23.161.150', 1733909156, 1733909373, NULL);
|
||||
INSERT INTO `ls_coach_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (38, '004', 'resource/image/api/default/avatar.png', '13000013004', '256413d6da93c440c881f2f0a34e03b3', 1733919835, '116.23.161.150', 1733909493, 1733919835, NULL);
|
||||
|
||||
INSERT INTO `ls_coach` (`id`, `sn`, `name`, `gender`, `age`, `shop_id`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `address_detail`, `coach_user_id`, `skill_id`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `introduction`, `certification`, `health_certificate`, `work_status`, `server_status`, `deposit`, `money`, `longitude`, `latitude`, `location`, `longitude_location`, `latitude_location`, `audit_status`, `audit_remark`, `good_comment`, `order_num`, `create_time`, `update_time`, `delete_time`) VALUES (110, '002', '婉清', 1, 18, 0, '410981199901016969', '13000013001', '5', '汉族', 440000, 440100, 440105, '滨江东路', 36, 12, 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/202412111618014e1994323.jpeg', '', 'uploads/images/20241211/2024121117183738c2e4208.jpeg', 'uploads/images/20241211/202412111718433fe760614.jpeg', 1, 1, 10.00, 476.82, '113.324705', '23.10692', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\"}', '113.36787414550781', '23.0152530670166', 1, '', 100, 2, 1733905368, 1733922917, NULL);
|
||||
INSERT INTO `ls_coach` (`id`, `sn`, `name`, `gender`, `age`, `shop_id`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `address_detail`, `coach_user_id`, `skill_id`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `introduction`, `certification`, `health_certificate`, `work_status`, `server_status`, `deposit`, `money`, `longitude`, `latitude`, `location`, `longitude_location`, `latitude_location`, `audit_status`, `audit_remark`, `good_comment`, `order_num`, `create_time`, `update_time`, `delete_time`) VALUES (111, '001', '星瑶', 2, 18, 52, '410991199909086869', '13000013002', '硕士', '汉族', 440000, 440100, 440113, '员岗中路9号', 35, 11, 'uploads/images/20241211/2024121117094552be93991.jpeg', 'uploads/images/20241211/202412111709412171c7472.png', 'uploads/images/20241211/20241211170950a8cfe8935.jpeg', 'uploads/images/20241211/20241211171025afbb97557.jpeg', '', '', '', 1, 1, 30.01, 430.50, '113.362873', '23.017941', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\"}', '113.36787414550781', '23.0152530670166', 1, '', 100, 2, 1733908248, 1733922902, NULL);
|
||||
INSERT INTO `ls_coach` (`id`, `sn`, `name`, `gender`, `age`, `shop_id`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `address_detail`, `coach_user_id`, `skill_id`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `introduction`, `certification`, `health_certificate`, `work_status`, `server_status`, `deposit`, `money`, `longitude`, `latitude`, `location`, `longitude_location`, `latitude_location`, `audit_status`, `audit_remark`, `good_comment`, `order_num`, `create_time`, `update_time`, `delete_time`) VALUES (112, '003', '云溪', 2, 18, 0, '410981199909095667', '13000013003', '博士', '汉族', 440000, 440300, 440304, '福强路', 37, 11, 'uploads/images/20241211/20241211172641bbd0c2399.jpeg', 'uploads/images/20241211/20241211172637105d59615.png', 'uploads/images/20241211/202412111726483ecb87846.jpeg', 'uploads/images/20241211/20241211172815508de9345.jpeg', '', '', '', 1, 1, 50.00, 100.00, '114.0357', '22.52571', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\"}', '113.36787414550781', '23.0152530670166', 1, '', 100, 0, 1733909318, 1733909373, NULL);
|
||||
INSERT INTO `ls_coach` (`id`, `sn`, `name`, `gender`, `age`, `shop_id`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `address_detail`, `coach_user_id`, `skill_id`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `introduction`, `certification`, `health_certificate`, `work_status`, `server_status`, `deposit`, `money`, `longitude`, `latitude`, `location`, `longitude_location`, `latitude_location`, `audit_status`, `audit_remark`, `good_comment`, `order_num`, `create_time`, `update_time`, `delete_time`) VALUES (113, '004', '露茜', 2, 18, 53, '410991199902023162', '13000013004', '5', '维吾尔族', 440000, 440300, 440305, '南山区科技园熙湾俊庭(高新南十一道北)', 38, 10, 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/20241211164833ec9f03379.jpeg', '', '', '', 1, 1, 0.00, 123.51, '113.94881395301', '22.524659553286', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\"}', '113.36787414550781', '23.0152530670166', 1, '', 100, 0, 1733909493, 1733913318, NULL);
|
||||
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (444, 112, 59, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (445, 112, 60, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (446, 112, 61, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (447, 112, 63, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (448, 112, 69, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (449, 112, 72, 1733909373);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (450, 113, 72, 1733909493);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (451, 113, 71, 1733909493);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (452, 113, 67, 1733909493);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (453, 113, 62, 1733909493);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (460, 111, 72, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (461, 111, 69, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (462, 111, 63, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (463, 111, 61, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (464, 111, 60, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (465, 111, 59, 1733911886);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (466, 110, 72, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (467, 110, 70, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (468, 110, 68, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (469, 110, 66, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (470, 110, 65, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (471, 110, 64, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (472, 110, 58, 1733911896);
|
||||
INSERT INTO `ls_coach_goods_index` (`id`, `coach_id`, `goods_id`, `create_time`) VALUES (473, 110, 57, 1733911896);
|
||||
|
||||
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (314, 'uploads/images/20241211/20241211172822f6b668199.jpeg', 112, 1733909373);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (315, 'uploads/images/20241211/20241211172822b1cf84788.jpeg', 112, 1733909373);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (316, 'uploads/images/20241211/20241211172822e38317048.jpeg', 112, 1733909373);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (317, 'uploads/images/20241211/20241211172822a684b1130.jpeg', 112, 1733909373);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (318, 'uploads/images/20241211/20241211164833c1b1f5442.jpeg', 113, 1733909493);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (319, 'uploads/images/20241211/20241211164833ec9f03379.jpeg', 113, 1733909493);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (320, 'uploads/images/20241211/202412111648332150e6726.jpeg', 113, 1733909493);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (321, 'uploads/images/20241211/2024121116483342f6b7899.jpeg', 113, 1733909493);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (322, 'uploads/images/20241211/2024121116483338bc88248.jpeg', 113, 1733909493);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (327, 'uploads/images/20241211/20241211171040622549505.jpeg', 111, 1733911886);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (328, 'uploads/images/20241211/202412111710400dfde3816.jpeg', 111, 1733911886);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (329, 'uploads/images/20241211/20241211171040005b76849.jpeg', 111, 1733911886);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (330, 'uploads/images/20241211/202412111710403baec8646.jpeg', 111, 1733911886);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (331, 'uploads/images/20241211/20241211171903a5d585896.jpeg', 110, 1733911896);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (332, 'uploads/images/20241211/2024121117190329ff28036.jpeg', 110, 1733911896);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (333, 'uploads/images/20241211/202412111719032691d8864.jpeg', 110, 1733911896);
|
||||
INSERT INTO `ls_coach_life_photo` (`id`, `uri`, `coach_id`, `create_time`) VALUES (334, 'uploads/images/20241211/20241211171903c3cf13918.jpeg', 110, 1733911896);
|
||||
|
||||
INSERT INTO `ls_coach_update` (`id`, `coach_id`, `coach_user_id`, `name`, `gender`, `age`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `longitude`, `latitude`, `address_detail`, `skill_id`, `goods_ids`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `certification`, `health_certificate`, `audit_status`, `audit_remark`, `life_photo`, `create_time`, `update_time`, `delete_time`) VALUES (26, 110, 36, '婉清', 1, 18, '410981199901016969', '13000013000', '5', '汉族', 440000, 440100, 440105, '113.324705', '23.10692', '滨江东路', 12, '72,70,68,66,65,64,58,57', 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/2024121117183738c2e4208.jpeg', 'uploads/images/20241211/202412111718433fe760614.jpeg', 1, '', 'uploads/images/20241211/20241211171903a5d585896.jpeg,uploads/images/20241211/2024121117190329ff28036.jpeg,uploads/images/20241211/202412111719032691d8864.jpeg,uploads/images/20241211/20241211171903c3cf13918.jpeg', 1733908795, 1733908844, NULL);
|
||||
INSERT INTO `ls_coach_update` (`id`, `coach_id`, `coach_user_id`, `name`, `gender`, `age`, `id_card`, `mobile`, `education`, `nation`, `province_id`, `city_id`, `region_id`, `longitude`, `latitude`, `address_detail`, `skill_id`, `goods_ids`, `id_card_front`, `id_card_back`, `portrait_shooting`, `work_photo`, `certification`, `health_certificate`, `audit_status`, `audit_remark`, `life_photo`, `create_time`, `update_time`, `delete_time`) VALUES (27, 110, 36, '婉清', 1, 18, '410981199901016969', '13000013000', '博士', '汉族', 440000, 440100, 440105, '113.324705', '23.10692', '滨江东路', 12, '57,58,64,65,66,68,70,72', 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/202412111618014e1994323.jpeg', 'uploads/images/20241211/2024121117183738c2e4208.jpeg', 'uploads/images/20241211/202412111718433fe760614.jpeg', 0, '', 'uploads/images/20241211/20241211171903a5d585896.jpeg,uploads/images/20241211/2024121117190329ff28036.jpeg,uploads/images/20241211/202412111719032691d8864.jpeg,uploads/images/20241211/20241211171903c3cf13918.jpeg', 1733908966, 1733908966, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_shop_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (36, '001', 'resource/image/api/default/avatar.png', '13000013001', '256413d6da93c440c881f2f0a34e03b3', 1733919204, '116.23.161.150', 1733905712, 1733919204, NULL);
|
||||
INSERT INTO `ls_shop_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (37, '002', 'resource/image/api/default/avatar.png', '13000013002', '256413d6da93c440c881f2f0a34e03b3', 1733912084, '116.23.161.150', 1733910977, 1733912084, NULL);
|
||||
INSERT INTO `ls_shop_user` (`id`, `sn`, `avatar`, `account`, `password`, `login_time`, `login_ip`, `create_time`, `update_time`, `delete_time`) VALUES (38, '003', 'resource/image/api/default/avatar.png', '13000013003', '256413d6da93c440c881f2f0a34e03b3', 1733914741, '116.23.161.150', 1733914718, 1733914757, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_shop` (`id`, `shop_user_id`, `sn`, `name`, `mobile`, `short_name`, `type`, `social_credit_ode`, `legal_person`, `legal_id_card`, `province_id`, `city_id`, `region_id`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `work_status`, `server_status`, `sort`, `money`, `deposit`, `audit_status`, `audit_remark`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`, `good_comment`, `business_start_time`, `business_end_time`, `create_time`, `update_time`, `delete_time`) VALUES (52, 36, '001', '广州东郊到家', '13000013001', '东郊到家啊', 1, 'G123456789123456', '李富贵', '410981199909098978', 440000, 440100, 0, '员岗中路9号', '113.362873', '23.017941', 'uploads/images/20241211/20241211174310c3c828608.jpeg', 'uploads/images/20241211/20241211174304427a74685.png', '', 'uploads/images/20241211/20241211175836c4df79417.jpeg', 'uploads/images/20241211/202412111742465d03d0283.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 1, 1, 0, 421.00, 100.00, 1, '', 1, 1, 1, 1, 1, 1, 1, 5, '8', '22', 1733910283, 1733922902, NULL);
|
||||
INSERT INTO `ls_shop` (`id`, `shop_user_id`, `sn`, `name`, `mobile`, `short_name`, `type`, `social_credit_ode`, `legal_person`, `legal_id_card`, `province_id`, `city_id`, `region_id`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `work_status`, `server_status`, `sort`, `money`, `deposit`, `audit_status`, `audit_remark`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`, `good_comment`, `business_start_time`, `business_end_time`, `create_time`, `update_time`, `delete_time`) VALUES (53, 37, '002', '深圳西郊到家', '13000013002', '西郊到家', 1, 'H123456789126345', '周星星', '440991199901012121', 440000, 440300, 440304, '福田区上沙中洲湾1期南区(上沙二路东)', '114.02965609415', '22.523516034406', 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', '', 'uploads/images/20241211/20241211174914b6f4a8156.jpeg', 'uploads/images/20241211/20241211164833ec9f03379.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 1, 1, 0, 219.00, 20.00, 1, '', 1, 1, 1, 1, 1, 1, 1, 5, '10:00', '22:00', 1733910977, 1733913742, NULL);
|
||||
INSERT INTO `ls_shop` (`id`, `shop_user_id`, `sn`, `name`, `mobile`, `short_name`, `type`, `social_credit_ode`, `legal_person`, `legal_id_card`, `province_id`, `city_id`, `region_id`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `work_status`, `server_status`, `sort`, `money`, `deposit`, `audit_status`, `audit_remark`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `saturday`, `sunday`, `good_comment`, `business_start_time`, `business_end_time`, `create_time`, `update_time`, `delete_time`) VALUES (54, 38, '003', '早晚到家', '13000013003', '早到家', 2, 'Y1234567891345', '周星星', '410991199901050213', 440000, 440100, 440105, '海珠区广州大道南中国石油bp加油站(桂田南大街南)', '113.31655493894', '23.090213029054', 'uploads/images/20241211/20241211161801a65231227.jpeg', 'uploads/images/20241211/20241211161801307d90459.png', '', 'uploads/images/20241211/20241211164833c1b1f5442.jpeg', 'uploads/images/20241211/20241211174914138b68808.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 1, 1, 0, 5.00, 18.00, 1, '', 1, 1, 1, 1, 1, 1, 1, 5, '10:00', '22:00', 1733914718, 1733914861, NULL);
|
||||
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (446, 29, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (447, 30, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (448, 31, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (449, 32, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (464, 29, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (465, 31, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (466, 29, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (467, 30, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_category_index` (`id`, `category_id`, `shop_id`, `create_time`) VALUES (468, 32, 52, 1733919545);
|
||||
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (312, 72, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (313, 71, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (314, 70, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (315, 69, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (316, 68, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (317, 67, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (318, 66, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (319, 65, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (320, 64, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (321, 63, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (322, 62, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (323, 61, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (324, 60, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (325, 59, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (326, 58, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (327, 57, 53, 1733910977);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (384, 70, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (385, 68, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (386, 65, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (387, 64, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (388, 63, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (389, 61, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (390, 59, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (391, 57, 54, 1733914774);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (392, 72, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (393, 69, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (394, 63, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (395, 61, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (396, 60, 52, 1733919545);
|
||||
INSERT INTO `ls_shop_goods_index` (`id`, `goods_id`, `shop_id`, `create_time`) VALUES (397, 59, 52, 1733919545);
|
||||
|
||||
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (83, 'uploads/images/20241211/20241211174914e6ad01634.jpeg', 53, 1733910977);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (84, 'uploads/images/20241211/20241211174914e66744239.jpeg', 53, 1733910977);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (85, 'uploads/images/20241211/2024121116483342f6b7899.jpeg', 53, 1733910977);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (86, 'uploads/images/20241211/20241211174914bf4a98760.jpeg', 53, 1733910977);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (106, 'uploads/images/20241211/20241211174914138b68808.jpeg', 54, 1733914774);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (107, 'uploads/images/20241211/20241211174914fa2197076.jpeg', 54, 1733914774);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (108, 'uploads/images/20241211/20241211174914405058816.jpeg', 54, 1733914774);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (109, 'uploads/images/20241211/20241211174914e6ad01634.jpeg', 54, 1733914774);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (110, 'uploads/images/20241211/20241211174914e66744239.jpeg', 52, 1733919545);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (111, 'uploads/images/20241211/20241211174914e6ad01634.jpeg', 52, 1733919545);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (112, 'uploads/images/20241211/20241211174914f12d43173.jpeg', 52, 1733919545);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (113, 'uploads/images/20241211/20241211174914405058816.jpeg', 52, 1733919545);
|
||||
INSERT INTO `ls_shop_image` (`id`, `uri`, `shop_id`, `create_time`) VALUES (114, 'uploads/images/20241211/20241211174914fa2197076.jpeg', 52, 1733919545);
|
||||
|
||||
INSERT INTO `ls_shop_update` (`id`, `shop_user_id`, `shop_id`, `business_start_time`, `business_end_time`, `sn`, `name`, `mobile`, `short_name`, `type`, `city_id`, `province_id`, `region_id`, `social_credit_ode`, `legal_person`, `legal_id_card`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `audit_status`, `audit_remark`, `shop_image`, `category_ids`, `goods_ids`, `create_time`, `update_time`, `delete_time`) VALUES (15, 36, 52, '8', '22', '001', '广州东郊到家', '15338458941', '东郊到家', 1, 440100, 440000, 0, 'G123456789123456', '李富贵', '410981199909098978', '员岗中路9号', '113.362873', '23.017941', 'uploads/images/20241211/20241211174310c3c828608.jpeg', 'uploads/images/20241211/20241211174304427a74685.png', '', 'uploads/images/20241211/20241211175836c4df79417.jpeg', 'uploads/images/20241211/202412111742465d03d0283.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 1, '', 'uploads/images/20241211/20241211174914e66744239.jpeg,uploads/images/20241211/20241211174914e6ad01634.jpeg,uploads/images/20241211/20241211174914f12d43173.jpeg,uploads/images/20241211/20241211174914405058816.jpeg,uploads/images/20241211/20241211174914fa2197076.jpeg', '29,30,31,32', '57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72', 1733911119, 1733911373, NULL);
|
||||
INSERT INTO `ls_shop_update` (`id`, `shop_user_id`, `shop_id`, `business_start_time`, `business_end_time`, `sn`, `name`, `mobile`, `short_name`, `type`, `city_id`, `province_id`, `region_id`, `social_credit_ode`, `legal_person`, `legal_id_card`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `audit_status`, `audit_remark`, `shop_image`, `category_ids`, `goods_ids`, `create_time`, `update_time`, `delete_time`) VALUES (16, 36, 52, '8', '22', '001', '广州东郊到家', '15338458941', '东郊到家啊', 1, 440100, 440000, 0, 'G123456789123456', '李富贵', '410981199909098978', '员岗中路9号', '113.362873', '23.017941', 'uploads/images/20241211/20241211174310c3c828608.jpeg', 'uploads/images/20241211/20241211174304427a74685.png', '', 'uploads/images/20241211/20241211175836c4df79417.jpeg', 'uploads/images/20241211/202412111742465d03d0283.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 2, '不通过', 'uploads/images/20241211/20241211174914e66744239.jpeg,uploads/images/20241211/20241211174914e6ad01634.jpeg,uploads/images/20241211/20241211174914f12d43173.jpeg,uploads/images/20241211/20241211174914405058816.jpeg,uploads/images/20241211/20241211174914fa2197076.jpeg', '29,30,31,32', '57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72', 1733911439, 1733911451, NULL);
|
||||
INSERT INTO `ls_shop_update` (`id`, `shop_user_id`, `shop_id`, `business_start_time`, `business_end_time`, `sn`, `name`, `mobile`, `short_name`, `type`, `city_id`, `province_id`, `region_id`, `social_credit_ode`, `legal_person`, `legal_id_card`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `audit_status`, `audit_remark`, `shop_image`, `category_ids`, `goods_ids`, `create_time`, `update_time`, `delete_time`) VALUES (17, 36, 52, '8', '22', '001', '广州东郊到家', '15338458941', '东郊到家啊', 1, 440100, 440000, 0, 'G123456789123456', '李富贵', '410981199909098978', '员岗中路9号', '113.362873', '23.017941', 'uploads/images/20241211/20241211174310c3c828608.jpeg', 'uploads/images/20241211/20241211174304427a74685.png', '', 'uploads/images/20241211/20241211175836c4df79417.jpeg', 'uploads/images/20241211/202412111742465d03d0283.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 2, '拒绝通过', 'uploads/images/20241211/20241211174914e66744239.jpeg,uploads/images/20241211/20241211174914e6ad01634.jpeg,uploads/images/20241211/20241211174914f12d43173.jpeg,uploads/images/20241211/20241211174914405058816.jpeg,uploads/images/20241211/20241211174914fa2197076.jpeg', '29,30,31,32', '57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72', 1733911475, 1733911492, NULL);
|
||||
INSERT INTO `ls_shop_update` (`id`, `shop_user_id`, `shop_id`, `business_start_time`, `business_end_time`, `sn`, `name`, `mobile`, `short_name`, `type`, `city_id`, `province_id`, `region_id`, `social_credit_ode`, `legal_person`, `legal_id_card`, `shop_address_detail`, `longitude`, `latitude`, `id_card_front`, `id_card_back`, `portrait_shooting`, `logo`, `business_license`, `synopsis`, `audit_status`, `audit_remark`, `shop_image`, `category_ids`, `goods_ids`, `create_time`, `update_time`, `delete_time`) VALUES (18, 36, 52, '8', '22', '001', '广州东郊到家', '15338458941', '东郊到家啊', 1, 440100, 440000, 0, 'G123456789123456', '李富贵', '410981199909098978', '员岗中路9号', '113.362873', '23.017941', 'uploads/images/20241211/20241211174310c3c828608.jpeg', 'uploads/images/20241211/20241211174304427a74685.png', '', 'uploads/images/20241211/20241211175836c4df79417.jpeg', 'uploads/images/20241211/202412111742465d03d0283.jpeg', '专注提供高品质上门按摩服务,覆盖全身舒压、肩颈放松、经络调理等多种项目。专业技师,随时上门,为您带来舒适便捷的健康体验。', 1, '', 'uploads/images/20241211/20241211174914e66744239.jpeg,uploads/images/20241211/20241211174914e6ad01634.jpeg,uploads/images/20241211/20241211174914f12d43173.jpeg,uploads/images/20241211/20241211174914405058816.jpeg,uploads/images/20241211/20241211174914fa2197076.jpeg', '29,30,32', '72,69,63,61,60,59', 1733919533, 1733919545, NULL);
|
||||
|
||||
INSERT INTO `ls_shop_coach_apply` (`id`, `coach_id`, `shop_id`, `type`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (87, 111, 52, 1, 1, '', 1733911824, 1733911842, NULL);
|
||||
INSERT INTO `ls_shop_coach_apply` (`id`, `coach_id`, `shop_id`, `type`, `audit_status`, `audit_remark`, `create_time`, `update_time`, `delete_time`) VALUES (88, 113, 53, 1, 1, '', 1733912008, 1733912103, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_goods_comment` (`id`, `goods_id`, `user_id`, `order_goods_id`, `service_comment`, `comment`, `reply`, `status`, `coach_id`, `shop_id`, `create_time`, `update_time`, `delete_time`) VALUES (1138, 63, 22, 291, 5, '技师人很好,下次还点她!', NULL, 0, 111, 52, 1733922902, 1733922902, NULL);
|
||||
INSERT INTO `ls_goods_comment` (`id`, `goods_id`, `user_id`, `order_goods_id`, `service_comment`, `comment`, `reply`, `status`, `coach_id`, `shop_id`, `create_time`, `update_time`, `delete_time`) VALUES (1139, 72, 22, 287, 5, '五星好评!!!', NULL, 0, 110, 0, 1733922917, 1733922917, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (278, '202412112000488193', 22, 111, 52, '', 1, 3, 7, 1, 14.01, 0.00, 3, 0.01, 14.01, 14.01, 14.01, 0.00, 0.00, 1, '', NULL, 28, 0, 1733918449, 1733918464, NULL, 1733923800, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733925600, 0, '14', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733918448, 1733918464, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (279, '202412112005331776', 23, 111, 52, '', 1, 2, 7, 1, 0.00, 0.00, 3, 0.01, 1.01, 1.01, 1.01, 0.00, 0.00, 1, '', NULL, 30, 0, 1733918733, 1733923827, NULL, 1733923800, '{\"id\":30,\"user_id\":23,\"contact\":\"\\u828b\\u5706\",\"mobile\":\"15820396970\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440113,\"address\":\"206\",\"longitude\":\"113.368064\",\"latitude\":\"23.015329\",\"is_default\":1,\"create_time\":\"2024-12-11 20:05:18\",\"update_time\":\"2024-12-11 20:05:18\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 1.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733925600, 0, '1', 1.00, 0.00, 0.30, 0.20, 1.00, 0.50, 1.50, 1, 1733918733, 1733923827, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (280, '202412112006021914', 22, 111, 52, '', 1, 3, 7, 1, 0.00, 0.00, 3, 0.01, 14.01, 14.01, 14.01, 0.00, 0.00, 1, '', NULL, 28, 0, 1733918763, 1733927428, NULL, 1733927400, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733929200, 0, '14', 14.00, 0.00, 4.20, 2.80, 14.00, 7.00, 21.00, 1, 1733918762, 1733927428, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (281, '202412112006397109', 23, 111, 52, '', 1, 2, 1, 1, 0.00, 0.00, 3, 0.01, 1.01, 1.01, 1.01, 0.00, 0.00, 1, '', NULL, 30, 0, 1733918799, NULL, NULL, 1733936400, '{\"id\":30,\"user_id\":23,\"contact\":\"\\u828b\\u5706\",\"mobile\":\"15820396970\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440113,\"address\":\"206\",\"longitude\":\"113.368064\",\"latitude\":\"23.015329\",\"is_default\":1,\"create_time\":\"2024-12-11 20:05:18\",\"update_time\":\"2024-12-11 20:05:18\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 1.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733938200, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733918799, 1733918799, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (282, '202412112007574883', 22, 110, 0, '', 1, 2, 7, 1, 0.00, 0.00, 3, 598.00, 602.00, 602.00, 602.00, 0.00, 0.00, 1, '', NULL, 28, 0, 1733918877, 1733925627, NULL, 1733925600, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 4.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1733929200, 0, '4', 183.40, 0.00, 1.20, 0.00, 183.40, 1.20, 184.60, 1, 1733918877, 1733925627, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (283, '202412112008133523', 22, 111, 52, '', 1, 2, 1, 1, 0.00, 0.00, 3, 0.01, 14.01, 14.01, 14.01, 0.00, 0.00, 1, '', NULL, 28, 0, 1733918893, NULL, NULL, 1733940000, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733941800, 0, '14', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733918893, 1733918893, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (284, '202412112008532412', 22, 111, 52, '', 1, 2, 1, 1, 0.00, 0.00, 3, 0.02, 14.02, 14.02, 14.02, 0.00, 0.00, 2, '', NULL, 28, 0, 1733918940, NULL, NULL, 1733943600, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1733947200, 0, '14', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733918933, 1733918940, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (285, '202412112011090859', 22, 110, 0, '', 1, 2, 1, 1, 0.00, 0.00, 3, 0.01, 4.01, 4.01, 4.01, 0.00, 0.00, 1, '', NULL, 28, 0, 1733919071, NULL, NULL, 1733938200, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 4.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1733940000, 0, '4', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733919069, 1733919071, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (286, '202412112019184155', 23, 111, 52, NULL, 1, 2, 7, 0, 0.00, 0.00, 0, 0.01, 1.01, 1.01, 1.01, 0.00, 0.00, 1, '', NULL, 30, 0, NULL, 1733921368, NULL, 1734026400, '{\"id\":30,\"user_id\":23,\"contact\":\"\\u828b\\u5706\",\"mobile\":\"15820396970\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440113,\"address\":\"206\",\"longitude\":\"113.368064\",\"latitude\":\"23.015329\",\"is_default\":1,\"create_time\":\"2024-12-11 20:05:18\",\"update_time\":\"2024-12-11 20:05:18\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 1.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 30, 1734028200, 0, '1', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733919558, 1733921368, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (287, '202412112023231989', 22, 113, 53, '', 1, 2, 7, 1, 0.00, 0.00, 3, 0.02, 95.02, 95.02, 95.02, 0.00, 0.00, 2, '哈哈哈哈哈哈', NULL, 28, 0, 1733919803, 1733923827, NULL, 1733923800, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 95.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1733927400, 0, '95', 95.01, 0.00, 28.50, 19.00, 95.01, 47.50, 142.51, 1, 1733919803, 1733923827, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (288, '202412112027356888', 22, 110, 0, '', 1, 2, 6, 1, 0.00, 0.00, 3, 0.02, 4.02, 18.72, 4.02, 14.00, 0.70, 2, '哈哈哈哈哈哈哈哈哈哈', NULL, 28, 0, 1733920075, NULL, NULL, 1733943600, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 4.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1733947200, 1733920528, '4', 8.42, 0.00, 1.20, 0.00, 8.42, 1.20, 9.62, 1, 1733920055, 1733920528, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (289, '202412112036452996', 22, 111, 52, '', 1, 2, 1, 1, 0.00, 0.00, 3, 1296.00, 1310.00, 1310.00, 1310.00, 0.00, 0.00, 2, '快点来', NULL, 28, 0, 1733920605, NULL, NULL, 1734134400, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 120, 1734141600, 0, '14', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733920605, 1733920605, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (290, '202412112038237028', 22, 111, 52, '', 1, 2, 1, 1, 0.00, 0.00, 3, 0.02, 14.02, 14.02, 14.02, 0.00, 0.00, 2, '', NULL, 28, 0, 1733920703, NULL, NULL, 1734033600, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1734037200, 0, '14', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 1733920703, 1733920703, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (291, '202412112041284072', 22, 110, 0, '', 1, 2, 7, 1, 70.00, 0.00, 3, 718.00, 722.00, 902.00, 722.00, 110.00, 70.00, 1, '', NULL, 28, 0, 1733920888, NULL, NULL, 1734138000, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 4.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 60, 1734141600, 0, '4', 261.40, 0.00, 1.20, 0.00, 261.40, 1.20, 262.60, 1, 1733920888, 1733921009, NULL);
|
||||
INSERT INTO `ls_order` (`id`, `sn`, `user_id`, `coach_id`, `shop_id`, `transaction_id`, `order_type`, `order_terminal`, `order_status`, `pay_status`, `total_refund_amount`, `refund_amount`, `pay_way`, `goods_price`, `order_amount`, `total_order_amount`, `total_amount`, `total_gap_amount`, `total_append_amount`, `total_num`, `user_remark`, `order_remarks`, `address_id`, `is_dispatch`, `pay_time`, `cancel_time`, `finish_time`, `appoint_time`, `address_snap`, `trip_way`, `car_amount`, `refund_car_amount`, `car_config_snap`, `total_duration`, `server_finish_time`, `true_server_finish_time`, `order_distance`, `settle_coach_amount`, `settle_shop_amount`, `settle_coach_car_amount`, `settle_shop_car_amount`, `settle_commission_amount`, `settle_car_commission_amount`, `settle_total_commission_amount`, `is_settle`, `create_time`, `update_time`, `delete_time`) VALUES (292, '202412112049349360', 22, 111, 52, '', 1, 2, 6, 1, 0.00, 0.00, 3, 996.00, 1010.00, 1090.00, 1010.00, 30.00, 50.00, 2, '', NULL, 28, 0, 1733921374, NULL, NULL, 1734148800, '{\"id\":28,\"user_id\":22,\"contact\":\"\\u9ece\\u660e\",\"mobile\":\"13000013001\",\"gender\":1,\"province_id\":440000,\"city_id\":440100,\"district_id\":440104,\"address\":\"\\u5bfa\\u8d1d\\u65b0\\u885711\\u53f7\",\"longitude\":\"113.299519\",\"latitude\":\"23.122967\",\"is_default\":1,\"create_time\":\"2024-12-11 19:21:19\",\"update_time\":\"2024-12-11 19:21:19\",\"delete_time\":null,\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u8d8a\\u79c0\\u533a\",\"gender_desc\":\"\\u5148\\u751f\"}', 0, 14.00, 0.00, '{\"id\":11,\"parent_id\":440000,\"parent_name\":\"\\u5e7f\\u4e1c\\u7701\",\"city_id\":440100,\"name\":\"\\u5e7f\\u5dde\\u5e02\",\"level\":2,\"gcj02_lng\":\"113.280637\",\"gcj02_lat\":\"23.125178\",\"db09_lng\":\"113.287049\",\"db09_lat\":\"23.131514\",\"taxi\":1,\"start_km\":\"1\",\"start_price\":\"1.00\",\"continue_price\":\"1.00\",\"bus\":1,\"bus_start_time\":\"6:00\",\"bus_end_time\":\"23:30\",\"bus_fare\":\"6.00\",\"create_time\":\"2024-11-15 12:02:33\",\"update_time\":\"2024-12-11 11:00:24\",\"delete_time\":null}', 120, 1734156000, 1733922395, '14', 336.80, 215.20, 4.20, 2.80, 552.00, 7.00, 559.00, 1, 1733921374, 1733922395, NULL);
|
||||
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (277, 278, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733918448, 1733918448, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (278, 279, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733918733, 1733918733, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (279, 280, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733918762, 1733918762, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (280, 281, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733918799, 1733918799, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (281, 282, 68, '意式SPA', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144138904d92845.png', 1, 598.00, 598.00, 598.00, 0, '{\"id\":68,\"status\":1,\"name\":\"\\u610f\\u5f0fSPA\",\"shop_id\":0,\"tags\":\"\\u7f8e\\u8f6e\\u7f8e\\u5942\\uff5c\\u5929\\u4e0a\\u4eba\\u95f4\",\"duration\":60,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144138904d92845.png\",\"price\":\"598.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 60, 1733918877, 1733918877, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (282, 283, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733918893, 1733918893, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (283, 284, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 2, 0.01, 0.02, 0.02, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":2}', 30, 1733918933, 1733918933, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (284, 285, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733919069, 1733919069, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (285, 286, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 1, 0.01, 0.01, 0.01, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 30, 1733919558, 1733919558, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (286, 287, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 2, 0.01, 0.02, 0.02, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":2}', 30, 1733919803, 1733919803, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (287, 288, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 2, 0.01, 0.02, 0.02, 1, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":2}', 30, 1733920055, 1733922917, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (288, 289, 69, '广州专属', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141d80b71441.png', 2, 648.00, 1296.00, 1296.00, 0, '{\"id\":69,\"status\":1,\"name\":\"\\u5e7f\\u5dde\\u4e13\\u5c5e\",\"shop_id\":0,\"tags\":\"\\u5e7f\\u5dde\\u4e13\\u5c5e\\uff5c\\u8212\\u7f13\\u4e00\\u6574\\u5929\",\"duration\":60,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141d80b71441.png\",\"price\":\"648.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"goods_city\":[{\"id\":173,\"goods_id\":69,\"city_id\":440100,\"create_time\":\"2024-12-11 14:59:49\"}],\"goods_num\":2}', 60, 1733920605, 1733920605, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (289, 290, 72, '经典按摩', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/20241211144141926dd8333.png', 2, 0.01, 0.02, 0.02, 0, '{\"id\":72,\"status\":1,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"shop_id\":0,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"duration\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":2}', 30, 1733920703, 1733920703, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (290, 291, 66, '水韵月华呵护', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/202412111441401adf88914.png', 1, 718.00, 718.00, 718.00, 0, '{\"id\":66,\"status\":1,\"name\":\"\\u6c34\\u97f5\\u6708\\u534e\\u5475\\u62a4\",\"shop_id\":0,\"tags\":\"\\u6e05\\u67d4\\uff5c\\u751c\\u7f8e\\uff5c\\u7edd\\u7f8e\",\"duration\":60,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441401adf88914.png\",\"price\":\"718.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":1}', 60, 1733920888, 1733920888, NULL);
|
||||
INSERT INTO `ls_order_goods` (`id`, `order_id`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `total_price`, `total_pay_price`, `is_comment`, `goods_snap`, `duration`, `create_time`, `update_time`, `delete_time`) VALUES (291, 292, 63, '日式SPA', 'https://php-amdj-demo.yixiangonline.com/uploads/images/20241211/202412111441416381f5744.png', 2, 498.00, 996.00, 996.00, 1, '{\"id\":63,\"status\":1,\"name\":\"\\u65e5\\u5f0fSPA\",\"shop_id\":0,\"tags\":\"FBI \\uff5c\\u89d2\\u8272\\u626e\\u6f14\",\"duration\":60,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441416381f5744.png\",\"price\":\"498.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"goods_city\":[],\"goods_num\":2}', 60, 1733921374, 1733922902, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (47, '202412112029166678', 288, 1, '', 1, 22, 3, 1733920158, 72, '经典按摩', 'uploads/images/20241211/20241211144141926dd8333.png', 5, 0.10, 0.50, 0, '{\"id\":72,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"category_id\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"duration\":30,\"scribing_price\":\"698.00\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":12,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"virtual_order_num\":3000,\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 15:06:36\",\"update_time\":\"2024-12-11 20:27:55\",\"delete_time\":null}', 10, 0.00, 1733920156, 1733920158, NULL);
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (48, '202412112029371753', 288, 1, '', 1, 22, 3, 1733920178, 72, '经典按摩', 'uploads/images/20241211/20241211144141926dd8333.png', 2, 0.10, 0.20, 0, '{\"id\":72,\"name\":\"\\u7ecf\\u5178\\u6309\\u6469\",\"category_id\":30,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211144141926dd8333.png\",\"price\":\"0.01\",\"duration\":30,\"scribing_price\":\"698.00\",\"overtime_price\":\"0.10\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":12,\"tags\":\"\\u5168\\u56fd\\u901a\\u7528\\uff5c\\u91ca\\u653e\\u538b\\u529b\",\"virtual_order_num\":3000,\"appoint_start_time\":\"1\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 15:06:36\",\"update_time\":\"2024-12-11 20:27:55\",\"delete_time\":null}', 10, 0.00, 1733920177, 1733920178, NULL);
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (49, '202412112042231984', 291, 1, '', 1, 22, 3, 1733920944, 66, '水韵月华呵护', 'uploads/images/20241211/202412111441401adf88914.png', 3, 10.00, 30.00, 0, '{\"id\":66,\"name\":\"\\u6c34\\u97f5\\u6708\\u534e\\u5475\\u62a4\",\"category_id\":32,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441401adf88914.png\",\"price\":\"718.00\",\"duration\":60,\"scribing_price\":\"0.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":1,\"tags\":\"\\u6e05\\u67d4\\uff5c\\u751c\\u7f8e\\uff5c\\u7edd\\u7f8e\",\"virtual_order_num\":600,\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 14:36:16\",\"update_time\":\"2024-12-11 20:41:29\",\"delete_time\":null}', 10, 30.00, 1733920943, 1733921009, NULL);
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (50, '202412112042468615', 291, 1, '', 1, 22, 3, 1733920967, 66, '水韵月华呵护', 'uploads/images/20241211/202412111441401adf88914.png', 4, 10.00, 40.00, 0, '{\"id\":66,\"name\":\"\\u6c34\\u97f5\\u6708\\u534e\\u5475\\u62a4\",\"category_id\":32,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441401adf88914.png\",\"price\":\"718.00\",\"duration\":60,\"scribing_price\":\"0.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":1,\"tags\":\"\\u6e05\\u67d4\\uff5c\\u751c\\u7f8e\\uff5c\\u7edd\\u7f8e\",\"virtual_order_num\":600,\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 14:36:16\",\"update_time\":\"2024-12-11 20:41:29\",\"delete_time\":null}', 10, 40.00, 1733920966, 1733920999, NULL);
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (51, '202412112050550668', 292, 1, '', 1, 22, 3, 1733921456, 63, '日式SPA', 'uploads/images/20241211/202412111441416381f5744.png', 2, 10.00, 20.00, 0, '{\"id\":63,\"name\":\"\\u65e5\\u5f0fSPA\",\"category_id\":29,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441416381f5744.png\",\"price\":\"498.00\",\"duration\":60,\"scribing_price\":\"0.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":2,\"tags\":\"FBI \\uff5c\\u89d2\\u8272\\u626e\\u6f14\",\"virtual_order_num\":2698,\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 14:22:29\",\"update_time\":\"2024-12-11 20:49:35\",\"delete_time\":null}', 10, 0.00, 1733921455, 1733921456, NULL);
|
||||
INSERT INTO `ls_order_append` (`id`, `sn`, `order_id`, `pay_status`, `transaction_id`, `order_terminal`, `user_id`, `pay_way`, `pay_time`, `goods_id`, `goods_name`, `goods_image`, `goods_num`, `goods_price`, `order_amount`, `is_comment`, `goods_snap`, `duration`, `refund_amount`, `create_time`, `update_time`, `delete_time`) VALUES (52, '202412112050596210', 292, 1, '', 1, 22, 3, 1733921460, 63, '日式SPA', 'uploads/images/20241211/202412111441416381f5744.png', 3, 10.00, 30.00, 0, '{\"id\":63,\"name\":\"\\u65e5\\u5f0fSPA\",\"category_id\":29,\"image\":\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/202412111441416381f5744.png\",\"price\":\"498.00\",\"duration\":60,\"scribing_price\":\"0.00\",\"overtime_price\":\"10.00\",\"overtime_duration\":10,\"shop_ratio\":\"20.00\",\"commission_ratio\":\"30.00\",\"status\":1,\"sort\":0,\"content\":\"<p><img src=\\\"https:\\/\\/php-amdj-demo.yixiangonline.com\\/uploads\\/images\\/20241211\\/20241211135331597b13478.png\\\" alt=\\\"\\\" data-href=\\\"\\\" style=\\\"\\\"\\/><\\/p>\",\"order_num\":2,\"tags\":\"FBI \\uff5c\\u89d2\\u8272\\u626e\\u6f14\",\"virtual_order_num\":2698,\"appoint_start_time\":\"6\",\"appoint_end_time\":\"23\",\"shop_id\":0,\"audit_status\":1,\"audit_remark\":\"\",\"create_time\":\"2024-12-11 14:22:29\",\"update_time\":\"2024-12-11 20:49:35\",\"delete_time\":null}', 10, 0.00, 1733921459, 1733921460, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (59, 288, 22, '', '202412112029479464', 1, 1, 3, 1733920188, 10.00, '哈哈哈哈啥事办完', 0.00, 1733920188, 1733920187, NULL);
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (60, 288, 22, '', '202412112030031586', 1, 1, 3, 1733920205, 4.00, '精油', 0.00, 1733920205, 1733920203, NULL);
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (61, 291, 22, '', '202412112042328515', 1, 1, 3, 1733920953, 10.00, '精油', 0.00, 1733920953, 1733920952, NULL);
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (62, 291, 22, '', '202412112042384911', 1, 1, 3, 1733920959, 100.00, '精油', 0.00, 1733920959, 1733920958, NULL);
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (63, 292, 22, '', '202412112051074615', 1, 1, 3, 1733921468, 10.00, '道具', 0.00, 1733921468, 1733921467, NULL);
|
||||
INSERT INTO `ls_order_gap` (`id`, `order_id`, `user_id`, `transaction_id`, `sn`, `order_terminal`, `pay_status`, `pay_way`, `pay_time`, `order_amount`, `remark`, `refund_amount`, `update_time`, `create_time`, `delete_time`) VALUES (64, 292, 22, '', '202412112051461971', 1, 1, 3, 1733921507, 20.00, '衣服、道具', 0.00, 1733921507, 1733921506, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66126, 3, 301, 278, 22, '用户提交订单', '', '', '[]', '[]', 1733918448, 1733918448);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66127, 3, 303, 278, 22, '用户支付订单', '', '', '[]', '[]', 1733918449, 1733918449);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66128, 3, 302, 278, 22, '用户取消订单', '', '', '[]', '[]', 1733918464, 1733918464);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66129, 3, 301, 279, 23, '用户提交订单', '', '', '[]', '[]', 1733918733, 1733918733);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66130, 3, 303, 279, 23, '用户支付订单', '', '', '[]', '[]', 1733918733, 1733918733);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66131, 3, 301, 280, 22, '用户提交订单', '', '', '[]', '[]', 1733918762, 1733918762);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66132, 3, 303, 280, 22, '用户支付订单', '', '', '[]', '[]', 1733918763, 1733918763);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66133, 3, 301, 281, 23, '用户提交订单', '', '', '[]', '[]', 1733918799, 1733918799);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66134, 3, 303, 281, 23, '用户支付订单', '', '', '[]', '[]', 1733918799, 1733918799);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66135, 3, 301, 282, 22, '用户提交订单', '', '', '[]', '[]', 1733918877, 1733918877);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66136, 3, 303, 282, 22, '用户支付订单', '', '', '[]', '[]', 1733918877, 1733918877);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66137, 3, 301, 283, 22, '用户提交订单', '', '', '[]', '[]', 1733918893, 1733918893);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66138, 3, 303, 283, 22, '用户支付订单', '', '', '[]', '[]', 1733918893, 1733918893);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66139, 3, 301, 284, 22, '用户提交订单', '', '', '[]', '[]', 1733918933, 1733918933);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66140, 3, 303, 284, 22, '用户支付订单', '', '', '[]', '[]', 1733918940, 1733918940);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66141, 3, 301, 285, 22, '用户提交订单', '', '', '[]', '[]', 1733919069, 1733919069);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66142, 3, 303, 285, 22, '用户支付订单', '', '', '[]', '[]', 1733919071, 1733919071);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66143, 3, 301, 286, 23, '用户提交订单', '', '', '[]', '[]', 1733919558, 1733919558);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66144, 3, 301, 287, 22, '用户提交订单', '', '', '[]', '[]', 1733919803, 1733919803);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66145, 3, 303, 287, 22, '用户支付订单', '', '', '[]', '[]', 1733919803, 1733919803);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66146, 3, 301, 288, 22, '用户提交订单', '', '', '[]', '[]', 1733920055, 1733920055);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66147, 3, 303, 288, 22, '用户支付订单', '', '', '[]', '[]', 1733920075, 1733920075);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66148, 4, 411, 288, 110, '技师接单', '', '', '[]', '[]', 1733920147, 1733920147);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66149, 3, 305, 288, 22, '用户支付加钟', '', '', '[]', '[]', 1733920158, 1733920158);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66150, 3, 305, 288, 22, '用户支付加钟', '', '', '[]', '[]', 1733920178, 1733920178);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66151, 3, 304, 288, 22, '用户支付差价', '', '', '[]', '[]', 1733920188, 1733920188);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66152, 3, 304, 288, 22, '用户支付差价', '', '', '[]', '[]', 1733920205, 1733920205);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66153, 4, 412, 288, 110, '技师出发', '', '', '[]', '[]', 1733920297, 1733920297);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66154, 4, 413, 288, 110, '技师达到', '113.367874', '23.015253', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\",\"longitude\":113.367874,\"latitude\":23.015253}', '[\"uploads\\/images\\/20241211\\/202412112031499df956046.jpeg\",\"uploads\\/images\\/20241211\\/20241211203149bb1241201.jpeg\",\"uploads\\/images\\/20241211\\/20241211203149a54908293.jpeg\",\"uploads\\/images\\/20241211\\/20241211203149f4ecb4841.jpeg\",\"uploads\\/images\\/20241211\\/20241211203149954775809.jpeg\",\"uploads\\/images\\/20241211\\/20241211203149b844b9906.jpeg\"]', 1733920311, 1733920311);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66155, 4, 414, 288, 110, '服务开始', '', '', '[]', '[]', 1733920321, 1733920321);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66156, 4, 415, 288, 110, '服务完成', '113.367874', '23.015253', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\",\"longitude\":113.367874,\"latitude\":23.015253}', '[\"uploads\\/images\\/20241211\\/20241211203508f4c118182.jpeg\",\"uploads\\/images\\/20241211\\/20241211203508b51c57882.jpeg\",\"uploads\\/images\\/20241211\\/20241211203508a15cb5138.jpeg\"]', 1733920528, 1733920528);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66157, 3, 301, 289, 22, '用户提交订单', '', '', '[]', '[]', 1733920605, 1733920605);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66158, 3, 303, 289, 22, '用户支付订单', '', '', '[]', '[]', 1733920605, 1733920605);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66159, 3, 301, 290, 22, '用户提交订单', '', '', '[]', '[]', 1733920703, 1733920703);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66160, 3, 303, 290, 22, '用户支付订单', '', '', '[]', '[]', 1733920703, 1733920703);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66161, 3, 301, 291, 22, '用户提交订单', '', '', '[]', '[]', 1733920888, 1733920888);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66162, 3, 303, 291, 22, '用户支付订单', '', '', '[]', '[]', 1733920888, 1733920888);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66163, 4, 411, 291, 110, '技师接单', '', '', '[]', '[]', 1733920933, 1733920933);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66164, 4, 412, 291, 110, '技师出发', '', '', '[]', '[]', 1733920936, 1733920936);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66165, 3, 305, 291, 22, '用户支付加钟', '', '', '[]', '[]', 1733920944, 1733920944);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66166, 3, 304, 291, 22, '用户支付差价', '', '', '[]', '[]', 1733920953, 1733920953);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66167, 3, 304, 291, 22, '用户支付差价', '', '', '[]', '[]', 1733920959, 1733920959);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66168, 3, 305, 291, 22, '用户支付加钟', '', '', '[]', '[]', 1733920967, 1733920967);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66169, 1, 103, 291, 0, '系统结算订单', '', '', '[]', '[]', 1733921006, 1733921006);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66170, 1, 101, 286, 0, '系统取消订单', '', '', '[]', '[]', 1733921368, 1733921368);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66171, 1, 103, 288, 0, '系统结算订单', '', '', '[]', '[]', 1733921368, 1733921368);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66172, 3, 301, 292, 22, '用户提交订单', '', '', '[]', '[]', 1733921374, 1733921374);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66173, 3, 303, 292, 22, '用户支付订单', '', '', '[]', '[]', 1733921374, 1733921374);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66174, 4, 411, 292, 111, '技师接单', '', '', '[]', '[]', 1733921438, 1733921438);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66175, 3, 305, 292, 22, '用户支付加钟', '', '', '[]', '[]', 1733921456, 1733921456);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66176, 3, 305, 292, 22, '用户支付加钟', '', '', '[]', '[]', 1733921460, 1733921460);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66177, 3, 304, 292, 22, '用户支付差价', '', '', '[]', '[]', 1733921468, 1733921468);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66178, 3, 304, 292, 22, '用户支付差价', '', '', '[]', '[]', 1733921507, 1733921507);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66179, 4, 412, 292, 111, '技师出发', '', '', '[]', '[]', 1733922366, 1733922366);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66180, 4, 413, 292, 111, '技师达到', '113.367874', '23.015253', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\",\"longitude\":113.367874,\"latitude\":23.015253}', '[\"uploads\\/images\\/20241211\\/20241211210625173771247.jpeg\",\"uploads\\/images\\/20241211\\/2024121121062560e969374.jpeg\"]', 1733922386, 1733922386);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66181, 4, 414, 292, 111, '服务开始', '', '', '[]', '[]', 1733922388, 1733922388);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66182, 4, 415, 292, 111, '服务完成', '113.367874', '23.015253', '{\"nation\":\"\\u4e2d\\u56fd\",\"province\":\"\\u5e7f\\u4e1c\\u7701\",\"city\":\"\\u5e7f\\u5dde\\u5e02\",\"district\":\"\\u756a\\u79ba\\u533a\",\"street\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def\",\"street_number\":\"\\u91d1\\u5751\\u5de5\\u4e1a\\u533a\\u8def8\\u53f7\",\"longitude\":113.367874,\"latitude\":23.015253}', '[\"uploads\\/images\\/20241211\\/2024121121063474b9b8569.jpeg\",\"uploads\\/images\\/20241211\\/202412112106341a7365947.jpeg\"]', 1733922395, 1733922395);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66183, 1, 103, 292, 0, '系统结算订单', '', '', '[]', '[]', 1733922447, 1733922447);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66184, 1, 102, 279, 0, '系统取消超过预约时间订单', '', '', '[]', '[]', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66185, 1, 102, 287, 0, '系统取消超过预约时间订单', '', '', '[]', '[]', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66186, 1, 103, 279, 0, '系统结算订单', '', '', '[]', '[]', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66187, 1, 103, 287, 0, '系统结算订单', '', '', '[]', '[]', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66188, 1, 102, 282, 0, '系统取消超过预约时间订单', '', '', '[]', '[]', 1733925627, 1733925627);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66189, 1, 103, 282, 0, '系统结算订单', '', '', '[]', '[]', 1733925627, 1733925627);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66190, 1, 102, 280, 0, '系统取消超过预约时间订单', '', '', '[]', '[]', 1733927428, 1733927428);
|
||||
INSERT INTO `ls_order_log` (`id`, `type`, `channel`, `order_id`, `operator_id`, `content`, `longitude`, `latitude`, `location`, `extra`, `create_time`, `update_time`) VALUES (66191, 1, 103, 280, 0, '系统结算订单', '', '', '[]', '[]', 1733927428, 1733927428);
|
||||
|
||||
|
||||
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (196, '202412112001047056', 278, 0, 22, 3, 1, 3, '', 14.01, 14.01, 0.00, 1, 1733918464, 1733918464);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (197, '202412112043017719', 291, 50, 22, 2, 3, 1, '', 40.00, 10.00, 0.00, 1, 1733920981, 1733920981);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (198, '202412112043193551', 291, 50, 22, 2, 3, 1, '', 40.00, 30.00, 0.00, 1, 1733920999, 1733920999);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (199, '202412112043298653', 291, 49, 22, 2, 3, 1, '', 30.00, 30.00, 0.00, 1, 1733921009, 1733921009);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (200, '202412112130274927', 279, 0, 23, 1, 1, 2, '', 1.01, 1.01, 0.00, 1, 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (201, '202412112130270790', 287, 0, 22, 1, 1, 2, '', 95.02, 95.02, 0.00, 1, 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (202, '202412112200271431', 282, 0, 22, 1, 1, 2, '', 602.00, 602.00, 0.00, 1, 1733925627, 1733925627);
|
||||
INSERT INTO `ls_order_refund` (`id`, `sn`, `order_id`, `sub_order_id`, `user_id`, `type`, `order_type`, `order_terminal`, `transaction_id`, `order_amount`, `refund_amount`, `refund_car_amount`, `refund_status`, `create_time`, `update_time`) VALUES (203, '202412112230289642', 280, 0, 22, 1, 1, 3, '', 14.01, 14.01, 0.00, 1, 1733927428, 1733927428);
|
||||
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (199, '202412112001043820', 196, 3, 22, 1, NULL, '', 1733918464, 1733918464);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (200, '202412112043019196', 197, 2, 1, 1, NULL, '', 1733920981, 1733920981);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (201, '202412112043195297', 198, 2, 1, 1, NULL, '', 1733920999, 1733920999);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (202, '202412112043298076', 199, 2, 1, 1, NULL, '', 1733921009, 1733921009);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (203, '202412112130274917', 200, 1, 0, 1, NULL, '', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (204, '202412112130272637', 201, 1, 0, 1, NULL, '', 1733923827, 1733923827);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (205, '202412112200275576', 202, 1, 0, 1, NULL, '', 1733925627, 1733925627);
|
||||
INSERT INTO `ls_order_refund_log` (`id`, `sn`, `refund_id`, `type`, `operator_id`, `refund_status`, `wechat_refund_id`, `refund_msg`, `create_time`, `update_time`) VALUES (206, '202412112230283811', 203, 1, 0, 1, NULL, '', 1733927428, 1733927428);
|
||||
|
||||
|
||||
|
||||
INSERT INTO `ls_deposit_order` (`id`, `sn`, `relation_id`, `type`, `order_amount`, `pay_way`, `pay_status`, `pay_time`, `openid`, `create_time`, `update_time`, `delete_time`) VALUES (109, '202412111901467578', 111, 1, 0.01, 2, 1, 1733914914, NULL, 1733914906, 1733914914, NULL);
|
||||
|
||||
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (17, '青铜', 0.01, 1, 0, 1, 1733889880, 1733889880, NULL);
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (18, '黄金', 1.00, 5, 0, 1, 1733889892, 1733889924, NULL);
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (19, '铂金', 100.00, 10, 0, 1, 1733889914, 1733889933, NULL);
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (20, '铜牌', 0.01, 10, 20, 2, 1733890036, 1733890049, NULL);
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (21, '银牌', 1.00, 20, 50, 2, 1733890061, 1733890061, NULL);
|
||||
INSERT INTO `ls_deposit_package` (`id`, `name`, `money`, `order_limit`, `coach_num`, `type`, `create_time`, `update_time`, `delete_time`) VALUES (22, '黄金', 100.00, 100, 200, 2, 1733890078, 1733890092, NULL);
|
||||
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
BIN
server/public/install/favicon.ico
Executable file
|
After Width: | Height: | Size: 17 KiB |
BIN
server/public/install/images/admin_s.png
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
server/public/install/images/cms.png
Executable file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
server/public/install/images/erp_s.png
Executable file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
server/public/install/images/icon_mountSuccess.png
Executable file
|
After Width: | Height: | Size: 11 KiB |
BIN
server/public/install/images/icon_select.png
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
server/public/install/images/login_code.png
Executable file
|
After Width: | Height: | Size: 489 B |
BIN
server/public/install/images/login_form_img.png
Executable file
|
After Width: | Height: | Size: 106 KiB |
BIN
server/public/install/images/login_icon_go.png
Executable file
|
After Width: | Height: | Size: 632 B |
BIN
server/public/install/images/login_number.png
Executable file
|
After Width: | Height: | Size: 221 B |
BIN
server/public/install/images/login_password.png
Executable file
|
After Width: | Height: | Size: 386 B |
BIN
server/public/install/images/logo.png
Executable file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
server/public/install/images/logo_new.png
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
server/public/install/images/shop_s.png
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
server/public/install/images/slogn.png
Executable file
|
After Width: | Height: | Size: 21 KiB |
BIN
server/public/install/images/verfiy_code.png
Executable file
|
After Width: | Height: | Size: 6.2 KiB |
109
server/public/install/install.php
Executable file
@@ -0,0 +1,109 @@
|
||||
<?php
|
||||
// error_reporting(0);
|
||||
include "model.php";
|
||||
include "YxEnv.php";
|
||||
|
||||
define('install', true);
|
||||
define('INSTALL_ROOT', __DIR__);
|
||||
define('TESTING_TABLE', 'config');
|
||||
|
||||
$step = $_GET['step'] ?? 1;
|
||||
|
||||
$installDir = "install";
|
||||
$modelInstall = new installModel();
|
||||
|
||||
// Env设置
|
||||
$yxEnv = new YxEnv();
|
||||
|
||||
// 检查是否有安装过
|
||||
$envFilePath = $modelInstall->getAppRoot() . '/.env';
|
||||
if ($modelInstall->appIsInstalled() && in_array($step, [1, 2, 3, 4])) {
|
||||
die('可能已经安装过本系统了,请删除配置目录下面的install.lock文件再尝试');
|
||||
}
|
||||
|
||||
// 加载Example文件
|
||||
$yxEnv->load($modelInstall->getAppRoot() . '/.example.env');
|
||||
|
||||
//尝试生成.env
|
||||
$yxEnv->makeEnv($modelInstall->getAppRoot() . '/.env');
|
||||
|
||||
$post = [
|
||||
'host' => $_POST['host'] ?? '127.0.0.1',
|
||||
'port' => $_POST['port'] ?? '3306',
|
||||
'user' => $_POST['user'] ?? 'root',
|
||||
'password' => $_POST['password'] ?? '',
|
||||
'name' => $_POST['name'] ?? 'likeshop',
|
||||
'admin_user' => $_POST['admin_user'] ?? '',
|
||||
'admin_password' => $_POST['admin_password'] ?? '',
|
||||
'admin_confirm_password' => $_POST['admin_confirm_password'] ?? '',
|
||||
'prefix' => $_POST['prefix'] ?? 'ls_',
|
||||
'import_test_data' => $_POST['import_test_data'] ?? 'off',
|
||||
'clear_db' => $_POST['clear_db'] ?? 'off',
|
||||
];
|
||||
|
||||
$message = '';
|
||||
|
||||
// 检查数据库正确性
|
||||
if ($step == 4) {
|
||||
$canNext = true;
|
||||
if (empty($post['user'])) {
|
||||
$canNext = false;
|
||||
$message = '数据库用户不能为空';
|
||||
} elseif (str_contains($post['user'], '-')) {
|
||||
$canNext = false;
|
||||
$message = '数据库用户不能含"-"字符';
|
||||
} elseif (empty($post['name'])) {
|
||||
$canNext = false;
|
||||
$message = '数据库名称不能为空';
|
||||
}elseif (str_contains($post['name'], '-')) {
|
||||
$canNext = false;
|
||||
$message = '数据库名称不能含"-"字符';
|
||||
} elseif (empty($post['prefix'])) {
|
||||
$canNext = false;
|
||||
$message = '数据表前缀不能为空';
|
||||
} elseif ($post['admin_user'] == '') {
|
||||
$canNext = false;
|
||||
$message = '请填写管理员用户名';
|
||||
} elseif (empty(trim($post['admin_password']))) {
|
||||
$canNext = false;
|
||||
$message = '管理员密码不能为空';
|
||||
} elseif ($post['admin_password'] != $post['admin_confirm_password']) {
|
||||
$canNext = false;
|
||||
$message = '两次密码不一致';
|
||||
} else {
|
||||
// 检查 数据库信息
|
||||
$result = $modelInstall->checkConfig($post['name'], $post);
|
||||
if ($result->result == 'fail') {
|
||||
$canNext = false;
|
||||
$message = $result->error;
|
||||
}
|
||||
|
||||
// 导入测试数据
|
||||
if ($canNext == true && $post['import_test_data'] == 'on') {
|
||||
if (!$modelInstall->importDemoData()) {
|
||||
$canNext = false;
|
||||
$message = '导入测试数据错误';
|
||||
}
|
||||
}
|
||||
|
||||
// 写配置文件
|
||||
if ($canNext) {
|
||||
$yxEnv->putEnv($envFilePath, $post);
|
||||
$modelInstall->mkLockFile();
|
||||
}
|
||||
|
||||
// 恢复admin和index入口
|
||||
if ($canNext) {
|
||||
$modelInstall->restoreIndexLock();
|
||||
}
|
||||
}
|
||||
|
||||
if (!$canNext)
|
||||
$step = 3;
|
||||
}
|
||||
|
||||
// 取得安装成功的表
|
||||
$successTables = $modelInstall->getSuccessTable();
|
||||
|
||||
$nextStep = $step + 1;
|
||||
include __DIR__ . "/template/main.php";
|
||||
94
server/public/install/js/mounted.js
Executable file
@@ -0,0 +1,94 @@
|
||||
var canClick = true;
|
||||
var installIndex = 0;
|
||||
|
||||
String.prototype.format = function(args)
|
||||
{
|
||||
if (arguments.length > 0)
|
||||
{
|
||||
var result = this;
|
||||
if (arguments.length === 1 && typeof (args) == "object")
|
||||
{
|
||||
for (var key in args)
|
||||
{
|
||||
var reg = new RegExp("({" + key + "})", "g");
|
||||
result = result.replace(reg, args[key]);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
for (var i = 0; i < arguments.length; i++)
|
||||
{
|
||||
if (arguments[i] === undefined)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
else
|
||||
{
|
||||
var reg = new RegExp("({[" + i + "]})", "g");
|
||||
result = result.replace(reg, arguments[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
else
|
||||
{
|
||||
return this;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 将内容推送到内容里面
|
||||
*/
|
||||
function pushSuccessTableToBox(successLine) {
|
||||
var installBox = document.getElementById('install_message');
|
||||
|
||||
|
||||
var div = document.createElement('div');
|
||||
div.className = 'item-cell';
|
||||
var lineHtml = `
|
||||
<div style="display: flex;align-items: center;">
|
||||
<div class="layui-icon green"></div>
|
||||
<div style="margin-left: 10px;">创建数据表{0}完成!</div>
|
||||
</div>
|
||||
<div>{1}</div>
|
||||
`;
|
||||
div.innerHTML = lineHtml.format(successLine[0], successLine[1]);
|
||||
|
||||
installBox.append(div);
|
||||
|
||||
}
|
||||
|
||||
function showParts(index) {
|
||||
function getRndInteger(min, max) {
|
||||
return Math.floor(Math.random() * (max - min) ) + min;
|
||||
}
|
||||
|
||||
if (index <= successTables.length) {
|
||||
setTimeout(function () { pushSuccessTableToBox(successTables[index]); showParts(++index); }, getRndInteger(50, 150));
|
||||
}
|
||||
|
||||
if (index === successTables.length) {
|
||||
goStep(5);
|
||||
}
|
||||
}
|
||||
|
||||
function goStep(step) {
|
||||
//var form = document.getElementsByTagName('form')[0];
|
||||
if (canClick === false)
|
||||
return;
|
||||
|
||||
canClick = false;
|
||||
document.main_form.action = "?step=" + step;
|
||||
document.main_form.submit();
|
||||
// form.action = "?step=" + step;
|
||||
// window.location.href = "?step=" + step;
|
||||
}
|
||||
|
||||
function cancel() {
|
||||
window.history.go(-1);
|
||||
}
|
||||
|
||||
setTimeout(function () {
|
||||
showParts(0);
|
||||
}, 100);
|
||||
788
server/public/install/model.php
Executable file
@@ -0,0 +1,788 @@
|
||||
<?php
|
||||
/** 安装界面需要的各种模块 */
|
||||
|
||||
class installModel
|
||||
{
|
||||
private $host;
|
||||
private $name;
|
||||
private $user;
|
||||
private $encoding;
|
||||
private $password;
|
||||
private $port;
|
||||
private $prefix;
|
||||
private $successTable = [];
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private $allowNext = true;
|
||||
/**
|
||||
* @var PDO|string
|
||||
*/
|
||||
private $dbh = null;
|
||||
/**
|
||||
* @var bool
|
||||
*/
|
||||
private $clearDB = false;
|
||||
|
||||
/**
|
||||
* Notes: php版本
|
||||
* @author luzg(2020/8/25 9:56)
|
||||
* @return string
|
||||
*/
|
||||
public function getPhpVersion()
|
||||
{
|
||||
return PHP_VERSION;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 当前版本是否符合
|
||||
* @author luzg(2020/8/25 9:57)
|
||||
* @return string
|
||||
*/
|
||||
public function checkPHP()
|
||||
{
|
||||
return $result = version_compare(PHP_VERSION, '8.0.0') >= 0 ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否有PDO
|
||||
* @author luzg(2020/8/25 9:57)
|
||||
* @return string
|
||||
*/
|
||||
public function checkPDO()
|
||||
{
|
||||
return $result = extension_loaded('pdo') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否有PDO::MySQL
|
||||
* @author luzg(2020/8/25 9:58)
|
||||
* @return string
|
||||
*/
|
||||
public function checkPDOMySQL()
|
||||
{
|
||||
return $result = extension_loaded('pdo_mysql') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持JSON
|
||||
* @author luzg(2020/8/25 9:58)
|
||||
* @return string
|
||||
*/
|
||||
public function checkJSON()
|
||||
{
|
||||
return $result = extension_loaded('json') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持openssl
|
||||
* @author luzg(2020/8/25 9:58)
|
||||
* @return string
|
||||
*/
|
||||
public function checkOpenssl()
|
||||
{
|
||||
return $result = extension_loaded('openssl') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持mbstring
|
||||
* @author luzg(2020/8/25 9:58)
|
||||
* @return string
|
||||
*/
|
||||
public function checkMbstring()
|
||||
{
|
||||
return $result = extension_loaded('mbstring') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持zlib
|
||||
* @author luzg(2020/8/25 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkZlib()
|
||||
{
|
||||
return $result = extension_loaded('zlib') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持curl
|
||||
* @author luzg(2020/8/25 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkCurl()
|
||||
{
|
||||
return $result = extension_loaded('curl') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查GD2扩展
|
||||
* @author luzg(2020/8/26 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkGd2()
|
||||
{
|
||||
return $result = extension_loaded('gd') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查Dom扩展
|
||||
* @author luzg(2020/8/26 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkDom()
|
||||
{
|
||||
return $result = extension_loaded('dom') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持filter
|
||||
* @author luzg(2020/8/25 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkFilter()
|
||||
{
|
||||
return $result = extension_loaded('filter') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否支持iconv
|
||||
* @author luzg(2020/8/25 9:59)
|
||||
* @return string
|
||||
*/
|
||||
public function checkIconv()
|
||||
{
|
||||
return $result = extension_loaded('iconv') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 检查fileinfo扩展
|
||||
* @author 段誉(2021/6/28 11:03)
|
||||
* @return string
|
||||
*/
|
||||
public function checkFileInfo()
|
||||
{
|
||||
return $result = extension_loaded('fileinfo') ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 取得临时目录路径
|
||||
* @author luzg(2020/8/25 10:05)
|
||||
* @return array
|
||||
*/
|
||||
public function getTmpRoot()
|
||||
{
|
||||
$path = $this->getAppRoot() . '/runtime';
|
||||
return [
|
||||
'path' => $path,
|
||||
'exists' => is_dir($path),
|
||||
'writable' => is_writable($path),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查临时路径
|
||||
* @author luzg(2020/8/25 10:06)
|
||||
* @return string
|
||||
*/
|
||||
public function checkTmpRoot()
|
||||
{
|
||||
$tmpRoot = $this->getTmpRoot()['path'];
|
||||
return $result = (is_dir($tmpRoot) and is_writable($tmpRoot)) ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: SESSION路径是否可写
|
||||
* @author luzg(2020/8/25 10:06)
|
||||
* @return mixed
|
||||
*/
|
||||
public function getSessionSavePath()
|
||||
{
|
||||
$sessionSavePath = preg_replace("/\d;/", '', session_save_path());
|
||||
|
||||
return [
|
||||
'path' => $sessionSavePath,
|
||||
'exists' => is_dir($sessionSavePath),
|
||||
'writable' => is_writable($sessionSavePath),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查session路径可写状态
|
||||
* @author luzg(2020/8/25 10:13)
|
||||
* @return string
|
||||
*/
|
||||
public function checkSessionSavePath()
|
||||
{
|
||||
$sessionSavePath = preg_replace("/\d;/", '', session_save_path());
|
||||
$result = (is_dir($sessionSavePath) and is_writable($sessionSavePath)) ? 'ok' : 'fail';
|
||||
if ($result == 'fail') return $result;
|
||||
|
||||
file_put_contents($sessionSavePath . '/zentaotest', 'zentao');
|
||||
$sessionContent = file_get_contents($sessionSavePath . '/zentaotest');
|
||||
if ($sessionContent == 'zentao') {
|
||||
unlink($sessionSavePath . '/zentaotest');
|
||||
return 'ok';
|
||||
}
|
||||
return 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 取得data目录是否可选
|
||||
* @author luzg(2020/8/25 10:58)
|
||||
* @return array
|
||||
*/
|
||||
public function getDataRoot()
|
||||
{
|
||||
$path = $this->getAppRoot();
|
||||
return [
|
||||
'path' => $path . 'www' . DS . 'data',
|
||||
'exists' => is_dir($path),
|
||||
'writable' => is_writable($path),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 取得root路径
|
||||
* @author luzg(2020/8/25 11:02)
|
||||
* @return string
|
||||
*/
|
||||
public function checkDataRoot()
|
||||
{
|
||||
$dataRoot = $this->getAppRoot() . 'www' . DS . 'data';
|
||||
return $result = (is_dir($dataRoot) and is_writable($dataRoot)) ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 取得php.ini信息
|
||||
* @author luzg(2020/8/25 11:03)
|
||||
* @return string
|
||||
*/
|
||||
public function getIniInfo()
|
||||
{
|
||||
$iniInfo = '';
|
||||
ob_start();
|
||||
phpinfo(1);
|
||||
$lines = explode("\n", strip_tags(ob_get_contents()));
|
||||
ob_end_clean();
|
||||
foreach ($lines as $line) if (strpos($line, 'ini') !== false) $iniInfo .= $line . "\n";
|
||||
return $iniInfo;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 创建安装锁定文件
|
||||
* @author luzg(2020/8/28 11:32)
|
||||
* @return bool
|
||||
*/
|
||||
public function mkLockFile()
|
||||
{
|
||||
return touch($this->getAppRoot() . '/config/install.lock');
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查之前是否有安装
|
||||
* @author luzg(2020/8/28 11:36)
|
||||
*/
|
||||
public function appIsInstalled()
|
||||
{
|
||||
return file_exists($this->getAppRoot() . '/config/install.lock');
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 取得配置信息
|
||||
* @author luzg(2020/8/25 11:05)
|
||||
* @param string $dbName 数据库名称
|
||||
* @param array $connectionInfo 连接信息
|
||||
* @return stdclass
|
||||
* @throws Exception
|
||||
*/
|
||||
public function checkConfig($dbName, $connectionInfo)
|
||||
{
|
||||
$return = new stdclass();
|
||||
$return->result = 'ok';
|
||||
|
||||
/* Connect to database. */
|
||||
$this->setDBParam($connectionInfo);
|
||||
$this->dbh = $this->connectDB();
|
||||
if (strpos($dbName, '.') !== false) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '没有发现数据库信息';
|
||||
return $return;
|
||||
}
|
||||
if ( !is_object($this->dbh)) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '安装错误,请检查连接信息:'.mb_strcut($this->dbh,0,30).'...';
|
||||
echo $this->dbh;
|
||||
return $return;
|
||||
}
|
||||
|
||||
/* Get mysql version. */
|
||||
$version = $this->getMysqlVersion();
|
||||
if($version < 5.7){
|
||||
$return->result = 'fail';
|
||||
$return->error = 'MySQL版本不能小于5.7';
|
||||
return $return;
|
||||
}
|
||||
|
||||
/* check mysql sql_model */
|
||||
if(!$this->checkSqlMode($version)) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '请在mysql配置文件修改sql-mode添加NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
|
||||
return $return;
|
||||
}
|
||||
|
||||
/* If database no exits, try create it. */
|
||||
if ( !$this->dbExists()) {
|
||||
if ( !$this->createDB($version)) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '创建数据库错误';
|
||||
return $return;
|
||||
}
|
||||
} elseif ($this->tableExits() and $this->clearDB == false) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '数据表已经存在,您之前应该有安装过本系统,继续安装请选择清空现有数据';
|
||||
return $return;
|
||||
} elseif ($this->dbExists() and $this->clearDB == true) {
|
||||
if (!$this->dropDb($connectionInfo['name'])) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '数据表已经存在,删除已存在库错误,请手动清除';
|
||||
return $return;
|
||||
} else {
|
||||
if ( !$this->createDB($version)) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '创建数据库错误!';
|
||||
return $return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Create tables. */
|
||||
if ( !$this->createTable($version, $connectionInfo)) {
|
||||
$return->result = 'fail';
|
||||
$return->error = '创建表格失败';
|
||||
return $return;
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 设置数据库相关信息
|
||||
* @author luzg(2020/8/25 11:17)
|
||||
* @param $post
|
||||
*/
|
||||
public function setDBParam($post)
|
||||
{
|
||||
$this->host = $post['host'];
|
||||
$this->name = $post['name'];
|
||||
$this->user = $post['user'];
|
||||
$this->encoding = 'utf8mb4';
|
||||
$this->password = $post['password'];
|
||||
$this->port = $post['port'];
|
||||
$this->prefix = $post['prefix'];
|
||||
$this->clearDB = $post['clear_db'] == 'on';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 连接数据库
|
||||
* @author luzg(2020/8/25 11:56)
|
||||
* @return PDO|string
|
||||
*/
|
||||
public function connectDB()
|
||||
{
|
||||
$dsn = "mysql:host={$this->host}; port={$this->port}";
|
||||
try {
|
||||
$dbh = new PDO($dsn, $this->user, $this->password);
|
||||
$dbh->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
|
||||
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
||||
$dbh->exec("SET NAMES {$this->encoding}");
|
||||
$dbh->exec("SET NAMES {$this->encoding}");
|
||||
try{
|
||||
$dbh->exec("SET GLOBAL sql_mode='STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';");
|
||||
}catch (Exception $e){
|
||||
|
||||
}
|
||||
return $dbh;
|
||||
} catch (PDOException $exception) {
|
||||
return $exception->getMessage();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查数据库是否存在
|
||||
* @author luzg(2020/8/25 11:56)
|
||||
* @return mixed
|
||||
*/
|
||||
public function dbExists()
|
||||
{
|
||||
$sql = "SHOW DATABASES like '{$this->name}'";
|
||||
return $this->dbh->query($sql)->fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查表是否存在
|
||||
* @author luzg(2020/8/25 11:56)
|
||||
* @return mixed
|
||||
*/
|
||||
public function tableExits()
|
||||
{
|
||||
$configTable = sprintf("'%s'", $this->prefix . TESTING_TABLE);
|
||||
$sql = "SHOW TABLES FROM {$this->name} like $configTable";
|
||||
return $this->dbh->query($sql)->fetch();
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 获取mysql版本号
|
||||
* @author luzg(2020/8/25 11:56)
|
||||
* @return false|string
|
||||
*/
|
||||
public function getMysqlVersion()
|
||||
{
|
||||
$sql = "SELECT VERSION() AS version";
|
||||
$result = $this->dbh->query($sql)->fetch();
|
||||
return substr($result->version, 0, 3);
|
||||
}
|
||||
|
||||
/**
|
||||
* @notes 检测数据库sql_mode
|
||||
* @param $version
|
||||
* @return bool
|
||||
* @author 段誉
|
||||
* @date 2021/8/27 17:17
|
||||
*/
|
||||
public function checkSqlMode($version)
|
||||
{
|
||||
$sql = "SELECT @@global.sql_mode";
|
||||
$result = $this->dbh->query($sql)->fetch();
|
||||
$result = (array)$result;
|
||||
|
||||
if ($version >= 5.7) {
|
||||
if ((strpos($result['@@global.sql_mode'],'NO_AUTO_CREATE_USER') !==false)
|
||||
&& (strpos($result['@@global.sql_mode'],'NO_ENGINE_SUBSTITUTION') !==false)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 创建数据库
|
||||
* @author luzg(2020/8/25 11:57)
|
||||
* @param $version
|
||||
* @return mixed
|
||||
*/
|
||||
public function createDB($version)
|
||||
{
|
||||
$sql = "CREATE DATABASE `{$this->name}`";
|
||||
if ($version > 4.1) $sql .= " DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci";
|
||||
return $this->dbh->query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 创建表
|
||||
* @author luzg(2020/8/25 11:57)
|
||||
* @param $version
|
||||
* @param $post
|
||||
* @return bool
|
||||
* @throws Exception
|
||||
*/
|
||||
public function createTable($version, $post)
|
||||
{
|
||||
$dbFile = $this->getInstallRoot() . '/db/like.sql';
|
||||
//file_put_contents($dbFile, $this->initAccount($post), FILE_APPEND);
|
||||
$content = str_replace(";\r\n", ";\n", file_get_contents($dbFile));
|
||||
$tables = explode(";\n", $content);
|
||||
$tables[] = $this->initAccount($post);
|
||||
$installTime = microtime(true) * 10000;
|
||||
|
||||
foreach ($tables as $table) {
|
||||
$table = trim($table);
|
||||
if (empty($table)) continue;
|
||||
|
||||
if (strpos($table, 'CREATE') !== false and $version <= 4.1) {
|
||||
$table = str_replace('DEFAULT CHARSET=utf8', '', $table);
|
||||
}
|
||||
// elseif (strpos($table, 'DROP') !== false and $this->clearDB != false) {
|
||||
// $table = str_replace('--', '', $table);
|
||||
// }
|
||||
|
||||
/* Skip sql that is note. */
|
||||
if (strpos($table, '--') === 0) continue;
|
||||
|
||||
$table = str_replace('`ls_', $this->name . '.`ls_', $table);
|
||||
$table = str_replace('`ls_', '`' . $this->prefix, $table);
|
||||
|
||||
if (strpos($table, 'CREATE') !== false) {
|
||||
$tableName = explode('`', $table)[1];
|
||||
$installTime += random_int(3000, 7000);
|
||||
$this->successTable[] = [$tableName, date('Y-m-d H:i:s', $installTime / 10000)];
|
||||
}
|
||||
|
||||
// if (strpos($table, "INSERT INTO ") !== false) {
|
||||
// $table = str_replace('INSERT INTO ', 'INSERT INTO ' .$this->name .'.', $table);
|
||||
// }
|
||||
|
||||
try {
|
||||
if ( !$this->dbh->query($table)) return false;
|
||||
} catch (Exception $e) {
|
||||
echo 'error sql: ' . $table . "<br>";
|
||||
echo $e->getMessage() . "<br>";
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 删除数据库
|
||||
* @param $db
|
||||
* @return false|PDOStatement
|
||||
*/
|
||||
public function dropDb($db)
|
||||
{
|
||||
$sql = "drop database {$db};";
|
||||
return $this->dbh->query($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 取得安装成功的表列表
|
||||
* @author luzg(2020/8/26 18:28)
|
||||
* @return array
|
||||
*/
|
||||
public function getSuccessTable()
|
||||
{
|
||||
return $this->successTable;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 创建演示数据
|
||||
* @author luzg(2020/8/25 11:58)
|
||||
* @return bool
|
||||
*/
|
||||
public function importDemoData()
|
||||
{
|
||||
$demoDataFile = 'ys.sql';
|
||||
$demoDataFile = $this->getInstallRoot() . '/db/' . $demoDataFile;
|
||||
if (!is_file($demoDataFile)) {
|
||||
echo "<br>";
|
||||
echo 'no file:' .$demoDataFile;
|
||||
return false;
|
||||
}
|
||||
$content = str_replace(";\r\n", ";\n", file_get_contents($demoDataFile));
|
||||
$insertTables = explode(";\n", $content);
|
||||
foreach ($insertTables as $table) {
|
||||
$table = trim($table);
|
||||
if (empty($table)) continue;
|
||||
|
||||
$table = str_replace('`ls_', $this->name . '.`ls_', $table);
|
||||
$table = str_replace('`ls_', '`' .$this->prefix, $table);
|
||||
if ( !$this->dbh->query($table)) return false;
|
||||
}
|
||||
|
||||
// 移动图片资源
|
||||
$this->cpFiles($this->getInstallRoot().'/uploads', $this->getAppRoot().'/public/uploads');
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* 将一个文件夹下的所有文件及文件夹
|
||||
* 复制到另一个文件夹里(保持原有结构)
|
||||
*
|
||||
* @param <string> $rootFrom 源文件夹地址(最好为绝对路径)
|
||||
* @param <string> $rootTo 目的文件夹地址(最好为绝对路径)
|
||||
*/
|
||||
function cpFiles($rootFrom, $rootTo){
|
||||
|
||||
$handle = opendir($rootFrom);
|
||||
while (false !== ($file = readdir($handle))) {
|
||||
//DIRECTORY_SEPARATOR 为系统的文件夹名称的分隔符 例如:windos为'/'; linux为'/'
|
||||
$fileFrom = $rootFrom . DIRECTORY_SEPARATOR . $file;
|
||||
$fileTo = $rootTo . DIRECTORY_SEPARATOR . $file;
|
||||
if ($file == '.' || $file == '..') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (is_dir($fileFrom)) {
|
||||
if (!is_dir($fileTo)) { //目标目录不存在则创建
|
||||
mkdir($fileTo, 0777);
|
||||
}
|
||||
$this->cpFiles($fileFrom, $fileTo);
|
||||
} else {
|
||||
if (!file_exists($fileTo)) {
|
||||
@copy($fileFrom, $fileTo);
|
||||
if (strstr($fileTo, "access_token.txt")) {
|
||||
chmod($fileTo, 0777);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 当前应用程序的相对路径
|
||||
* @author luzg(2020/8/25 10:55)
|
||||
* @return string
|
||||
*/
|
||||
public function getAppRoot()
|
||||
{
|
||||
return realpath($this->getInstallRoot() . '/../../');
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 获取安装目录
|
||||
* @author luzg(2020/8/26 16:15)
|
||||
* @return string
|
||||
*/
|
||||
public function getInstallRoot()
|
||||
{
|
||||
return INSTALL_ROOT;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 目录的容量
|
||||
* @author luzg(2020/8/25 15:21)
|
||||
* @param $dir
|
||||
* @return string
|
||||
*/
|
||||
public function freeDiskSpace($dir)
|
||||
{
|
||||
// M
|
||||
$freeDiskSpace = disk_free_space(realpath(__DIR__)) / 1024 / 1024;
|
||||
|
||||
// G
|
||||
if ($freeDiskSpace > 1024) {
|
||||
return number_format($freeDiskSpace / 1024, 2) . 'G';
|
||||
}
|
||||
|
||||
return number_format($freeDiskSpace, 2) . 'M';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 获取状态标志
|
||||
* @author luzg(2020/8/25 16:10)
|
||||
* @param $statusSingle
|
||||
* @return string
|
||||
*/
|
||||
public function correctOrFail($statusSingle)
|
||||
{
|
||||
if ($statusSingle == 'ok')
|
||||
return '<td class="layui-icon green"></td>';
|
||||
$this->allowNext = false;
|
||||
return '<td class="layui-icon wrong">ဆ</td>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 是否允许下一步
|
||||
* @author luzg(2020/8/25 17:29)
|
||||
* @return bool
|
||||
*/
|
||||
public function getAllowNext()
|
||||
{
|
||||
return $this->allowNext;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查session auto start
|
||||
* @author luzg(2020/8/25 16:55)
|
||||
* @return string
|
||||
*/
|
||||
public function checkSessionAutoStart()
|
||||
{
|
||||
return $result = ini_get('session.auto_start') == '0' ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查auto tags
|
||||
* @author luzg(2020/8/25 16:55)
|
||||
* @return string
|
||||
*/
|
||||
public function checkAutoTags()
|
||||
{
|
||||
return $result = ini_get('session.auto_start') == '0' ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查目录是否可写
|
||||
* @param $dir
|
||||
* @return string
|
||||
*/
|
||||
public function checkDirWrite($dir='')
|
||||
{
|
||||
$route = $this->getAppRoot().'/'.$dir;
|
||||
return $result = is_writable($route) ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 检查目录是否可写
|
||||
* @param $dir
|
||||
* @return string
|
||||
*/
|
||||
public function checkSuperiorDirWrite($dir='')
|
||||
{
|
||||
$route = $this->getAppRoot().'/'.$dir;
|
||||
return $result = is_writable($route) ? 'ok' : 'fail';
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Notes: 初始化管理账号
|
||||
* @param $post
|
||||
* @return string
|
||||
*/
|
||||
public function initAccount($post)
|
||||
{
|
||||
$time = time();
|
||||
$salt = substr(md5($time . $post['admin_user']), 0, 4);//随机4位密码盐
|
||||
|
||||
global $uniqueSalt;
|
||||
$uniqueSalt = $salt;
|
||||
|
||||
$password = $this->createPassword($post['admin_password'], $salt);
|
||||
|
||||
$sql = "INSERT INTO `ls_admin` VALUES (1, 1, '{$post['admin_user']}', '', '{$post['admin_user']}', '{$password}', 0, 0, 0, NULL, '', 1, 0, '{$time}', '{$time}', NULL);";
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* Notes: 生成密码密文
|
||||
* @param $pwd
|
||||
* @param $salt
|
||||
* @return string
|
||||
*/
|
||||
public function createPassword($pwd, $salt)
|
||||
{
|
||||
return md5($salt . md5($pwd . $salt));
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @notes 恢复admin,mobile index文件
|
||||
* @author 段誉
|
||||
* @date 2021/9/16 15:51
|
||||
*/
|
||||
public function restoreIndexLock()
|
||||
{
|
||||
$this->checkIndexFile($this->getAppRoot().'/public/mobile');
|
||||
$this->checkIndexFile($this->getAppRoot().'/public/admin');
|
||||
}
|
||||
|
||||
public function checkIndexFile($path)
|
||||
{
|
||||
if(file_exists($path.'/index_lock.html')) {
|
||||
// 删除提示文件
|
||||
unlink($path.'/index.html');
|
||||
// 恢复原入口
|
||||
rename($path.'/index_lock.html', $path.'/index.html');
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
494
server/public/install/template/main.php
Executable file
@@ -0,0 +1,494 @@
|
||||
<?php !defined('install') && exit(); ?>
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>likeshop上门按摩安装</title>
|
||||
<link rel="stylesheet" type="text/css" href="https://www.layuicdn.com/layui/css/layui.css"/>
|
||||
<link rel="stylesheet" type="text/css" href="./css/mounted.css"/>
|
||||
<link rel="shortcut icon" href="./favicon.ico"/>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="logo" style="width: 220px;">
|
||||
<img src="./images/slogn.png?v=1"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mounted" id="mounted">
|
||||
<div class="mounted-box">
|
||||
<form method="post" action="#" name="main_form">
|
||||
<div class="mounted-title">安装步骤</div>
|
||||
<div class="mounted-container" id="tab">
|
||||
<ul class="mounted-nav" id="nav">
|
||||
<li <?php if ($step == "1") { ?>class="active"<?php } ?>>许可协议</li>
|
||||
<li <?php if ($step == "2") { ?>class="active"<?php } ?>>环境监测</li>
|
||||
<li <?php if ($step == "3") { ?>class="active"<?php } ?>>参数配置</li>
|
||||
<li <?php if ($step == "4" or $step == '5') { ?>class="active"<?php } ?>>安装</li>
|
||||
</ul>
|
||||
|
||||
<!-- 阅读许可 -->
|
||||
<?php if ($step == '1') { ?>
|
||||
<div class="mounted-content-item show">
|
||||
<div class="content-header">
|
||||
likeshop100%开源免费商用电商系统授权协议
|
||||
</div>
|
||||
<div class="content">
|
||||
<h2>版权所有(c)2019-<?=date('Y')?>,likeshop团队保留所有权利。</h2>
|
||||
<p class="mt16">
|
||||
感谢你信任并选择likeshop100%开源免费商用电商系统,likeshop100%开源免费商用电商系统由广州好象科技有限公司(www.likemarket.net)原创研发并取得软件著作权,100%开放源码,无加密,自主可控,方便二次开发。</p>
|
||||
<p class="mt6">为了正确并合法的使用本软件,请你在使用前务必阅读清楚下面的协议条款:</p>
|
||||
<h3 class="mt16">一、本授权协议适用且仅适用于likeshop系列开源软件产品(以下简称likeshop)任何版本,广州好象科技有限公司拥有本授权协议的最终解释权。</h3>
|
||||
<h3 class="mt16">二、协议许可的权利</h3>
|
||||
<p class="mt6">
|
||||
1.开源版本可以任意免费商用,可去除界面版权logo,不能去除代码版权。付费版本需要取得商业授权方可使用,否则会被视为盗版行为并承担相应法律责任。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
2.请尊重likeshop开源团队劳动成果,严禁使用本系统转手、转卖、倒卖或二次开发后转手、转卖、倒卖等商业行为。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
3.任何企业和个人不允许对likeshop程序代码以任何形式任何目的再发布。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
4.你可以在协议规定的约束和限制范围内修改likeshop系列开源软件产品或界面风格以适应你的网站要求。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
5.你拥有使用本软件构建的系统全部内容所有权,并独立承担与这些内容的相关法律义务。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
6.获得商业授权之后,你可以将本软件应用于商业用途,同时依据所购买的授权类型中确定的技术支持内容,自购买时刻起,在技术支持期限内拥有通过指定的方式获得指定范围内的技术支持服务。商业授权用户享有反映和提出意见的权力,相关意见将被作为首要考虑,但没有一定被采纳的承诺或保证。
|
||||
</p>
|
||||
<h3 class="mt6">三、协议规定的约束和限制</h3>
|
||||
<p class="mt6">
|
||||
1.开源版本可以任意免费商用,可去除界面版权logo,不能去除代码版权。付费版本需要取得商业授权方可使用,否则会被视为盗版行为并承担相应法律责任。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
2.未经官方许可,不得对本软件或与之关联的商业授权进行出租、出售、抵押或发放子许可证。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
3.未经官方许可,禁止在likeshop开源商城的整体或任何部分基础上以发展任何派生版本、修改版本或第三方版本用于重新分发。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
4.如果你未能遵守本协议的条款,你的授权将被终止,所被许可的权利将被收回,并承担相应法律责任。
|
||||
</p>
|
||||
<h3 class="mt6">四、有限担保和免责声明</h3>
|
||||
<p class="mt6">
|
||||
1.本软件及所附带的文件是作为不提供任何明确的或隐含的赔偿或担保的形式提供的。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
2.用户出于自愿而使用本软件,你必须了解使用本软件的风险,在尚未购买产品技术服务之前,我们不承诺对免费用户提供任何形式的技术支持、使用担保,也不承担任何因使用本软件而产生问题的相关责任。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
3.电子文本形式的授权协议如同双方书面签署的协议一样,具有完全的和等同的法律效力。你一旦开始确认本协议并安装本软件,即被视为完全理解并接受本协议的各项条款,在享有上述条款授予的权力的同时,受到相关的约束和限制。协议许可范围以外的行为,将直接违反本授权协议并构成侵权,我们有权随时终止授权,责令停止损害,并保留追究相关责任的权力。
|
||||
</p>
|
||||
<p class="mt6">
|
||||
4.如果本软件带有其它软件的整合API示范例子包,这些文件版权不属于本软件官方,并且这些文件是没经过授权发布的,请参考相关软件的使用许可合法的使用。
|
||||
</p>
|
||||
<br><br>
|
||||
<p class="mt6">
|
||||
likeshop开源地址:https://gitee.com/likeshop_gitee/likeshop
|
||||
</p>
|
||||
<p class="mt6">
|
||||
likeshop官方网站:https://www.likeshop.cn
|
||||
</p>
|
||||
<p class="mt6">
|
||||
likeshop知识社区:https://home.likeshop.cn
|
||||
</p>
|
||||
<p class="mt6">
|
||||
-----------------------------------------------------
|
||||
</p>
|
||||
<p class="mt6">
|
||||
电话: 400-8489-315 18925185700 钟先生
|
||||
</p>
|
||||
<p class="mt6">
|
||||
广州好象科技有限公司
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<!-- 检查信息 -->
|
||||
<?php if ($step == '2') { ?>
|
||||
<div class="mounted-content-item show">
|
||||
<div class="mounted-env-container">
|
||||
<div class="mounted-item">
|
||||
<div class="content-header">
|
||||
服务器信息
|
||||
</div>
|
||||
<div class="content-table">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<colgroup>
|
||||
<col width="210">
|
||||
<col width="730">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>参数</th>
|
||||
<th>值</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>服务器操作系统</td>
|
||||
<td><?php echo PHP_OS ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>web服务器环境</td>
|
||||
<td><?php echo $_SERVER['SERVER_SOFTWARE']; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>PHP版本</td>
|
||||
<td><?php echo @phpversion(); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>程序安装目录</td>
|
||||
<td><?php echo realpath(__DIR__ . '../../../'); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>磁盘空间</td>
|
||||
<td><?php echo $modelInstall->freeDiskSpace(realpath(__DIR__ . '../../../')) ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>上传限制</td>
|
||||
<?php if (ini_get('file_uploads')): ?>
|
||||
<td><?php echo ini_get('upload_max_filesize'); ?></td>
|
||||
<?php else: ?>
|
||||
<td>禁止上传</td>
|
||||
<?php endif; ?>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mounted-tips mt16">PHP环境要求必须满足下列所有条件,否则系统或系统部分功能将无法使用。</div>
|
||||
<div class="mounted-item mt16">
|
||||
<div class="content-header">
|
||||
PHP环境要求
|
||||
</div>
|
||||
<div class="content-table">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<colgroup>
|
||||
<col width="210">
|
||||
<col width="210">
|
||||
<col width="120">
|
||||
<col width="400">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>选项</th>
|
||||
<th>要求</th>
|
||||
<th>状态</th>
|
||||
<th>说明及帮助</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>PHP版本</td>
|
||||
<td>大于8.0</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkPHP()) ?>
|
||||
<td>建议使用PHP8.0.8版本</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>PDO_MYSQL</td>
|
||||
<td>支持 (强烈建议支持)</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkPDOMySQL()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>allow_url_fopen</td>
|
||||
<td>支持 (建议支持cURL)</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkCurl()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GD2</td>
|
||||
<td>支持</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkGd2()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>DOM</td>
|
||||
<td>支持</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDom()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>fileinfo</td>
|
||||
<td>支持</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkFileInfo()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>session.auto_start</td>
|
||||
<td>关闭</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkSessionAutoStart()) ?>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mounted-tips mt16">
|
||||
系统要求likeshop开源商城安装目录下的runtime和upload必须可写,才能使用likeshop开源商城的所有功能。
|
||||
</div>
|
||||
<div class="mounted-item mt16">
|
||||
<div class="content-header">
|
||||
目录权限监测
|
||||
</div>
|
||||
<div class="content-table">
|
||||
<table class="layui-table" lay-skin="line">
|
||||
<colgroup>
|
||||
<col width="210">
|
||||
<col width="210">
|
||||
<col width="120">
|
||||
<col width="400">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>目录</th>
|
||||
<th>要求</th>
|
||||
<th>状态</th>
|
||||
<th>说明及帮助</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>/server/runtime</td>
|
||||
<td>runtime目录可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('runtime')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('runtime') =='fail') echo'请给runtime目录权限,若目录不存在先新建';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>/server/public/uploads</td>
|
||||
<td>uploads目录可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('public/uploads')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('public/uploads')=='fail') echo'请给public/uploads目录权限,若目录不存在先新建';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>/server/public/admin</td>
|
||||
<td>admin目录可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('public/admin')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('public/uploads')=='fail') echo'请给public/admin目录权限,若目录不存在先新建';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>/server/public/mobile</td>
|
||||
<td>mobile目录可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('public/mobile')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('public/uploads')=='fail') echo'请给public/mobile目录权限,若目录不存在先新建';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>/server/config</td>
|
||||
<td>config目录可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('config')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('config')=='fail') echo'请给config目录权限,若目录不存在先新建';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>/server/.env</td>
|
||||
<td>.env文件可写</td>
|
||||
<?php echo $modelInstall->correctOrFail($modelInstall->checkDirWrite('.env')) ?>
|
||||
<td><?php if($modelInstall->checkDirWrite('.env')=='fail') echo'请给.env文件权限,若文件不存在,注意文件名第1字符是" . "';?></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<!-- 数据库设置 -->
|
||||
<?php if ($step == '3') { ?>
|
||||
<div class="mounted-content-item show">
|
||||
<div class="mounted-item">
|
||||
<div class="content-header">
|
||||
数据库选项
|
||||
</div>
|
||||
<div class="content-form">
|
||||
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
数据库主机
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="host" value="<?= $post['host'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
端口号
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="port" value="<?= $post['port'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
数据库用户
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="user" value="<?= $post['user'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
数据库密码
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="password" value="<?= $post['password'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
数据库名称
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="name" value="<?= $post['name'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
数据表前缀
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="prefix" value="<?= $post['prefix'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mounted-item">
|
||||
<div class="content-header mt16">
|
||||
管理选项
|
||||
</div>
|
||||
<div class="content-form">
|
||||
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
管理员账号
|
||||
</div>
|
||||
<div>
|
||||
<input type="text" name="admin_user" value="<?= $post['admin_user'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
管理员密码
|
||||
</div>
|
||||
<div>
|
||||
<input type="password" name="admin_password"
|
||||
value="<?= $post['admin_password'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-item">
|
||||
<div class="form-desc">
|
||||
确认密码
|
||||
</div>
|
||||
<div>
|
||||
<input type="password" name="admin_confirm_password"
|
||||
value="<?= $post['admin_confirm_password'] ?>"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-check">
|
||||
<div class="form-desc"></div>
|
||||
<div style="display: flex;align-items: center;">
|
||||
<input type="checkbox" name="import_test_data"
|
||||
<?php if ($post['import_test_data'] == 'on'): ?>checked<?php endif; ?>
|
||||
title="导入测试数据"/>
|
||||
<div style="color: #666666;"> 导入测试数据</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-box-check">
|
||||
<div class="form-desc"></div>
|
||||
<div style="display: flex;align-items: center;">
|
||||
<input type="checkbox" name="clear_db"
|
||||
<?php if ($post['clear_db'] == 'on'): ?>checked<?php endif; ?>
|
||||
title="清空现有数据"/>
|
||||
<div style="color: #666666;"> 清空现有数据</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<!-- 安装中 -->
|
||||
<?php if ($step == '4' or $step == '5') { ?>
|
||||
<div class="mounted-content-item show">
|
||||
<?php if ($step == '4') { ?>
|
||||
<div id="mounting">
|
||||
<div class="content-header">
|
||||
正在安装中
|
||||
</div>
|
||||
<div class="mounting-container " id="install_message">
|
||||
<?php if (count($successTables) > 0): ?>
|
||||
<p style="margin-bottom: 4px;">成功创建数据库:<?= $post['name'] ?></p>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($step == '5') { ?>
|
||||
<div class="show" id="mounting-success">
|
||||
<div class="content-header">
|
||||
安装成功
|
||||
</div>
|
||||
<div class="success-content">
|
||||
<div style="width: 48px;height: 48px;">
|
||||
<img src="./images/icon_mountSuccess.png"/>
|
||||
</div>
|
||||
<div class="mt16 result">安装完成,进入管理后台</div>
|
||||
<div style="margin-top: 5px;font-size:14px;">版本号:1.3.9</div>
|
||||
<div class="tips">
|
||||
为了您站点的安全,安装完成后即可将网站根目录下的“install”文件夹删除,或者config/install.lock/目录下创建install.lock文件防止重复安装。
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<a class="btn" href="/admin" style="margin-left: 20px;">进入管理平台</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
<?php } ?>
|
||||
</div>
|
||||
</form>
|
||||
<?php if ($step == '1') { ?>
|
||||
<div class="item-btn-group show">
|
||||
<button class="accept-btn" onclick="goStep(<?php echo $nextStep ?>)">我已阅读并同意</button>
|
||||
</div>
|
||||
<?php } elseif (in_array($step, ['2', "3"])) { ?>
|
||||
<div class="item-btn-group show">
|
||||
<button class="cancel-btn" onclick="cancel()" style="padding: 7px 63px;margin-right: 16px">返回
|
||||
</button>
|
||||
<?php if ($modelInstall->getAllowNext()): ?>
|
||||
<button class="accept-btn" onclick="goStep(<?php echo $nextStep ?>)" style="padding: 7px 63px;">
|
||||
继续
|
||||
</button>
|
||||
<?php else: ?>
|
||||
<button class="accept-btn" onclick="goStep(<?php echo $step ?>)" style="padding: 7px 63px;">重新检查
|
||||
</button>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php } elseif ($step == "4") { ?>
|
||||
<div class="item-btn-group show">
|
||||
<button class="disabled-btn" disabled="disabled">
|
||||
<div class="layui-icon layui-icon-loading layui-anim layui-anim-rotate layui-anim-loop"></div>
|
||||
<div style="font-size: 14px;margin-left: 7px;">正在安装中...</div>
|
||||
</button>
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
Copyright © 2019-<?=date('Y')?> 广州好象科技有限公司 粤ICP备16101670号-2
|
||||
</footer>
|
||||
<script src="https://www.layuicdn.com/layui/layui.js"></script>
|
||||
<?php if (count($successTables) > 0): ?>
|
||||
<script>var successTables = eval(<?=json_encode($successTables) ?>); </script>
|
||||
<?php endif; ?>
|
||||
<script src="./js/mounted.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
<?php if ($message != ''): ?>
|
||||
<script>alert('<?=$message; ?>');</script>
|
||||
<?php endif; ?>
|
||||
BIN
server/public/install/uploads/images/202209211059354f2e40105.png
Executable file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
server/public/install/uploads/images/20221111/2022111111381757d688919.png
Executable file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
server/public/install/uploads/images/20221111/20221111113821b62624930.png
Executable file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
server/public/install/uploads/images/20221111/202211111138245d3912949.png
Executable file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
server/public/install/uploads/images/20221111/20221111113827104c06377.png
Executable file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
server/public/install/uploads/images/20221111/20221111113835062165043.png
Executable file
|
After Width: | Height: | Size: 5.2 KiB |
BIN
server/public/install/uploads/images/20221111/20221111113835384385623.png
Executable file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
server/public/install/uploads/images/20221111/2022111111383592b409428.png
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
server/public/install/uploads/images/20221111/20221111113835ba3860801.png
Executable file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
server/public/install/uploads/images/20221111/20221111115453e9d2c1925.png
Executable file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
server/public/install/uploads/images/20221111/202211111206478af6e3411.png
Executable file
|
After Width: | Height: | Size: 455 KiB |
BIN
server/public/install/uploads/images/20221111/202211111207140ff4e1220.png
Executable file
|
After Width: | Height: | Size: 981 KiB |
BIN
server/public/install/uploads/images/20221111/202211111928463ec215866.png
Executable file
|
After Width: | Height: | Size: 25 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181417233c01247.png
Executable file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
server/public/install/uploads/images/20221122/202211221814173d4ed9428.png
Executable file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181417443bd3720.png
Executable file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
server/public/install/uploads/images/20221122/202211221814174ebde7610.png
Executable file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181417948b84342.png
Executable file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181417ac76a8656.png
Executable file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181417bbf2f1384.png
Executable file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
server/public/install/uploads/images/20221122/20221122181503f7ccf5775.png
Executable file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
server/public/install/uploads/images/20241211/202412110933252fa428850.png
Executable file
|
After Width: | Height: | Size: 352 KiB |
BIN
server/public/install/uploads/images/20241211/202412110933389aa6e6591.png
Executable file
|
After Width: | Height: | Size: 1010 KiB |
BIN
server/public/install/uploads/images/20241211/20241211093359f61286419.png
Executable file
|
After Width: | Height: | Size: 18 KiB |
BIN
server/public/install/uploads/images/20241211/20241211093605b3dc09152.png
Executable file
|
After Width: | Height: | Size: 801 KiB |
BIN
server/public/install/uploads/images/20241211/20241211094107a42237279.png
Executable file
|
After Width: | Height: | Size: 21 KiB |
BIN
server/public/install/uploads/images/20241211/20241211094248da5399942.png
Executable file
|
After Width: | Height: | Size: 16 KiB |
BIN
server/public/install/uploads/images/20241211/202412111102291d1f87840.png
Executable file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
server/public/install/uploads/images/20241211/202412111102297180b7524.png
Executable file
|
After Width: | Height: | Size: 3.4 KiB |
BIN
server/public/install/uploads/images/20241211/20241211110229bb38b8289.png
Executable file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
server/public/install/uploads/images/20241211/20241211135331597b13478.png
Executable file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
server/public/install/uploads/images/20241211/2024121114413849ec71726.png
Executable file
|
After Width: | Height: | Size: 783 KiB |
BIN
server/public/install/uploads/images/20241211/20241211144138904d92845.png
Executable file
|
After Width: | Height: | Size: 959 KiB |
BIN
server/public/install/uploads/images/20241211/202412111441392aa107163.png
Executable file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
server/public/install/uploads/images/20241211/202412111441401adf88914.png
Executable file
|
After Width: | Height: | Size: 1.5 MiB |
BIN
server/public/install/uploads/images/20241211/202412111441403adee5647.png
Executable file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
server/public/install/uploads/images/20241211/20241211144140df2ee5748.png
Executable file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
server/public/install/uploads/images/20241211/202412111441416381f5744.png
Executable file
|
After Width: | Height: | Size: 3.5 MiB |
BIN
server/public/install/uploads/images/20241211/202412111441417131d9943.png
Executable file
|
After Width: | Height: | Size: 3.2 MiB |
BIN
server/public/install/uploads/images/20241211/20241211144141926dd8333.png
Executable file
|
After Width: | Height: | Size: 3.0 MiB |
BIN
server/public/install/uploads/images/20241211/20241211144141d80b71441.png
Executable file
|
After Width: | Height: | Size: 3.5 MiB |
BIN
server/public/install/uploads/images/20241211/2024121115085509b2b0623.png
Executable file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
server/public/install/uploads/images/20241211/20241211150855104491316.png
Executable file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
server/public/install/uploads/images/20241211/202412111508552495f3629.png
Executable file
|
After Width: | Height: | Size: 4.2 KiB |
BIN
server/public/install/uploads/images/20241211/202412111508552bbe41368.png
Executable file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
server/public/install/uploads/images/20241211/2024121115085535dc68404.png
Executable file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
server/public/install/uploads/images/20241211/202412111508553bc869089.png
Executable file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
server/public/install/uploads/images/20241211/2024121115085566d6d8478.png
Executable file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
server/public/install/uploads/images/20241211/20241211150855c3d126892.png
Executable file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
server/public/install/uploads/images/20241211/20241211150855d362c7418.png
Executable file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
server/public/install/uploads/images/20241211/20241211150855f9e5a0683.png
Executable file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
server/public/install/uploads/images/20241211/20241211152101dedc88250.png
Executable file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
server/public/install/uploads/images/20241211/202412111521554e7060994.jpg
Executable file
|
After Width: | Height: | Size: 88 KiB |
BIN
server/public/install/uploads/images/20241211/2024121115215554a7e6476.jpg
Executable file
|
After Width: | Height: | Size: 141 KiB |
BIN
server/public/install/uploads/images/20241211/20241211152155e6fc81415.jpg
Executable file
|
After Width: | Height: | Size: 76 KiB |
BIN
server/public/install/uploads/images/20241211/202412111522329b8871932.png
Executable file
|
After Width: | Height: | Size: 347 KiB |
BIN
server/public/install/uploads/images/20241211/202412111525424bd021101.png
Executable file
|
After Width: | Height: | Size: 270 KiB |
BIN
server/public/install/uploads/images/20241211/202412111539082eedf5801.png
Executable file
|
After Width: | Height: | Size: 2.9 MiB |
BIN
server/public/install/uploads/images/20241211/20241211153908fb5313321.png
Executable file
|
After Width: | Height: | Size: 1.9 MiB |
BIN
server/public/install/uploads/images/20241211/20241211155455a0f430701.png
Executable file
|
After Width: | Height: | Size: 125 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160041221341486.png
Executable file
|
After Width: | Height: | Size: 966 B |
BIN
server/public/install/uploads/images/20241211/202412111600415de851465.png
Executable file
|
After Width: | Height: | Size: 649 B |
BIN
server/public/install/uploads/images/20241211/202412111600415dec85160.png
Executable file
|
After Width: | Height: | Size: 1006 B |
BIN
server/public/install/uploads/images/20241211/20241211160041655c47268.png
Executable file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
server/public/install/uploads/images/20241211/2024121116004168b001822.png
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160041827535578.png
Executable file
|
After Width: | Height: | Size: 1009 B |
BIN
server/public/install/uploads/images/20241211/202412111600418b9587648.png
Executable file
|
After Width: | Height: | Size: 865 B |
BIN
server/public/install/uploads/images/20241211/20241211160041a55f67457.png
Executable file
|
After Width: | Height: | Size: 630 B |
BIN
server/public/install/uploads/images/20241211/20241211160041bea0a7596.png
Executable file
|
After Width: | Height: | Size: 824 B |
BIN
server/public/install/uploads/images/20241211/20241211160041cf7fe9338.png
Executable file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160407449823548.png
Executable file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160407628d50543.png
Executable file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
server/public/install/uploads/images/20241211/2024121116040771a795039.png
Executable file
|
After Width: | Height: | Size: 3.6 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160407f843e3143.png
Executable file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
server/public/install/uploads/images/20241211/20241211160407fd7475546.png
Executable file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
server/public/install/uploads/images/20241211/202412111609018d0309909.png
Executable file
|
After Width: | Height: | Size: 416 KiB |