mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-03-23 14:02:56 +00:00
16892 lines
3.5 MiB
16892 lines
3.5 MiB
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\controller;
|
||
|
||
use app\Request;
|
||
use app\services\activity\coupon\StoreCouponIssueServices;
|
||
use app\services\activity\coupon\StoreCouponProductServices;
|
||
use app\services\order\StoreOrderCartInfoServices;
|
||
use app\services\order\StoreOrderCreateServices;
|
||
use app\services\order\StoreOrderRefundServices;
|
||
use app\services\order\StoreOrderServices;
|
||
use app\services\system\UpgradeServices;
|
||
use app\services\user\UserBillServices;
|
||
use app\services\user\UserBrokerageServices;
|
||
use app\services\user\UserMoneyServices;
|
||
use app\services\user\UserBrokerageFrozenServices;
|
||
use think\facade\Db;
|
||
use think\facade\Env;
|
||
|
||
|
||
class UpgradeController
|
||
{
|
||
/**
|
||
* @var UpgradeServices
|
||
*/
|
||
private $services;
|
||
|
||
/**
|
||
* UpgradeController constructor.
|
||
* @param UpgradeServices $services
|
||
*/
|
||
public function __construct(UpgradeServices $services)
|
||
{
|
||
$this->services = $services;
|
||
}
|
||
|
||
/**
|
||
* 升级程序页面
|
||
* @param Request $request
|
||
* @return \think\response\View
|
||
*/
|
||
public function index(Request $request)
|
||
{
|
||
$data = $this->upData();
|
||
$Title = "CRMEB升级程序";
|
||
$Powered = "Powered by CRMEB";
|
||
|
||
//获取当前版本号
|
||
$version_now = $this->getversion('.version')['version'];
|
||
$version_new = $data['new_version'];
|
||
$isUpgrade = true;
|
||
$executeIng = false;
|
||
|
||
return view('/upgrade/step1', [
|
||
'title' => $Title,
|
||
'powered' => $Powered,
|
||
'version_now' => $version_now,
|
||
'version_new' => $version_new,
|
||
'isUpgrade' => json_encode($isUpgrade),
|
||
'executeIng' => json_encode($executeIng),
|
||
'next' => 1,
|
||
'action' => 'upgrade'
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* 获取当前版本号
|
||
* @return array
|
||
*/
|
||
public function getversion($str)
|
||
{
|
||
$version_arr = [];
|
||
$curent_version = @file(app()->getRootPath() . $str);
|
||
|
||
foreach ($curent_version as $val) {
|
||
list($k, $v) = explode('=', $val);
|
||
$version_arr[$k] = $v;
|
||
}
|
||
return $version_arr;
|
||
}
|
||
|
||
/**
|
||
* 写入升级过程
|
||
* @param string $field
|
||
* @param int $n
|
||
* @return bool
|
||
*/
|
||
public function setIsUpgrade(string $field, int $n = 0)
|
||
{
|
||
$upgrade = parse_ini_file(public_path('upgrade') . '.upgrade');
|
||
if ($n) {
|
||
if (!is_array($upgrade)) {
|
||
$upgrade = [];
|
||
}
|
||
$string = '';
|
||
foreach ($upgrade as $key => $item) {
|
||
$string .= $key . '=' . $item . "\r\n";
|
||
}
|
||
$string .= $field . '=' . $n . "\r\n";
|
||
file_put_contents(public_path('upgrade') . '.upgrade', $string);
|
||
return true;
|
||
} else {
|
||
if (!is_array($upgrade)) {
|
||
return false;
|
||
}
|
||
return isset($upgrade[$field]);
|
||
}
|
||
}
|
||
|
||
public function upgrade(Request $request)
|
||
{
|
||
list($sleep, $page, $prefix) = $request->getMore([
|
||
['sleep', 0],
|
||
['page', 1],
|
||
['prefix', 'eb_'],
|
||
], true);
|
||
$data = $this->upData();
|
||
$code_now = $this->getversion('.version')['version_code'];
|
||
if ($data['new_code'] == $code_now) {
|
||
return app('json')->success(['sleep' => -1]);
|
||
}
|
||
$sql_arr = [];
|
||
foreach ($data['update_sql'] as $items) {
|
||
if ($items['code'] > $code_now) {
|
||
$sql_arr[] = $items;
|
||
}
|
||
}
|
||
//sql 执行完成,开始执行修改数据
|
||
if (!isset($sql_arr[$sleep])) {
|
||
// $limit = 100;
|
||
// if (!$this->setIsUpgrade('money')) {
|
||
// $res = $this->handleMoney((int)$sleep, (int)$page, (int)$limit);
|
||
// return app('json')->success($res);
|
||
// } elseif (!$this->setIsUpgrade('brokerage')) {
|
||
// $res = $this->handleBrokerage((int)$sleep, (int)$page, (int)$limit);
|
||
// return app('json')->success($res);
|
||
// } elseif (!$this->setIsUpgrade('orderRefund')) {
|
||
// $res = $this->handleOrderRefund((int)$sleep, (int)$page, (int)$limit);
|
||
// return app('json')->success($res);
|
||
// } else {
|
||
// file_put_contents(app()->getRootPath() . '.version', "version=" . $data['new_version'] . "\nversion_code=" . $data['new_code']);
|
||
// return app('json')->success(['sleep' => -1]);
|
||
// }
|
||
// $limit = 100;
|
||
// if (!$this->setIsUpgrade('cartInfo')) {
|
||
// $res = $this->handleCartInfo((int)$sleep, (int)$page, (int)$limit);
|
||
// return app('json')->success($res);
|
||
// } else {
|
||
// file_put_contents(app()->getRootPath() . '.version', "version=" . $data['new_version'] . "\nversion_code=" . $data['new_code'] . "\napp_id=ze7x9rxsv09l6pvsyo" . "\napp_key=fuF7U9zaybLa5gageVQzxtxQMFnvU2OI");
|
||
// $this->services->generateSignature();
|
||
// return app('json')->success(['sleep' => -1]);
|
||
// }
|
||
// $limit = 100;
|
||
// if (!$this->setIsUpgrade('coupon')) {
|
||
// $res = $this->handleCoupon((int)$sleep, (int)$page, (int)$limit);
|
||
// return app('json')->success($res);
|
||
// } else {
|
||
// $this->setEnv();
|
||
// file_put_contents(app()->getRootPath() . '.version', "version=" . $data['new_version'] . "\nversion_code=" . $data['new_code'] . "\nplatform=CRMEB\napp_id=ze7x9rxsv09l6pvsyo" . "\napp_key=fuF7U9zaybLa5gageVQzxtxQMFnvU2OI");
|
||
// $this->services->generateSignature();
|
||
// return app('json')->success(['sleep' => -1]);
|
||
// }
|
||
file_put_contents(app()->getRootPath() . '.version', "version=" . $data['new_version'] . "\nversion_code=" . $data['new_code'] . "\nplatform=CRMEB\napp_id=ze7x9rxsv09l6pvsyo" . "\napp_key=fuF7U9zaybLa5gageVQzxtxQMFnvU2OI");
|
||
$this->services->generateSignature();
|
||
return app('json')->success(['sleep' => -1]);
|
||
}
|
||
$sql = $sql_arr[$sleep];
|
||
Db::startTrans();
|
||
try {
|
||
if ($sql['type'] == 1) {
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$table = $prefix . $sql['table'];
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (!empty(Db::query($findSql))) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表已存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表添加成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
} elseif ($sql['type'] == 2) {
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$table = $prefix . $sql['table'];
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (empty(Db::query($findSql))) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表删除成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
} elseif ($sql['type'] == 3) {
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$table = $prefix . $sql['table'];
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (!empty(Db::query($findSql))) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '已存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '字段添加成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
} elseif ($sql['type'] == 4) {
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$table = $prefix . $sql['table'];
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (empty(Db::query($findSql))) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '字段修改成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
} elseif ($sql['type'] == 5) {
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$table = $prefix . $sql['table'];
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (empty(Db::query($findSql))) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中' . $sql['field'] . '字段删除成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
} elseif ($sql['type'] == 6) {
|
||
$table = $prefix . $sql['table'] ?? '';
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (!empty(Db::query($findSql))) {
|
||
$item['table'] = $prefix . $sql['table'];
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中此数据已存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
if (isset($sql['whereSql']) && $sql['whereSql']) {
|
||
$whereTable = $prefix . $sql['whereTable'] ?? '';
|
||
$whereSql = str_replace('@whereTable', $whereTable, $sql['whereSql']);
|
||
$tabId = Db::query($whereSql)[0]['tabId'] ?? 0;
|
||
if (!$tabId) {
|
||
$item['table'] = $whereTable;
|
||
$item['status'] = 1;
|
||
$item['error'] = '查询父类ID不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
$upSql = str_replace('@tabId', $tabId, $upSql);
|
||
}
|
||
if (Db::execute($upSql)) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = '数据添加成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
} elseif ($sql['type'] == 7) {
|
||
$table = $prefix . $sql['table'] ?? '';
|
||
if (isset($sql['findSql']) && $sql['findSql']) {
|
||
$findSql = str_replace('@table', $table, $sql['findSql']);
|
||
if (empty(Db::query($findSql))) {
|
||
$item['table'] = $prefix . $sql['table'];
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . '表中此数据不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
if (isset($sql['whereSql']) && $sql['whereSql']) {
|
||
$whereTable = $prefix . $sql['whereTable'] ?? '';
|
||
$whereSql = str_replace('@whereTable', $whereTable, $sql['whereSql']);
|
||
$tabId = Db::query($whereSql)[0]['tabId'] ?? 0;
|
||
if (!$tabId) {
|
||
$item['table'] = $whereTable;
|
||
$item['status'] = 1;
|
||
$item['error'] = '查询父类ID不存在';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
$upSql = str_replace('@tabId', $tabId, $upSql);
|
||
}
|
||
if (Db::execute($upSql)) {
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = '数据修改成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
} elseif ($sql['type'] == 8) {
|
||
|
||
} elseif ($sql['type'] == -1) {
|
||
$table = $prefix . $sql['table'];
|
||
if (isset($sql['sql']) && $sql['sql']) {
|
||
$upSql = $sql['sql'];
|
||
$upSql = str_replace('@table', $table, $upSql);
|
||
if (isset($sql['new_table']) && $sql['new_table']) {
|
||
$new_table = $prefix . $sql['new_table'];
|
||
$upSql = str_replace('@new_table', $new_table, $upSql);
|
||
}
|
||
Db::execute($upSql);
|
||
$item['table'] = $table;
|
||
$item['status'] = 1;
|
||
$item['error'] = $table . ' sql执行成功';
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
Db::commit();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
} catch (\Throwable $e) {
|
||
$item['table'] = $prefix . $sql['table'];
|
||
$item['status'] = 0;
|
||
$item['sleep'] = $sleep + 1;
|
||
$item['add_time'] = date('Y-m-d H:i:s', time());
|
||
$item['error'] = $e->getMessage();
|
||
Db::rollBack();
|
||
return app('json')->success($item);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 重写.env文件
|
||
* @author 吴汐
|
||
* @email 442384644@qq.com
|
||
* @date 2023/03/04
|
||
*/
|
||
public function setEnv()
|
||
{
|
||
$unique = uniqid();
|
||
//读取配置文件,并替换真实配置数据1
|
||
$strConfig = file_get_contents(root_path() . 'public/install/.env');
|
||
$strConfig = str_replace('#DB_HOST#', Env::get('DATABASE.HOSTNAME', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_NAME#', Env::get('DATABASE.DATABASE', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_USER#', Env::get('DATABASE.USERNAME', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_PWD#', Env::get('DATABASE.PASSWORD', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_PORT#', Env::get('DATABASE.HOSTPORT', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_PREFIX#', Env::get('DATABASE.PREFIX', ''), $strConfig);
|
||
$strConfig = str_replace('#DB_CHARSET#', 'utf8', $strConfig);
|
||
$strConfig = str_replace('#CACHE_TYPE#', 'redis', $strConfig);
|
||
$strConfig = str_replace('#CACHE_PREFIX#', 'cache_' . $unique . ':', $strConfig);
|
||
$strConfig = str_replace('#CACHE_TAG_PREFIX#', 'cache_tag_' . $unique . ':', $strConfig);
|
||
$strConfig = str_replace('#RB_HOST#', Env::get('REDIS.REDIS_HOSTNAME', ''), $strConfig);
|
||
$strConfig = str_replace('#RB_PORT#', Env::get('REDIS.PORT', ''), $strConfig);
|
||
$strConfig = str_replace('#RB_PWD#', Env::get('REDIS.REDIS_PASSWORD', ''), $strConfig);
|
||
$strConfig = str_replace('#RB_SELECT#', Env::get('REDIS.SELECT', ''), $strConfig);
|
||
$strConfig = str_replace('#QUEUE_NAME#', $unique, $strConfig);
|
||
@chmod(root_path() . '/.env', 0777); //数据库配置文件的地址
|
||
@file_put_contents(root_path() . '/.env', $strConfig); //数据库配置文件的地址
|
||
}
|
||
|
||
/**
|
||
* 更新分类券
|
||
* @param int $sleep
|
||
* @param int $page
|
||
* @param int $limit
|
||
* @return array
|
||
* @author 吴汐
|
||
* @email 442384644@qq.com
|
||
* @date 2023/03/04
|
||
*/
|
||
public function handleCoupon(int $sleep = 1, int $page = 1, int $limit = 100)
|
||
{
|
||
$list = app()->make(StoreCouponIssueServices::class)->selectList([['category_id', '>', 0]], 'id,category_id', $page, $limit)->toArray();
|
||
if (count($list)) {
|
||
$allData = [];
|
||
foreach ($list as $item) {
|
||
$data = [
|
||
'coupon_id' => $item['id'],
|
||
'product_id' => 0,
|
||
'category_id' => $item['category_id']
|
||
];
|
||
$allData[] = $data;
|
||
}
|
||
if ($allData) {
|
||
app()->make(StoreCouponProductServices::class)->saveAll($allData);
|
||
}
|
||
$info['table'] = 'store_coupon_product';
|
||
$info['status'] = 1;
|
||
$info['error'] = '分类券数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = $page + 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
} else {
|
||
$this->setIsUpgrade('coupon', 1);
|
||
$info['table'] = 'store_coupon_product';
|
||
$info['status'] = 1;
|
||
$info['error'] = '分类券数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 处理历史余额数据
|
||
* @param int $sleep
|
||
* @param int $page
|
||
* @param int $limit
|
||
* @return mixed
|
||
*/
|
||
public function handleMoney(int $sleep = 1, int $page = 1, int $limit = 100)
|
||
{
|
||
/** @var UserBillServices $userBillServics */
|
||
$userBillServics = app()->make(UserBillServices::class);
|
||
$where = ['category' => 'now_money', 'type' => ['pay_product', 'pay_product_refund', 'system_add', 'system_sub', 'recharge', 'lottery_use', 'lottery_add']];
|
||
$list = $userBillServics->getList($where, '*', $page, $limit, [], 'id asc');
|
||
if ($list) {
|
||
$allData = $data = [];
|
||
foreach ($list as $item) {
|
||
$data = [
|
||
'uid' => $item['uid'],
|
||
'link_id' => $item['link_id'],
|
||
'pm' => $item['pm'],
|
||
'title' => $item['title'],
|
||
'type' => $item['type'],
|
||
'number' => $item['number'],
|
||
'balance' => $item['balance'],
|
||
'mark' => $item['mark'],
|
||
'add_time' => strtotime($item['add_time']),
|
||
];
|
||
$allData[] = $data;
|
||
}
|
||
if ($allData) {
|
||
/** @var UserMoneyServices $userMoneyServices */
|
||
$userMoneyServices = app()->make(UserMoneyServices::class);
|
||
$userMoneyServices->saveAll($allData);
|
||
}
|
||
$info['table'] = 'user_money';
|
||
$info['status'] = 1;
|
||
$info['error'] = '余额数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = $page + 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
} else {
|
||
$this->setIsUpgrade('money', 1);
|
||
$info['table'] = 'user_money';
|
||
$info['status'] = 1;
|
||
$info['error'] = '余额数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 处理历史佣金数据
|
||
* @param int $sleep
|
||
* @param int $page
|
||
* @param int $limit
|
||
* @return mixed
|
||
*/
|
||
public function handleBrokerage(int $sleep = 1, int $page = 1, int $limit = 100)
|
||
{
|
||
/** @var UserBillServices $userBillServics */
|
||
$userBillServics = app()->make(UserBillServices::class);
|
||
$where = ['category' => ['', 'now_money'], 'type' => ['brokerage', 'brokerage_user', 'extract', 'refund', 'extract_fail']];
|
||
$list = $userBillServics->getList($where, '*', $page, $limit, [], 'id asc');
|
||
if ($list) {
|
||
$allData = $data = [];
|
||
/** @var $brokerageFrozenServices */
|
||
$brokerageFrozenServices = app()->make(UserBrokerageFrozenServices::class);
|
||
$frozenList = $brokerageFrozenServices->getColumn([['uill_id', 'in', array_column($list, 'id')], ['frozen_time', '>', time()]], 'uill_id,frozen_time', 'uill_id');
|
||
foreach ($list as $item) {
|
||
if (in_array($item['type'], ['brokerage_user', 'extract', 'refund', 'extract_fail'])) {
|
||
$type = $item['type'];
|
||
} else {
|
||
if (strpos($item['mark'], '二级')) {
|
||
$type = 'two_brokerage';
|
||
} else {
|
||
$type = 'one_brokerage';
|
||
}
|
||
}
|
||
$data = [
|
||
'uid' => $item['uid'],
|
||
'link_id' => $item['link_id'],
|
||
'pm' => $item['pm'],
|
||
'title' => $item['title'],
|
||
'type' => $type,
|
||
'number' => $item['number'],
|
||
'balance' => $item['balance'],
|
||
'mark' => $item['mark'],
|
||
'frozen_time' => $frozenList[$item['id']]['frozen_time'] ?? 0,
|
||
'add_time' => strtotime($item['add_time']),
|
||
];
|
||
$allData[] = $data;
|
||
}
|
||
if ($allData) {
|
||
/** @var UserBrokerageServices $userBrokerageServices */
|
||
$userBrokerageServices = app()->make(UserBrokerageServices::class);
|
||
$userBrokerageServices->saveAll($allData);
|
||
}
|
||
$info['table'] = 'user_brokerage';
|
||
$info['status'] = 1;
|
||
$info['error'] = '佣金数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = $page + 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
} else {
|
||
$this->setIsUpgrade('brokerage', 1);
|
||
$info['table'] = 'user_brokerage';
|
||
$info['status'] = 1;
|
||
$info['error'] = '佣金数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 处理历史退款数据
|
||
* @param int $sleep
|
||
* @param int $page
|
||
* @param int $limit
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function handleOrderRefund(int $sleep = 1, int $page = 1, int $limit = 100)
|
||
{
|
||
/** @var StoreOrderServices $storeOrderServices */
|
||
$storeOrderServices = app()->make(StoreOrderServices::class);
|
||
$list = $storeOrderServices->getSplitOrderList(['refund_status' => [1, 2], ['refund_type' => [1, 2, 4, 5, 6]]], ['*'], [], $page, $limit, 'id asc');
|
||
$allData = $refundOrderData = [];
|
||
if ($list) {
|
||
/** @var StoreOrderCreateServices $storeOrderCreateServices */
|
||
$storeOrderCreateServices = app()->make(StoreOrderCreateServices::class);
|
||
/** @var StoreOrderCartInfoServices $storeOrderCartInfoServices */
|
||
$storeOrderCartInfoServices = app()->make(StoreOrderCartInfoServices::class);
|
||
$time = time();
|
||
foreach ($list as $order) {
|
||
//生成退款订单
|
||
$refundOrderData['uid'] = $order['uid'];
|
||
$refundOrderData['store_id'] = $order['store_id'];
|
||
$refundOrderData['store_order_id'] = $order['id'];
|
||
$refundOrderData['order_id'] = $storeOrderCreateServices->getNewOrderId('');
|
||
$refundOrderData['refund_num'] = $order['total_num'];
|
||
$refundOrderData['refund_type'] = $order['refund_type'];
|
||
$refundOrderData['refund_price'] = $order['pay_price'];
|
||
$refundOrderData['refunded_price'] = 0;
|
||
$refundOrderData['refund_explain'] = $order['refund_reason_wap_explain'];
|
||
$refundOrderData['refund_img'] = $order['refund_reason_wap_img'];
|
||
$refundOrderData['refund_reason'] = $order['refund_reason_wap'];
|
||
$refundOrderData['refund_express'] = $order['refund_express'];
|
||
$refundOrderData['refunded_time'] = $order['refund_type'] == 6 ? $order['refund_reason_time'] : 0;
|
||
$refundOrderData['add_time'] = $order['refund_reason_time'];
|
||
$cartInfos = $storeOrderCartInfoServices->getCartColunm(['oid' => $order['id']], 'id,cart_id,cart_num,cart_info');
|
||
foreach ($cartInfos as &$cartInfo) {
|
||
$cartInfo['cart_info'] = is_string($cartInfo['cart_info']) ? json_decode($cartInfo['cart_info'], true) : $cartInfo['cart_info'];
|
||
}
|
||
$refundOrderData['cart_info'] = json_encode(array_column($cartInfos, 'cart_info'));
|
||
$allData[] = $refundOrderData;
|
||
}
|
||
if ($allData) {
|
||
/** @var StoreOrderRefundServices $storeOrderRefundServices */
|
||
$storeOrderRefundServices = app()->make(StoreOrderRefundServices::class);
|
||
$storeOrderRefundServices->saveAll($allData);
|
||
}
|
||
$info['table'] = 'store_order_refund';
|
||
$info['status'] = 1;
|
||
$info['error'] = '退款数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = $page + 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
} else {
|
||
$this->setIsUpgrade('orderRefund', 1);
|
||
$info['table'] = 'store_order_refund';
|
||
$info['status'] = 1;
|
||
$info['error'] = '退款数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = 1;
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 更新订单商品表
|
||
* @param int $sleep
|
||
* @param int $page
|
||
* @param int $limit
|
||
* @return array
|
||
*/
|
||
public function handleCartInfo(int $sleep = 1, int $page = 1, int $limit = 100)
|
||
{
|
||
/** @var StoreOrderCartInfoServices $storeOrderCartInfoServices */
|
||
$storeOrderCartInfoServices = app()->make(StoreOrderCartInfoServices::class);
|
||
$list = $storeOrderCartInfoServices->selectList(['uid' => 0], 'id,oid', $page, $limit)->toArray();
|
||
$allData = $cartData = [];
|
||
if ($list) {
|
||
/** @var StoreOrderServices $storeOrderServices */
|
||
$storeOrderServices = app()->make(StoreOrderServices::class);
|
||
$uids = $storeOrderServices->getColumn([['id', 'in', array_column($list, 'oid')]], 'uid', 'id');
|
||
foreach ($list as $cart) {
|
||
$cartData['id'] = $cart['id'];
|
||
$cartData['uid'] = $uids[$cart['oid']] ?? 0;
|
||
$allData[] = $cartData;
|
||
}
|
||
if ($allData) {
|
||
$storeOrderCartInfoServices->saveAll($allData);
|
||
}
|
||
$info['table'] = 'store_order_cart_info';
|
||
$info['status'] = 1;
|
||
$info['error'] = '订单商品数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = $page + 1;
|
||
} else {
|
||
$this->setIsUpgrade('cartInfo', 1);
|
||
$info['table'] = 'store_order_cart_info';
|
||
$info['status'] = 1;
|
||
$info['error'] = '订单商品数据更新成功';
|
||
$info['sleep'] = $sleep + 1;
|
||
$info['page'] = 1;
|
||
}
|
||
$info['add_time'] = date('Y-m-d H:i:s', time());
|
||
return $info;
|
||
}
|
||
|
||
|
||
/**
|
||
* 升级数据
|
||
* @return mixed
|
||
*/
|
||
public function upData()
|
||
{
|
||
$data['new_version'] = 'CRMEB-BZ v5.0.0';
|
||
$data['new_code'] = 500;
|
||
$data['update_sql'] = [
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "lang_code",
|
||
'sql' => <<<SQL
|
||
INSERT INTO `@table` (`id`, `type_id`, `code`, `remarks`, `lang_explain`, `is_admin`) VALUES
|
||
(25001, 1, '500031', '接口名不能为空', '接口名不能为空', 1),
|
||
(25002, 2, '500031', '接口名不能为空', 'Interface name cannot be empty', 1),
|
||
(25003, 3, '500031', '接口名不能为空', '接口名不能爲空', 1),
|
||
(25004, 4, '500031', '接口名不能为空', 'Le nom de linterface ne peut pas être vide', 1),
|
||
(25005, 5, '500031', '接口名不能为空', 'Il nome dellinterfaccia non può essere vuoto', 1),
|
||
(25006, 6, '500031', '接口名不能为空', 'インターフェイス名を空にすることはできません', 1),
|
||
(25007, 7, '500031', '接口名不能为空', '인터페이스 이름은 비워 둘 수 없습니다', 1),
|
||
(25008, 8, '500031', '接口名不能为空', 'Интерфэйсийн нэр хоосон байж чадахгүй', 1),
|
||
(25009, 9, '500031', '接口名不能为空', 'ชื่ออินเทอร์เฟซต้องไม่ว่างเปล่า', 1),
|
||
(25010, 10, '500031', '接口名不能为空', 'Tên giao diện không thể trống', 1),
|
||
(25011, 1, '500032', '接口地址不能为空', '接口地址不能为空', 1),
|
||
(25012, 2, '500032', '接口地址不能为空', 'Interface address cannot be empty', 1),
|
||
(25013, 3, '500032', '接口地址不能为空', '接口地址不能爲空', 1),
|
||
(25014, 4, '500032', '接口地址不能为空', 'Ladresse de linterface ne peut pas être vide', 1),
|
||
(25015, 5, '500032', '接口地址不能为空', 'Lindirizzo dellinterfaccia non può essere vuoto', 1),
|
||
(25016, 6, '500032', '接口地址不能为空', 'インターフェイスアドレスを空にすることはできません', 1),
|
||
(25017, 7, '500032', '接口地址不能为空', '인터페이스 주소는 비워 둘 수 없습니다', 1),
|
||
(25018, 8, '500032', '接口地址不能为空', 'Интерфэйс хаяг хоосон байж болохгүй', 1),
|
||
(25019, 9, '500032', '接口地址不能为空', 'ที่อยู่อินเทอร์เฟซไม่สามารถว่างได้', 1),
|
||
(25020, 10, '500032', '接口地址不能为空', 'Địa chỉ giao diện không thể trống', 1),
|
||
(25021, 1, '500033', '请求方式不能为空', '请求方式不能为空', 1),
|
||
(25022, 2, '500033', '请求方式不能为空', 'Request method cannot be empty', 1),
|
||
(25023, 3, '500033', '请求方式不能为空', '請求方式不能爲空', 1),
|
||
(25024, 4, '500033', '请求方式不能为空', 'La méthode de requête ne peut pas être vide', 1),
|
||
(25025, 5, '500033', '请求方式不能为空', 'Il metodo di richiesta non può essere vuoto', 1),
|
||
(25026, 6, '500033', '请求方式不能为空', '要求方法は空ではありません', 1),
|
||
(25027, 7, '500033', '请求方式不能为空', '요청 방법은 비워 둘 수 없습니다', 1),
|
||
(25028, 8, '500033', '请求方式不能为空', 'Хүсэлтийн арга нь хоосон байж чадахгүй', 1),
|
||
(25029, 9, '500033', '请求方式不能为空', 'วิธีการร้องขอไม่สามารถว่างเปล่าได้', 1),
|
||
(25030, 10, '500033', '请求方式不能为空', 'Phương thức yêu cầu không thể trống', 1),
|
||
(25031, 1, '500034', '模块分类不能为空', '模块分类不能为空', 1),
|
||
(25032, 2, '500034', '模块分类不能为空', 'Module category cannot be empty', 1),
|
||
(25033, 3, '500034', '模块分类不能为空', '模塊分類不能爲空', 1),
|
||
(25034, 4, '500034', '模块分类不能为空', 'La catégorie de module ne peut pas être vide', 1),
|
||
(25035, 5, '500034', '模块分类不能为空', 'La categoria del modulo non può essere vuota', 1),
|
||
(25036, 6, '500034', '模块分类不能为空', 'モジュールの分類は空にできません', 1),
|
||
(25037, 7, '500034', '模块分类不能为空', '모듈 카테고리를 비울 수 없습니다', 1),
|
||
(25038, 8, '500034', '模块分类不能为空', 'Модулийн ангилал хоосон байж болохгүй', 1),
|
||
(25039, 9, '500034', '模块分类不能为空', 'การจำแนกประเภทโมดูลต้องไม่ว่างเปล่า', 1),
|
||
(25040, 10, '500034', '模块分类不能为空', 'Phân loại mô-đun không thể trống', 1),
|
||
(25041, 1, '500035', '接口不存在', '接口不存在', 1),
|
||
(25042, 2, '500035', '接口不存在', 'Interface does not exist', 1),
|
||
(25043, 3, '500035', '接口不存在', '接口不存在', 1),
|
||
(25044, 4, '500035', '接口不存在', 'Linterface nexiste pas', 1),
|
||
(25045, 5, '500035', '接口不存在', 'Linterfaccia non esiste', 1),
|
||
(25046, 6, '500035', '接口不存在', 'インターフェイスが存在しません', 1),
|
||
(25047, 7, '500035', '接口不存在', '인터페이스가 존재하지 않습니다', 1),
|
||
(25048, 8, '500035', '接口不存在', 'Интерфэйс байхгүй', 1),
|
||
(25049, 9, '500035', '接口不存在', 'ไม่มีอินเทอร์เฟซ', 1),
|
||
(25050, 10, '500035', '接口不存在', 'Giao diện không tồn tại', 1),
|
||
(25051, 1, '500036', '接口信息不存在', '接口信息不存在', 1),
|
||
(25052, 2, '500036', '接口信息不存在', 'Interface information does not exist', 1),
|
||
(25053, 3, '500036', '接口信息不存在', '接口信息不存在', 1),
|
||
(25054, 4, '500036', '接口信息不存在', 'Les informations dinterface nexistent pas', 1),
|
||
(25055, 5, '500036', '接口信息不存在', 'Le informazioni sullinterfaccia non esistono', 1),
|
||
(25056, 6, '500036', '接口信息不存在', 'インターフェイス情報は存在しません', 1),
|
||
(25057, 7, '500036', '接口信息不存在', '인터페이스 정보가 존재하지 않습니다', 1),
|
||
(25058, 8, '500036', '接口信息不存在', 'Интерфэйсийн мэдээлэл байхгүй', 1),
|
||
(25059, 9, '500036', '接口信息不存在', 'ไม่มีข้อมูลอินเทอร์เฟซ', 1),
|
||
(25060, 10, '500036', '接口信息不存在', 'Thông tin giao diện không tồn tại', 1),
|
||
(25061, 1, '500037', '接口分类名称不能为空', '接口分类名称不能为空', 1),
|
||
(25062, 2, '500037', '接口分类名称不能为空', 'Interface category name cannot be empty', 1),
|
||
(25063, 3, '500037', '接口分类名称不能为空', '接口分類名稱不能爲空', 1),
|
||
(25064, 4, '500037', '接口分类名称不能为空', 'Le nom de la catégorie dinterface ne peut pas être vide', 1),
|
||
(25065, 5, '500037', '接口分类名称不能为空', 'Il nome della categoria di interfaccia non può essere vuoto', 1),
|
||
(25066, 6, '500037', '接口分类名称不能为空', 'インターフェイス分類名を空にすることはできません', 1),
|
||
(25067, 7, '500037', '接口分类名称不能为空', '인터페이스 카테고리 이름은 비워 둘 수 없습니다', 1),
|
||
(25068, 8, '500037', '接口分类名称不能为空', 'Интерфэйсийн категорийн нэр хоосон байж чадахгүй', 1),
|
||
(25069, 9, '500037', '接口分类名称不能为空', 'ชื่อการจัดประเภทอินเทอร์เฟซต้องไม่ว่างเปล่า', 1),
|
||
(25070, 10, '500037', '接口分类名称不能为空', 'Tên phân loại giao diện không thể trống', 1),
|
||
(25071, 1, '500038', '该分类下有接口,无法删除', '该分类下有接口,无法删除', 1),
|
||
(25072, 2, '500038', '该分类下有接口,无法删除', 'There is an interface under this category and cannot be deleted.', 1),
|
||
(25073, 3, '500038', '该分类下有接口,无法删除', '該分類下有接口,無法刪除', 1),
|
||
(25074, 4, '500038', '该分类下有接口,无法删除', 'Il existe une interface sous cette catégorie et ne peut pas être supprimée.', 1),
|
||
(25075, 5, '500038', '该分类下有接口,无法删除', 'Cè uninterfaccia in questa categoria e non può essere eliminata.', 1),
|
||
(25076, 6, '500038', '该分类下有接口,无法删除', 'この分類の下にインタフェースがあり、削除できません', 1),
|
||
(25077, 7, '500038', '该分类下有接口,无法删除', '이 범주 아래에 인터페이스가 있으므로 삭제할 수 없습니다.', 1),
|
||
(25078, 8, '500038', '该分类下有接口,无法删除', 'Энэ ангиллын дор интерфэйс байдаг тул устгах боломжгүй юм.', 1),
|
||
(25079, 9, '500038', '该分类下有接口,无法删除', 'มีอินเทอร์เฟซภายใต้หมวดหมู่นี้และไม่สามารถลบได้', 1),
|
||
(25080, 10, '500038', '该分类下有接口,无法删除', 'Có giao diện dưới phân loại này, không thể xóa được.', 1),
|
||
(25081, 1, '500039', 'zip扩展未安装', 'zip扩展未安装', 1),
|
||
(25082, 2, '500039', 'zip扩展未安装', 'Zip extension not installed', 1),
|
||
(25083, 3, '500039', 'zip扩展未安装', 'zip擴展未安裝', 1),
|
||
(25084, 4, '500039', 'zip扩展未安装', 'Extension zippée non installée', 1),
|
||
(25085, 5, '500039', 'zip扩展未安装', 'Estensione zip non installata', 1),
|
||
(25086, 6, '500039', 'zip扩展未安装', 'zip拡張機能がインストールされていません', 1),
|
||
(25087, 7, '500039', 'zip扩展未安装', 'Zip 확장이 설치되지 않았습니다.', 1),
|
||
(25088, 8, '500039', 'zip扩展未安装', 'Зип өргөтгөл суулгаагүй', 1),
|
||
(25089, 9, '500039', 'zip扩展未安装', 'ไม่ได้ติดตั้งส่วนขยายซิป', 1),
|
||
(25090, 10, '500039', 'zip扩展未安装', 'Phần mở rộng zip chưa được cài đặt', 1),
|
||
(25091, 1, '500040', '删除文件失败,失败原因{:message}', '删除文件失败,失败原因{:message}', 1),
|
||
(25092, 2, '500040', '删除文件失败,失败原因{:message}', 'Failed to delete file, reason for failure {:message}', 1),
|
||
(25093, 3, '500040', '删除文件失败,失败原因{:message}', '刪除文件失敗,失敗原因{:message}', 1),
|
||
(25094, 4, '500040', '删除文件失败,失败原因{:message}', 'Impossible de supprimer le fichier, raison de léchec { :message}', 1),
|
||
(25095, 5, '500040', '删除文件失败,失败原因{:message}', 'Impossibile eliminare il file, motivo del fallimento {:message}', 1),
|
||
(25096, 6, '500040', '删除文件失败,失败原因{:message}', 'ファイルの削除に失敗しました。失敗した理由{:message}', 1),
|
||
(25097, 7, '500040', '删除文件失败,失败原因{:message}', '파일 삭제 실패, 실패 이유{:message}', 1),
|
||
(25098, 8, '500040', '删除文件失败,失败原因{:message}', 'Файл устгаж чадаагүй, бүтэлгүйтлийн шалтгаан {:message}', 1),
|
||
(25099, 9, '500040', '删除文件失败,失败原因{:message}', 'ล้มเหลวในการลบแฟ้ม เนื่องจากไม่สามารถลบแฟ้ม {:message}ได้', 1),
|
||
(25100, 10, '500040', '删除文件失败,失败原因{:message}', 'Xóa tập tin không thành công, lý do không thành công {:message}', 1),
|
||
(25101, 1, '500041', '系统数据表,无法生成', '系统数据表,无法生成', 1),
|
||
(25102, 2, '500041', '系统数据表,无法生成', 'System data , cannot be generated', 1),
|
||
(25103, 3, '500041', '系统数据表,无法生成', '系統數據表,無法生成', 1),
|
||
(25104, 4, '500041', '系统数据表,无法生成', ' de données système, ne peut pas être générée', 1),
|
||
(25105, 5, '500041', '系统数据表,无法生成', 'Impossibile generare la tabella dei dati di sistema', 1),
|
||
(25106, 6, '500041', '系统数据表,无法生成', 'システムデータシートを生成できません', 1),
|
||
(25107, 7, '500041', '系统数据表,无法生成', '시스템 데이터 테이블, 생성할 수 없음', 1),
|
||
(25108, 8, '500041', '系统数据表,无法生成', 'Системийн өгөгдлийн хүснэгтийг үүсгэх боломжгүй', 1),
|
||
(25109, 9, '500041', '系统数据表,无法生成', 'แผ่นข้อมูลระบบ ไม่สามารถสร้างได้', 1),
|
||
(25110, 10, '500041', '系统数据表,无法生成', 'Bảng dữ liệu hệ thống, không thể tạo', 1),
|
||
(25111, 1, '500042', '表名不能为空', '表名不能为空', 1),
|
||
(25112, 2, '500042', '表名不能为空', ' name cannot be empty', 1),
|
||
(25113, 3, '500042', '表名不能为空', '表名不能爲空', 1),
|
||
(25114, 4, '500042', '表名不能为空', 'Le nom de la ne peut pas être vide', 1),
|
||
(25115, 5, '500042', '表名不能为空', 'Il nome della tabella non può essere vuoto', 1),
|
||
(25116, 6, '500042', '表名不能为空', 'テーブル名は空にできません', 1),
|
||
(25117, 7, '500042', '表名不能为空', '테이블 이름은 비울 수 없습니다', 1),
|
||
(25118, 8, '500042', '表名不能为空', 'Хүснэгтийн нэр хоосон байж болохгүй', 1),
|
||
(25119, 9, '500042', '表名不能为空', 'ชื่อตารางต้องไม่ว่างเปล่า', 1),
|
||
(25120, 10, '500042', '表名不能为空', 'Tên bảng không thể trống', 1),
|
||
(25121, 1, '500043', '功能创建成功', '功能创建成功', 1),
|
||
(25122, 2, '500043', '功能创建成功', 'Function created successfully', 1),
|
||
(25123, 3, '500043', '功能创建成功', '功能創建成功', 1),
|
||
(25124, 4, '500043', '功能创建成功', 'Fonction créée avec succès', 1),
|
||
(25125, 5, '500043', '功能创建成功', 'Funzione creata con successo', 1),
|
||
(25126, 6, '500043', '功能创建成功', '機能の作成に成功', 1),
|
||
(25127, 7, '500043', '功能创建成功', '기능이 성공적으로 생성되었습니다.', 1),
|
||
(25128, 8, '500043', '功能创建成功', 'Функц амжилттай үүсгэсэн', 1),
|
||
(25129, 9, '500043', '功能创建成功', 'สร้างฟังก์ชันสำเร็จแล้ว', 1),
|
||
(25130, 10, '500043', '功能创建成功', 'Chức năng tạo thành công', 1),
|
||
(25131, 1, '500044', '字段类型不存在', '字段类型不存在', 1),
|
||
(25132, 2, '500044', '字段类型不存在', 'Field type does not exist', 1),
|
||
(25133, 3, '500044', '字段类型不存在', '字段類型不存在', 1),
|
||
(25134, 4, '500044', '字段类型不存在', 'Le type de champ nexiste pas', 1),
|
||
(25135, 5, '500044', '字段类型不存在', 'Il tipo di campo non esiste', 1),
|
||
(25136, 6, '500044', '字段类型不存在', 'フィールドタイプは存在しません', 1),
|
||
(25137, 7, '500044', '字段类型不存在', '필드 유형이 없습니다', 1),
|
||
(25138, 8, '500044', '字段类型不存在', 'Талбайн төрөл байхгүй', 1),
|
||
(25139, 9, '500044', '字段类型不存在', 'ไม่มีประเภทฟิลด์อยู่', 1),
|
||
(25140, 10, '500044', '字段类型不存在', 'Loại trường không tồn tại', 1),
|
||
(25141, 1, '500045', '不存在的资源路由类型', '不存在的资源路由类型', 1),
|
||
(25142, 2, '500045', '不存在的资源路由类型', 'Resource routing type that does not exist', 1),
|
||
(25143, 3, '500045', '不存在的资源路由类型', '不存在的資源路由類型', 1),
|
||
(25144, 4, '500045', '不存在的资源路由类型', 'Type de routage de ressource qui nexiste pas', 1),
|
||
(25145, 5, '500045', '不存在的资源路由类型', 'Tipo di routing delle risorse che non esiste', 1),
|
||
(25146, 6, '500045', '不存在的资源路由类型', '存在しないリソースルーティングタイプ', 1),
|
||
(25147, 7, '500045', '不存在的资源路由类型', '존재하지 않는 리소스 라우팅 유형', 1),
|
||
(25148, 8, '500045', '不存在的资源路由类型', 'Байхгүй байгаа нөөцийн чиглүүлэлтийн төрөл', 1),
|
||
(25149, 9, '500045', '不存在的资源路由类型', 'ชนิดของการกำหนดเส้นทางทรัพยากรที่ไม่มีอยู่', 1),
|
||
(25150, 10, '500045', '不存在的资源路由类型', 'Loại định tuyến tài nguyên không tồn tại', 1),
|
||
(25151, 1, '500046', '表单类型至少选择一项', '表单类型至少选择一项', 1),
|
||
(25152, 2, '500046', '表单类型至少选择一项', ' at least one form type', 1),
|
||
(25153, 3, '500046', '表单类型至少选择一项', '表單類型至少選擇一項', 1),
|
||
(25154, 4, '500046', '表单类型至少选择一项', 'Sélectionnez au moins un type de formulaire', 1),
|
||
(25155, 5, '500046', '表单类型至少选择一项', 'Selezionare almeno un tipo di modulo', 1),
|
||
(25156, 6, '500046', '表单类型至少选择一项', 'フォームタイプ1つ以上を選択', 1),
|
||
(25157, 7, '500046', '表单类型至少选择一项', '하나 이상의 양식 유형 선택', 1),
|
||
(25158, 8, '500046', '表单类型至少选择一项', 'Ядаж нэг маягтын төрлийг сонгох', 1),
|
||
(25159, 9, '500046', '表单类型至少选择一项', 'เลือกประเภทของแบบฟอร์มอย่างน้อยหนึ่งรายการ', 1),
|
||
(25160, 10, '500046', '表单类型至少选择一项', 'Chọn ít nhất một loại biểu mẫu', 1),
|
||
(25161, 1, '500047', '列表展示数据生成失败', '列表展示数据生成失败', 1),
|
||
(25162, 2, '500047', '列表展示数据生成失败', 'List display data generation failed', 1),
|
||
(25163, 3, '500047', '列表展示数据生成失败', '列表展示數據生成失敗', 1),
|
||
(25164, 4, '500047', '列表展示数据生成失败', 'Échec de la génération des données daffichage de la liste', 1),
|
||
(25165, 5, '500047', '列表展示数据生成失败', 'Generazione dati visualizzazione elenco non riuscita', 1),
|
||
(25166, 6, '500047', '列表展示数据生成失败', 'リスト表示データの生成に失敗しました', 1),
|
||
(25167, 7, '500047', '列表展示数据生成失败', '목록 표시 데이터 생성 실패', 1),
|
||
(25168, 8, '500047', '列表展示数据生成失败', 'Жагсаалтыг харуулах өгөгдөл үүсгэх бүтэлгүйтсэн', 1),
|
||
(25169, 9, '500047', '列表展示数据生成失败', 'ล้มเหลวในการสร้างข้อมูลการแสดงรายการ', 1),
|
||
(25170, 10, '500047', '列表展示数据生成失败', 'Danh sách hiển thị dữ liệu tạo không thành công', 1),
|
||
(25171, 1, '500048', '列表名称不能为空', '列表名称不能为空', 1),
|
||
(25172, 2, '500048', '列表名称不能为空', 'List name cannot be empty', 1),
|
||
(25173, 3, '500048', '列表名称不能为空', '列表名稱不能爲空', 1),
|
||
(25174, 4, '500048', '列表名称不能为空', 'Le nom de la liste ne peut pas être vide', 1),
|
||
(25175, 5, '500048', '列表名称不能为空', 'Il nome dellelenco non può essere vuoto', 1),
|
||
(25176, 6, '500048', '列表名称不能为空', 'リスト名を空にすることはできません', 1),
|
||
(25177, 7, '500048', '列表名称不能为空', '목록 이름은 비워 둘 수 없습니다', 1),
|
||
(25178, 8, '500048', '列表名称不能为空', 'Жагсаалтын нэр хоосон байж болохгүй', 1),
|
||
(25179, 9, '500048', '列表名称不能为空', 'ชื่อรายการต้องไม่ว่างเปล่า', 1),
|
||
(25180, 10, '500048', '列表名称不能为空', 'Tên danh sách không thể trống', 1),
|
||
(25181, 1, '支付剩余时间', '支付剩余时间', '支付剩余时间', 0),
|
||
(25182, 2, '支付剩余时间', '支付剩余时间', 'Pay remaining time', 0),
|
||
(25183, 3, '支付剩余时间', '支付剩余时间', '支付剩餘時間', 0),
|
||
(25184, 4, '支付剩余时间', '支付剩余时间', 'Rémunération du temps restant', 0),
|
||
(25185, 5, '支付剩余时间', '支付剩余时间', 'Paga il tempo rimanente', 0),
|
||
(25186, 6, '支付剩余时间', '支付剩余时间', '残り時間を支払う', 0),
|
||
(25187, 7, '支付剩余时间', '支付剩余时间', '남은 시간 지불', 0),
|
||
(25188, 8, '支付剩余时间', '支付剩余时间', 'Үлдсэн хугацааг төлөх', 0),
|
||
(25189, 9, '支付剩余时间', '支付剩余时间', 'จ่ายเวลาที่เหลือ', 0),
|
||
(25190, 10, '支付剩余时间', '支付剩余时间', 'Thanh toán thời gian còn lại', 0),
|
||
(25191, 1, '确认支付', '确认支付', '确认支付', 0),
|
||
(25192, 2, '确认支付', '确认支付', 'Confirm payment', 0),
|
||
(25193, 3, '确认支付', '确认支付', '確認支付', 0),
|
||
(25194, 4, '确认支付', '确认支付', 'Confirmer le paiement', 0),
|
||
(25195, 5, '确认支付', '确认支付', 'Conferma il pagamento', 0),
|
||
(25196, 6, '确认支付', '确认支付', '支払いの確認', 0),
|
||
(25197, 7, '确认支付', '确认支付', '결제 확인', 0),
|
||
(25198, 8, '确认支付', '确认支付', 'Төлбөрийг баталгаажуулах', 0),
|
||
(25199, 9, '确认支付', '确认支付', 'ยืนยันการชำระเงิน', 0),
|
||
(25200, 10, '确认支付', '确认支付', 'Xác nhận thanh toán', 0),
|
||
(25201, 1, '暂不支付', '暂不支付', '暂不支付', 0),
|
||
(25202, 2, '暂不支付', '暂不支付', 'No payment for the time being.', 0),
|
||
(25203, 3, '暂不支付', '暂不支付', '暫不支付', 0),
|
||
(25204, 4, '暂不支付', '暂不支付', 'Aucun paiement pour le moment.', 0),
|
||
(25205, 5, '暂不支付', '暂不支付', 'Nessun pagamento per il momento.', 0),
|
||
(25206, 6, '暂不支付', '暂不支付', '未払い', 0),
|
||
(25207, 7, '暂不支付', '暂不支付', '당분간 지불이 없습니다.', 0),
|
||
(25208, 8, '暂不支付', '暂不支付', 'Одоогийн байдлаар төлбөргүй.', 0),
|
||
(25209, 9, '暂不支付', '暂不支付', 'ยังไม่ชำระเงินในขณะนี้', 0),
|
||
(25210, 10, '暂不支付', '暂不支付', 'Tạm thời không thanh toán', 0),
|
||
(25211, 1, '用户等级优惠', '用户等级优惠', '用户等级优惠', 0),
|
||
(25212, 2, '用户等级优惠', '用户等级优惠', 'User Level Offer', 0),
|
||
(25213, 3, '用户等级优惠', '用户等级优惠', '用戶等級優惠', 0),
|
||
(25214, 4, '用户等级优惠', '用户等级优惠', 'Offre de niveau utilisateur', 0),
|
||
(25215, 5, '用户等级优惠', '用户等级优惠', 'Offerta a livello utente', 0),
|
||
(25216, 6, '用户等级优惠', '用户等级优惠', 'ユーザーレベル割引', 0),
|
||
(25217, 7, '用户等级优惠', '用户等级优惠', '사용자 수준 제안', 0),
|
||
(25218, 8, '用户等级优惠', '用户等级优惠', 'Хэрэглэгчийн түвшний санал', 0),
|
||
(25219, 9, '用户等级优惠', '用户等级优惠', 'ส่วนลดระดับผู้ใช้', 0),
|
||
(25220, 10, '用户等级优惠', '用户等级优惠', 'Ưu đãi cấp người dùng', 0),
|
||
(25221, 1, '提交订单', '提交订单', '提交订单', 0),
|
||
(25222, 2, '提交订单', '提交订单', 'Submit', 0),
|
||
(25223, 3, '提交订单', '提交订单', '提交訂單', 0),
|
||
(25224, 4, '提交订单', '提交订单', 'Soumettre', 0),
|
||
(25225, 5, '提交订单', '提交订单', 'Invia', 0),
|
||
(25226, 6, '提交订单', '提交订单', '注文を送信する', 0),
|
||
(25227, 7, '提交订单', '提交订单', '주문 제출', 0),
|
||
(25228, 8, '提交订单', '提交订单', 'Захиалга ирүүлэх', 0),
|
||
(25229, 9, '提交订单', '提交订单', 'ส่งคำสั่งซื้อ', 0),
|
||
(25230, 10, '提交订单', '提交订单', 'Gửi đơn hàng', 0);
|
||
SQL
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "message_system",
|
||
'sql' => "ALTER TABLE `@table` CHANGE `data` `data` varchar(5000) NOT NULL DEFAULT '' COMMENT '站内信参数'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "store_coupon_issue",
|
||
'sql' => "ALTER TABLE `@table` CHANGE `category_id` `category_id` varchar(255) NOT NULL DEFAULT '' COMMENT '分类id'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 3,
|
||
'table' => "store_order",
|
||
'field' => "kuaidi_label",
|
||
'findSql' => "show columns from `@table` like 'kuaidi_label'",
|
||
'sql' => "ALTER TABLE `@table` ADD `kuaidi_label` varchar(255) NOT NULL DEFAULT '' COMMENT '快递单号图片' AFTER `delivery_id`"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 3,
|
||
'table' => "store_order",
|
||
'field' => "kuaidi_task_id",
|
||
'findSql' => "show columns from `@table` like 'kuaidi_task_id'",
|
||
'sql' => "ALTER TABLE `@table` ADD `kuaidi_task_id` varchar(64) NOT NULL DEFAULT '' COMMENT '快递单任务id' AFTER `kuaidi_label`"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 3,
|
||
'table' => "store_order",
|
||
'field' => "kuaidi_order_id",
|
||
'findSql' => "show columns from `@table` like 'kuaidi_order_id'",
|
||
'sql' => "ALTER TABLE `@table` ADD `kuaidi_order_id` varchar(64) NOT NULL DEFAULT '' COMMENT '快递单订单号' AFTER `kuaidi_task_id`"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 6,
|
||
'table' => "system_config",
|
||
'whereTable' => "system_config_tab",
|
||
'findSql' => "select id from @table where `menu_name` = 'network_security'",
|
||
'whereSql' => "SELECT id as tabId FROM `@whereTable` WHERE `eng_title`='web_site'",
|
||
'sql' => "INSERT INTO `@table` VALUES (NULL, 'network_security', 'text', 'input', @tabId, '', 1, '', 0, 0, '\"\"', '网安备案', '公安部门登记的备案信息,显示在pc底部', 8, 1)"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 6,
|
||
'table' => "system_config",
|
||
'whereTable' => "system_config_tab",
|
||
'findSql' => "select id from @table where `menu_name` = 'icp_url'",
|
||
'whereSql' => "SELECT id as tabId FROM `@whereTable` WHERE `eng_title`='web_site'",
|
||
'sql' => "INSERT INTO `@table` VALUES (NULL, 'icp_url', 'text', 'input', @tabId, '', 1, '', 0, 0, '\"https:\\/\\/beian.miit.gov.cn\"', 'ICP备案链接', 'H5和PC底部显示的ICP备案号点击跳转的链接', 9, 1)"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 6,
|
||
'table' => "system_config",
|
||
'whereTable' => "system_config_tab",
|
||
'findSql' => "select id from @table where `menu_name` = 'network_security_url'",
|
||
'whereSql' => "SELECT id as tabId FROM `@whereTable` WHERE `eng_title`='web_site'",
|
||
'sql' => "INSERT INTO `@table` VALUES (NULL, 'network_security_url', 'text', 'input', @tabId, '', 1, '', 0, 0, '\"https:\\/\\/www.beian.gov.cn\"', '网安备案链接', 'H5和PC底部显示的网安备案号点击跳转的链接', 7, 1)"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 6,
|
||
'table' => "system_config",
|
||
'whereTable' => "system_config_tab",
|
||
'findSql' => "select id from @table where `menu_name` = 'agent_apply_open'",
|
||
'whereSql' => "SELECT id as tabId FROM `@whereTable` WHERE `eng_title`='brokerage_type'",
|
||
'sql' => "INSERT INTO `@table` VALUES (NULL, 'agent_apply_open', 'radio', 'input', @tabId, '1=>开启\n0=>关闭', 1, '', 0, 0, '1', '代理商申请开关', '控制移动端我的推广页面的代理商申请按钮是否显示', 0, 1)"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 6,
|
||
'table' => "system_config",
|
||
'whereTable' => "system_config_tab",
|
||
'findSql' => "select id from @table where `menu_name` = 'order_shipping_open'",
|
||
'whereSql' => "SELECT id as tabId FROM `@whereTable` WHERE `eng_title`='routine'",
|
||
'sql' => "INSERT INTO `@table` VALUES (NULL, 'order_shipping_open', 'radio', 'input', @tabId, '1=>开启\n0=>关闭', 1, '', 0, 0, '0', '小程序发货信息管理服务', '小程序有订单发货管理时,请打开此开关,否则会导致订单资金冻结', 0, 1)"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 1,
|
||
'table' => "system_crud",
|
||
'findSql' => "select * from information_schema.tables where table_name ='@table'",
|
||
'sql' => "CREATE TABLE IF NOT EXISTS `@table` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '菜单上级id',
|
||
`name` varchar(200) NOT NULL COMMENT '菜单名称',
|
||
`menu_id` int(11) NOT NULL DEFAULT '0' COMMENT '主菜单id',
|
||
`model_name` varchar(255) NOT NULL DEFAULT '' COMMENT '模块名',
|
||
`table_name` varchar(50) NOT NULL COMMENT '表明',
|
||
`field` text NOT NULL COMMENT '参数内容',
|
||
`menu_ids` varchar(255) NOT NULL DEFAULT '' COMMENT '生成的菜单id',
|
||
`route_ids` varchar(255) NOT NULL DEFAULT '' COMMENT '权限id',
|
||
`make_path` varchar(500) NOT NULL DEFAULT '' COMMENT '文件路径',
|
||
`table_collation` varchar(100) NOT NULL DEFAULT '' COMMENT '字符集',
|
||
`table_comment` varchar(255) NOT NULL DEFAULT '' COMMENT '表备注',
|
||
`add_time` int(11) NOT NULL COMMENT '添加时间',
|
||
UNIQUE KEY `id` (`id`)
|
||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='crud生成记录'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 1,
|
||
'table' => "system_file_info",
|
||
'findSql' => "select * from information_schema.tables where table_name ='@table'",
|
||
'sql' => "CREATE TABLE IF NOT EXISTS `@table` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
|
||
`name` varchar(255) NOT NULL DEFAULT '' COMMENT '目录或文件名称',
|
||
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '目录或文件路径',
|
||
`full_path` varchar(255) NOT NULL DEFAULT '' COMMENT '完整路径',
|
||
`type` varchar(255) NOT NULL DEFAULT '' COMMENT 'dir目录1 ,file文件',
|
||
`create_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '创建时间',
|
||
`update_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '修改时间',
|
||
`mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注',
|
||
PRIMARY KEY (`id`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=13189 DEFAULT CHARSET=utf8mb4 COMMENT='文件管理表'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "system_file_info",
|
||
'sql' => <<<SQL
|
||
INSERT INTO `@table` (`id`, `name`, `path`, `full_path`, `type`, `create_time`, `update_time`, `mark`) VALUES
|
||
(1, '.constant', '', '/.constant', 'file', '2023-04-26 16:58:50', '2023-04-26 16:58:50', '程序安装记录文件'),
|
||
(2, '.env', '', '/.env', 'file', '2023-04-26 16:58:48', '2023-04-26 16:58:48', '配置文件'),
|
||
(3, '.htaccess', '', '/.htaccess', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'apache伪静态'),
|
||
(4, '.phpstorm.meta.php', '', '/.phpstorm.meta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'IDE提示'),
|
||
(5, '.travis.yml', '', '/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(6, '.version', '', '/.version', 'file', '2023-04-26 16:58:50', '2023-04-26 16:58:50', '版本号'),
|
||
(7, 'LICENSE.txt', '', '/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '版权说明'),
|
||
(8, 'README.md', '', '/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '说明文件'),
|
||
(9, 'app', '', '/app', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '应用目录'),
|
||
(10, 'AppService.php', '/app', '/app/AppService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '应用服务注册'),
|
||
(11, 'ExceptionHandle.php', '/app', '/app/ExceptionHandle.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '错误异常处理'),
|
||
(12, 'Request.php', '/app', '/app/Request.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '请求'),
|
||
(13, 'adminapi', '/app', '/app/adminapi', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '后台管理端接口'),
|
||
(14, 'AdminApiExceptionHandle.php', '/app/adminapi', '/app/adminapi/AdminApiExceptionHandle.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '异常捕获处理'),
|
||
(15, 'common.php', '/app/adminapi', '/app/adminapi/common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共方法存放'),
|
||
(16, 'config', '/app/adminapi', '/app/adminapi/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(17, 'route.php', '/app/adminapi/config', '/app/adminapi/config/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(18, 'controller', '/app/adminapi', '/app/adminapi/controller', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '控制器'),
|
||
(19, 'AuthController.php', '/app/adminapi/controller', '/app/adminapi/controller/AuthController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '授权控制器'),
|
||
(20, 'Common.php', '/app/adminapi/controller', '/app/adminapi/controller/Common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共控制器'),
|
||
(21, 'Login.php', '/app/adminapi/controller', '/app/adminapi/controller/Login.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录控制器'),
|
||
(22, 'PublicController.php', '/app/adminapi/controller', '/app/adminapi/controller/PublicController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公开控制器'),
|
||
(23, 'Test.php', '/app/adminapi/controller', '/app/adminapi/controller/Test.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '测试控制器'),
|
||
(24, 'UpgradeController.php', '/app/adminapi/controller', '/app/adminapi/controller/UpgradeController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '更新控制器'),
|
||
(25, 'v1', '/app/adminapi/controller', '/app/adminapi/controller/v1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'v1接口目录'),
|
||
(26, 'agent', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/agent', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(27, 'AgentLevel.php', '/app/adminapi/controller/v1/agent', '/app/adminapi/controller/v1/agent/AgentLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级控制器'),
|
||
(28, 'AgentLevelTask.php', '/app/adminapi/controller/v1/agent', '/app/adminapi/controller/v1/agent/AgentLevelTask.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务控制器'),
|
||
(29, 'AgentManage.php', '/app/adminapi/controller/v1/agent', '/app/adminapi/controller/v1/agent/AgentManage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销商管理控制器'),
|
||
(30, 'Division.php', '/app/adminapi/controller/v1/agent', '/app/adminapi/controller/v1/agent/Division.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事业部控制器'),
|
||
(31, 'application', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/application', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '应用'),
|
||
(32, 'routine', '/app/adminapi/controller/v1/application', '/app/adminapi/controller/v1/application/routine', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序'),
|
||
(33, 'RoutineTemplate.php', '/app/adminapi/controller/v1/application/routine', '/app/adminapi/controller/v1/application/routine/RoutineTemplate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序模板消息'),
|
||
(34, 'wechat', '/app/adminapi/controller/v1/application', '/app/adminapi/controller/v1/application/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号'),
|
||
(35, 'Menus.php', '/app/adminapi/controller/v1/application/wechat', '/app/adminapi/controller/v1/application/wechat/Menus.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号菜单'),
|
||
(36, 'Reply.php', '/app/adminapi/controller/v1/application/wechat', '/app/adminapi/controller/v1/application/wechat/Reply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共号回复'),
|
||
(37, 'WechatNewsCategory.php', '/app/adminapi/controller/v1/application/wechat', '/app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '图文信息'),
|
||
(38, 'WechatQrcode.php', '/app/adminapi/controller/v1/application/wechat', '/app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '渠道码'),
|
||
(39, 'WechatTemplate.php', '/app/adminapi/controller/v1/application/wechat', '/app/adminapi/controller/v1/application/wechat/WechatTemplate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信模板消息'),
|
||
(40, 'cms', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/cms', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(41, 'Article.php', '/app/adminapi/controller/v1/cms', '/app/adminapi/controller/v1/cms/Article.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(42, 'ArticleCategory.php', '/app/adminapi/controller/v1/cms', '/app/adminapi/controller/v1/cms/ArticleCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章分类'),
|
||
(43, 'diy', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/diy', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(44, 'Diy.php', '/app/adminapi/controller/v1/diy', '/app/adminapi/controller/v1/diy/Diy.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(45, 'PageLink.php', '/app/adminapi/controller/v1/diy', '/app/adminapi/controller/v1/diy/PageLink.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '页面路径'),
|
||
(46, 'export', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/export', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '导出'),
|
||
(47, 'ExportExcel.php', '/app/adminapi/controller/v1/export', '/app/adminapi/controller/v1/export/ExportExcel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '导出excel类'),
|
||
(48, 'file', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/file', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件'),
|
||
(49, 'SystemAttachment.php', '/app/adminapi/controller/v1/file', '/app/adminapi/controller/v1/file/SystemAttachment.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件'),
|
||
(50, 'SystemAttachmentCategory.php', '/app/adminapi/controller/v1/file', '/app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件分类'),
|
||
(51, 'finance', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/finance', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '财务'),
|
||
(52, 'Finance.php', '/app/adminapi/controller/v1/finance', '/app/adminapi/controller/v1/finance/Finance.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '资金流水'),
|
||
(53, 'UserBalance.php', '/app/adminapi/controller/v1/finance', '/app/adminapi/controller/v1/finance/UserBalance.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '余额记录'),
|
||
(54, 'UserExtract.php', '/app/adminapi/controller/v1/finance', '/app/adminapi/controller/v1/finance/UserExtract.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '提现'),
|
||
(55, 'UserRecharge.php', '/app/adminapi/controller/v1/finance', '/app/adminapi/controller/v1/finance/UserRecharge.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '充值'),
|
||
(56, 'freight', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/freight', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流'),
|
||
(57, 'Express.php', '/app/adminapi/controller/v1/freight', '/app/adminapi/controller/v1/freight/Express.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流'),
|
||
(58, 'kefu', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/kefu', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(59, 'StoreService.php', '/app/adminapi/controller/v1/kefu', '/app/adminapi/controller/v1/kefu/StoreService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(60, 'StoreServiceFeedback.php', '/app/adminapi/controller/v1/kefu', '/app/adminapi/controller/v1/kefu/StoreServiceFeedback.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服用户留言反馈'),
|
||
(61, 'StoreServiceSpeechcraft.php', '/app/adminapi/controller/v1/kefu', '/app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '话术控制器'),
|
||
(62, 'StoreServiceSpeechcraftCate.php', '/app/adminapi/controller/v1/kefu', '/app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '话术分类控制器'),
|
||
(63, 'marketing', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/marketing', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '营销'),
|
||
(64, 'StoreAdvance.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreAdvance.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售控制器'),
|
||
(65, 'StoreBargain.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreBargain.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价管理'),
|
||
(66, 'StoreCombination.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreCombination.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团管理'),
|
||
(67, 'StoreCouponIssue.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '已发布优惠券管理'),
|
||
(68, 'StoreCouponUser.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreCouponUser.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券发放记录'),
|
||
(69, 'StoreSeckill.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/StoreSeckill.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀'),
|
||
(70, 'UserPoint.php', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/UserPoint.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分控制器'),
|
||
(71, 'integral', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/integral', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分'),
|
||
(72, 'StoreIntegral.php', '/app/adminapi/controller/v1/marketing/integral', '/app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分商城管理'),
|
||
(73, 'StoreIntegralOrder.php', '/app/adminapi/controller/v1/marketing/integral', '/app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单管理'),
|
||
(74, 'StorePointRecord.php', '/app/adminapi/controller/v1/marketing/integral', '/app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分记录'),
|
||
(75, 'live', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/live', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播'),
|
||
(76, 'LiveAnchor.php', '/app/adminapi/controller/v1/marketing/live', '/app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间主播'),
|
||
(77, 'LiveGoods.php', '/app/adminapi/controller/v1/marketing/live', '/app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间商品'),
|
||
(78, 'LiveRoom.php', '/app/adminapi/controller/v1/marketing/live', '/app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间'),
|
||
(79, 'lottery', '/app/adminapi/controller/v1/marketing', '/app/adminapi/controller/v1/marketing/lottery', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖'),
|
||
(80, 'LuckLottery.php', '/app/adminapi/controller/v1/marketing/lottery', '/app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖活动'),
|
||
(81, 'LuckLotteryRecord.php', '/app/adminapi/controller/v1/marketing/lottery', '/app/adminapi/controller/v1/marketing/lottery/LuckLotteryRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖中奖记录'),
|
||
(82, 'merchant', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/merchant', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(83, 'SystemStore.php', '/app/adminapi/controller/v1/merchant', '/app/adminapi/controller/v1/merchant/SystemStore.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(84, 'SystemStoreStaff.php', '/app/adminapi/controller/v1/merchant', '/app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店配送员'),
|
||
(85, 'SystemVerifyOrder.php', '/app/adminapi/controller/v1/merchant', '/app/adminapi/controller/v1/merchant/SystemVerifyOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店核销'),
|
||
(86, 'notification', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/notification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '短信'),
|
||
(87, 'sms', '/app/adminapi/controller/v1/notification', '/app/adminapi/controller/v1/notification/sms', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信-暂时没有使用'),
|
||
(88, 'SmsAdmin.php', '/app/adminapi/controller/v1/notification/sms', '/app/adminapi/controller/v1/notification/sms/SmsAdmin.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(89, 'SmsConfig.php', '/app/adminapi/controller/v1/notification/sms', '/app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(90, 'SmsPay.php', '/app/adminapi/controller/v1/notification/sms', '/app/adminapi/controller/v1/notification/sms/SmsPay.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(91, 'SmsPublicTemp.php', '/app/adminapi/controller/v1/notification/sms', '/app/adminapi/controller/v1/notification/sms/SmsPublicTemp.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(92, 'SmsTemplateApply.php', '/app/adminapi/controller/v1/notification/sms', '/app/adminapi/controller/v1/notification/sms/SmsTemplateApply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(93, 'order', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(94, 'DeliveryService.php', '/app/adminapi/controller/v1/order', '/app/adminapi/controller/v1/order/DeliveryService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配送员管理'),
|
||
(95, 'OtherOrder.php', '/app/adminapi/controller/v1/order', '/app/adminapi/controller/v1/order/OtherOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单'),
|
||
(96, 'RefundOrder.php', '/app/adminapi/controller/v1/order', '/app/adminapi/controller/v1/order/RefundOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '退款订单'),
|
||
(97, 'StoreOrder.php', '/app/adminapi/controller/v1/order', '/app/adminapi/controller/v1/order/StoreOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(98, 'StoreOrderInvoice.php', '/app/adminapi/controller/v1/order', '/app/adminapi/controller/v1/order/StoreOrderInvoice.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '发票管理'),
|
||
(99, 'product', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/product', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(100, 'CopyTaobao.php', '/app/adminapi/controller/v1/product', '/app/adminapi/controller/v1/product/CopyTaobao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '复制商品'),
|
||
(101, 'StoreCategory.php', '/app/adminapi/controller/v1/product', '/app/adminapi/controller/v1/product/StoreCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类'),
|
||
(102, 'StoreProduct.php', '/app/adminapi/controller/v1/product', '/app/adminapi/controller/v1/product/StoreProduct.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品列表'),
|
||
(103, 'StoreProductReply.php', '/app/adminapi/controller/v1/product', '/app/adminapi/controller/v1/product/StoreProductReply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评论'),
|
||
(104, 'StoreProductRule.php', '/app/adminapi/controller/v1/product', '/app/adminapi/controller/v1/product/StoreProductRule.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品规则'),
|
||
(105, 'serve', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/serve', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通'),
|
||
(106, 'Export.php', '/app/adminapi/controller/v1/serve', '/app/adminapi/controller/v1/serve/Export.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流类型'),
|
||
(107, 'Login.php', '/app/adminapi/controller/v1/serve', '/app/adminapi/controller/v1/serve/Login.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通登录'),
|
||
(108, 'Serve.php', '/app/adminapi/controller/v1/serve', '/app/adminapi/controller/v1/serve/Serve.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '服务'),
|
||
(109, 'Sms.php', '/app/adminapi/controller/v1/serve', '/app/adminapi/controller/v1/serve/Sms.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通短信'),
|
||
(110, 'setting', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/setting', 'dir', '2023-04-28 10:19:26', '2023-04-28 10:19:26', '配置'),
|
||
(111, 'LangCode.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/LangCode.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言翻译'),
|
||
(112, 'LangCountry.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/LangCountry.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言国家'),
|
||
(113, 'LangType.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/LangType.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言种类'),
|
||
(114, 'ShippingTemplates.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/ShippingTemplates.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(115, 'SystemAdmin.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemAdmin.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员'),
|
||
(116, 'SystemAgreement.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemAgreement.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '协议'),
|
||
(117, 'SystemCity.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemCity.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '城市'),
|
||
(118, 'SystemConfig.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemConfig.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(119, 'SystemConfigTab.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemConfigTab.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置分类'),
|
||
(120, 'SystemCrud.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemCrud.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'CRUD'),
|
||
(121, 'SystemGroup.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemGroup.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据配置'),
|
||
(122, 'SystemGroupData.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemGroupData.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据分类'),
|
||
(123, 'SystemMenus.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemMenus.php', 'file', '2023-04-28 10:19:26', '2023-04-28 10:19:26', '菜单'),
|
||
(124, 'SystemNotification.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemNotification.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息'),
|
||
(125, 'SystemOutAccount.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemOutAccount.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口账户'),
|
||
(126, 'SystemRole.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemRole.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '权限规则'),
|
||
(127, 'SystemRoute.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemRoute.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '接口路由'),
|
||
(128, 'SystemRouteCate.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemRouteCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由分类'),
|
||
(129, 'SystemStorage.php', '/app/adminapi/controller/v1/setting', '/app/adminapi/controller/v1/setting/SystemStorage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '存储配置'),
|
||
(130, 'statistic', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/statistic', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '统计'),
|
||
(131, 'FlowStatistic.php', '/app/adminapi/controller/v1/statistic', '/app/adminapi/controller/v1/statistic/FlowStatistic.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '流量统计'),
|
||
(132, 'system', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/system', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统'),
|
||
(133, 'AppVersion.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/AppVersion.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'APP版本'),
|
||
(134, 'Clear.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/Clear.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '清除缓存'),
|
||
(135, 'SystemClearData.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemClearData.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '清除数据'),
|
||
(136, 'SystemCrontab.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemCrontab.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(137, 'SystemDatabackup.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemDatabackup.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据库备份'),
|
||
(138, 'SystemFile.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemFile.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件校验'),
|
||
(139, 'SystemLog.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemLog.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统日志'),
|
||
(140, 'SystemUpgradeClient.php', '/app/adminapi/controller/v1/system', '/app/adminapi/controller/v1/system/SystemUpgradeClient.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '在线更新'),
|
||
(141, 'user', '/app/adminapi/controller/v1', '/app/adminapi/controller/v1/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(142, 'User.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/User.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(143, 'UserCancel.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/UserCancel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户注销'),
|
||
(144, 'UserGroup.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/UserGroup.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分组'),
|
||
(145, 'UserLabel.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/UserLabel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签'),
|
||
(146, 'UserLabelCate.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/UserLabelCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类'),
|
||
(147, 'UserLevel.php', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/UserLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级'),
|
||
(148, 'member', '/app/adminapi/controller/v1/user', '/app/adminapi/controller/v1/user/member', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '付费会员'),
|
||
(149, 'MemberCard.php', '/app/adminapi/controller/v1/user/member', '/app/adminapi/controller/v1/user/member/MemberCard.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡'),
|
||
(150, 'MemberCardBatch.php', '/app/adminapi/controller/v1/user/member', '/app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '批量生产会员卡'),
|
||
(151, 'event.php', '/app/adminapi', '/app/adminapi/event.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事件'),
|
||
(152, 'filetree.txt', '/app/adminapi', '/app/adminapi/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(153, 'middleware', '/app/adminapi', '/app/adminapi/middleware', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件'),
|
||
(154, 'AdminAuthTokenMiddleware.php', '/app/adminapi/middleware', '/app/adminapi/middleware/AdminAuthTokenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '授权中间件'),
|
||
(155, 'AdminCheckRoleMiddleware.php', '/app/adminapi/middleware', '/app/adminapi/middleware/AdminCheckRoleMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '权限规则验证'),
|
||
(156, 'AdminEditorTokenMiddleware.php', '/app/adminapi/middleware', '/app/adminapi/middleware/AdminEditorTokenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '后台编辑文件验证中间件'),
|
||
(157, 'AdminLogMiddleware.php', '/app/adminapi/middleware', '/app/adminapi/middleware/AdminLogMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '日志中間件'),
|
||
(158, 'provider.php', '/app/adminapi', '/app/adminapi/provider.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '容器配置'),
|
||
(159, 'route', '/app/adminapi', '/app/adminapi/route', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由文件'),
|
||
(160, 'agent.php', '/app/adminapi/route', '/app/adminapi/route/agent.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销管理'),
|
||
(161, 'app.php', '/app/adminapi/route', '/app/adminapi/route/app.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '应用模块'),
|
||
(162, 'cms.php', '/app/adminapi/route', '/app/adminapi/route/cms.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章管理'),
|
||
(163, 'common.php', '/app/adminapi/route', '/app/adminapi/route/common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共权限'),
|
||
(164, 'crud.php', '/app/adminapi/route', '/app/adminapi/route/crud.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'crud加载路由'),
|
||
(165, 'diy.php', '/app/adminapi/route', '/app/adminapi/route/diy.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(166, 'export.php', '/app/adminapi/route', '/app/adminapi/route/export.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '导出'),
|
||
(167, 'file.php', '/app/adminapi/route', '/app/adminapi/route/file.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件'),
|
||
(168, 'finance.php', '/app/adminapi/route', '/app/adminapi/route/finance.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '财务模块'),
|
||
(169, 'freight.php', '/app/adminapi/route', '/app/adminapi/route/freight.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流'),
|
||
(170, 'live.php', '/app/adminapi/route', '/app/adminapi/route/live.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播'),
|
||
(171, 'marketing.php', '/app/adminapi/route', '/app/adminapi/route/marketing.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '活动'),
|
||
(172, 'merchant.php', '/app/adminapi/route', '/app/adminapi/route/merchant.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(173, 'notify.php', '/app/adminapi/route', '/app/adminapi/route/notify.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息通知'),
|
||
(174, 'order.php', '/app/adminapi/route', '/app/adminapi/route/order.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(175, 'product.php', '/app/adminapi/route', '/app/adminapi/route/product.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(176, 'route.php', '/app/adminapi/route', '/app/adminapi/route/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他路由'),
|
||
(177, 'serve.php', '/app/adminapi/route', '/app/adminapi/route/serve.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通相关'),
|
||
(178, 'setting.php', '/app/adminapi/route', '/app/adminapi/route/setting.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统'),
|
||
(179, 'statistic.php', '/app/adminapi/route', '/app/adminapi/route/statistic.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '统计'),
|
||
(180, 'system.php', '/app/adminapi/route', '/app/adminapi/route/system.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '维护'),
|
||
(181, 'user.php', '/app/adminapi/route', '/app/adminapi/route/user.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(182, 'widget.php', '/app/adminapi/route', '/app/adminapi/route/widget.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '组件'),
|
||
(183, 'validate', '/app/adminapi', '/app/adminapi/validate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '数据校验'),
|
||
(184, 'marketing', '/app/adminapi/validate', '/app/adminapi/validate/marketing', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '营销'),
|
||
(185, 'LiveAnchorValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/LiveAnchorValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间主播验证'),
|
||
(186, 'LiveGoodsValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/LiveGoodsValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播商品验证'),
|
||
(187, 'LiveRoomValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/LiveRoomValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间验证'),
|
||
(188, 'StoreBargainValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/StoreBargainValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价验证'),
|
||
(189, 'StoreCombinationValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/StoreCombinationValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团验证'),
|
||
(190, 'StoreCouponValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/StoreCouponValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券验证'),
|
||
(191, 'StoreIntegralValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/StoreIntegralValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分验证'),
|
||
(192, 'StoreSeckillValidate.php', '/app/adminapi/validate/marketing', '/app/adminapi/validate/marketing/StoreSeckillValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀验证'),
|
||
(193, 'merchant', '/app/adminapi/validate', '/app/adminapi/validate/merchant', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(194, 'SystemStoreValidate.php', '/app/adminapi/validate/merchant', '/app/adminapi/validate/merchant/SystemStoreValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店验证'),
|
||
(195, 'notification', '/app/adminapi/validate', '/app/adminapi/validate/notification', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息'),
|
||
(196, 'SmsConfigValidate.php', '/app/adminapi/validate/notification', '/app/adminapi/validate/notification/SmsConfigValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信配置验证'),
|
||
(197, 'order', '/app/adminapi/validate', '/app/adminapi/validate/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(198, 'StoreOrderValidate.php', '/app/adminapi/validate/order', '/app/adminapi/validate/order/StoreOrderValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单验证'),
|
||
(199, 'product', '/app/adminapi/validate', '/app/adminapi/validate/product', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(200, 'StoreProductReplyValidate.php', '/app/adminapi/validate/product', '/app/adminapi/validate/product/StoreProductReplyValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评论'),
|
||
(201, 'serve', '/app/adminapi/validate', '/app/adminapi/validate/serve', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通'),
|
||
(202, 'ExpressValidata.php', '/app/adminapi/validate/serve', '/app/adminapi/validate/serve/ExpressValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流公司'),
|
||
(203, 'MealValidata.php', '/app/adminapi/validate/serve', '/app/adminapi/validate/serve/MealValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '扫码支付验证'),
|
||
(204, 'ServeValidata.php', '/app/adminapi/validate/serve', '/app/adminapi/validate/serve/ServeValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通登录验证'),
|
||
(205, 'service', '/app/adminapi/validate', '/app/adminapi/validate/service', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(206, 'StoreServiceSpeechcraftValidata.php', '/app/adminapi/validate/service', '/app/adminapi/validate/service/StoreServiceSpeechcraftValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服话术'),
|
||
(207, 'setting', '/app/adminapi/validate', '/app/adminapi/validate/setting', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '设置'),
|
||
(208, 'ShippingTemplatesValidate.php', '/app/adminapi/validate/setting', '/app/adminapi/validate/setting/ShippingTemplatesValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(209, 'SystemAdminValidata.php', '/app/adminapi/validate/setting', '/app/adminapi/validate/setting/SystemAdminValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员'),
|
||
(210, 'SystemCityValidate.php', '/app/adminapi/validate/setting', '/app/adminapi/validate/setting/SystemCityValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '城市数据'),
|
||
(211, 'SystemConfigValidata.php', '/app/adminapi/validate/setting', '/app/adminapi/validate/setting/SystemConfigValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置验证'),
|
||
(212, 'SystemMenusValidate.php', '/app/adminapi/validate/setting', '/app/adminapi/validate/setting/SystemMenusValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '菜单验证'),
|
||
(213, 'user', '/app/adminapi/validate', '/app/adminapi/validate/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(214, 'UserLabeCateValidata.php', '/app/adminapi/validate/user', '/app/adminapi/validate/user/UserLabeCateValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类'),
|
||
(215, 'UserValidata.php', '/app/adminapi/validate/user', '/app/adminapi/validate/user/UserValidata.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(216, 'api', '/app', '/app/api', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '前台接口'),
|
||
(217, 'ApiExceptionHandle.php', '/app/api', '/app/api/ApiExceptionHandle.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '异常捕获处理'),
|
||
(218, 'common.php', '/app/api', '/app/api/common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共函数存放'),
|
||
(219, 'config', '/app/api', '/app/api/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(220, 'route.php', '/app/api/config', '/app/api/config/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(221, 'controller', '/app/api', '/app/api/controller', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '控制器'),
|
||
(222, 'pc', '/app/api/controller', '/app/api/controller/pc', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC控制器'),
|
||
(223, 'CartController.php', '/app/api/controller/pc', '/app/api/controller/pc/CartController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车控制器'),
|
||
(224, 'HomeController.php', '/app/api/controller/pc', '/app/api/controller/pc/HomeController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '主页控制器'),
|
||
(225, 'LoginController.php', '/app/api/controller/pc', '/app/api/controller/pc/LoginController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录控制器'),
|
||
(226, 'OrderController.php', '/app/api/controller/pc', '/app/api/controller/pc/OrderController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单控制器'),
|
||
(227, 'ProductController.php', '/app/api/controller/pc', '/app/api/controller/pc/ProductController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品控制器'),
|
||
(228, 'PublicController.php', '/app/api/controller/pc', '/app/api/controller/pc/PublicController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共控制器'),
|
||
(229, 'UserController.php', '/app/api/controller/pc', '/app/api/controller/pc/UserController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户控制器'),
|
||
(230, 'v1', '/app/api/controller', '/app/api/controller/v1', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'v1版本控制器'),
|
||
(231, 'CrontabController.php', '/app/api/controller/v1', '/app/api/controller/v1/CrontabController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(232, 'LoginController.php', '/app/api/controller/v1', '/app/api/controller/v1/LoginController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录'),
|
||
(233, 'PayController.php', '/app/api/controller/v1', '/app/api/controller/v1/PayController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '支付回调'),
|
||
(234, 'PublicController.php', '/app/api/controller/v1', '/app/api/controller/v1/PublicController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '开发接口'),
|
||
(235, 'activity', '/app/api/controller/v1', '/app/api/controller/v1/activity', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '营销活动'),
|
||
(236, 'StoreAdvanceController.php', '/app/api/controller/v1/activity', '/app/api/controller/v1/activity/StoreAdvanceController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售控制器'),
|
||
(237, 'StoreBargainController.php', '/app/api/controller/v1/activity', '/app/api/controller/v1/activity/StoreBargainController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价控制器'),
|
||
(238, 'StoreCombinationController.php', '/app/api/controller/v1/activity', '/app/api/controller/v1/activity/StoreCombinationController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团控制器'),
|
||
(239, 'StoreIntegralController.php', '/app/api/controller/v1/activity', '/app/api/controller/v1/activity/StoreIntegralController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分控制器'),
|
||
(240, 'StoreSeckillController.php', '/app/api/controller/v1/activity', '/app/api/controller/v1/activity/StoreSeckillController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀控制器'),
|
||
(241, 'admin', '/app/api/controller/v1', '/app/api/controller/v1/admin', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '前台管理'),
|
||
(242, 'StoreOrderController.php', '/app/api/controller/v1/admin', '/app/api/controller/v1/admin/StoreOrderController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '前台订单管理控制器'),
|
||
(243, 'order', '/app/api/controller/v1', '/app/api/controller/v1/order', 'dir', '2023-04-28 10:38:19', '2023-04-28 10:38:19', '订单'),
|
||
(244, 'OtherOrderController.php', '/app/api/controller/v1/order', '/app/api/controller/v1/order/OtherOrderController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单控制器'),
|
||
(245, 'StoreIntegralOrderController.php', '/app/api/controller/v1/order', '/app/api/controller/v1/order/StoreIntegralOrderController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单控制器'),
|
||
(246, 'StoreOrderController.php', '/app/api/controller/v1/order', '/app/api/controller/v1/order/StoreOrderController.php', 'file', '2023-04-28 10:38:19', '2023-04-28 10:38:19', '订单控制器'),
|
||
(247, 'StoreOrderRefundController.php', '/app/api/controller/v1/order', '/app/api/controller/v1/order/StoreOrderRefundController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后控制器'),
|
||
(248, 'publics', '/app/api/controller/v1', '/app/api/controller/v1/publics', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公用接口'),
|
||
(249, 'ArticleCategoryController.php', '/app/api/controller/v1/publics', '/app/api/controller/v1/publics/ArticleCategoryController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章分类控制器'),
|
||
(250, 'ArticleController.php', '/app/api/controller/v1/publics', '/app/api/controller/v1/publics/ArticleController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章控制器'),
|
||
(251, 'store', '/app/api/controller/v1', '/app/api/controller/v1/store', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品相关'),
|
||
(252, 'CategoryController.php', '/app/api/controller/v1/store', '/app/api/controller/v1/store/CategoryController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类控制器'),
|
||
(253, 'StoreCartController.php', '/app/api/controller/v1/store', '/app/api/controller/v1/store/StoreCartController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车控制器'),
|
||
(254, 'StoreCouponsController.php', '/app/api/controller/v1/store', '/app/api/controller/v1/store/StoreCouponsController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券控制器'),
|
||
(255, 'StoreProductController.php', '/app/api/controller/v1/store', '/app/api/controller/v1/store/StoreProductController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品控制器'),
|
||
(256, 'user', '/app/api/controller/v1', '/app/api/controller/v1/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(257, 'DivisionController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/DivisionController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '申请代理商'),
|
||
(258, 'MemberCardController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/MemberCardController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '付费会员控制器'),
|
||
(259, 'MessageSystemController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/MessageSystemController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信控制器'),
|
||
(260, 'StoreService.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/StoreService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服控制器'),
|
||
(261, 'UserAddressController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserAddressController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户地址控制器'),
|
||
(262, 'UserBillController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserBillController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户操作记录控制器'),
|
||
(263, 'UserBrokerageController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserBrokerageController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣控制器'),
|
||
(264, 'UserCollectController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserCollectController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户收藏控制器'),
|
||
(265, 'UserController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户控制器'),
|
||
(266, 'UserExtractController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserExtractController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户提现控制器'),
|
||
(267, 'UserLevelController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserLevelController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级控制器'),
|
||
(268, 'UserRechargeController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserRechargeController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户充值控制器'),
|
||
(269, 'UserSignController.php', '/app/api/controller/v1/user', '/app/api/controller/v1/user/UserSignController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户签到控制器'),
|
||
(270, 'wechat', '/app/api/controller/v1', '/app/api/controller/v1/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信'),
|
||
(271, 'AuthController.php', '/app/api/controller/v1/wechat', '/app/api/controller/v1/wechat/AuthController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序登控制器'),
|
||
(272, 'WechatController.php', '/app/api/controller/v1/wechat', '/app/api/controller/v1/wechat/WechatController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信控制器'),
|
||
(273, 'v2', '/app/api/controller', '/app/api/controller/v2', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'v2版本控制器'),
|
||
(274, 'PublicController.php', '/app/api/controller/v2', '/app/api/controller/v2/PublicController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共控制器'),
|
||
(275, 'activity', '/app/api/controller/v2', '/app/api/controller/v2/activity', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '营销'),
|
||
(276, 'LuckLotteryController.php', '/app/api/controller/v2/activity', '/app/api/controller/v2/activity/LuckLotteryController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖控制器'),
|
||
(277, 'agent', '/app/api/controller/v2', '/app/api/controller/v2/agent', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(278, 'AgentLevel.php', '/app/api/controller/v2/agent', '/app/api/controller/v2/agent/AgentLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级'),
|
||
(279, 'order', '/app/api/controller/v2', '/app/api/controller/v2/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(280, 'StoreOrderInvoiceController.php', '/app/api/controller/v2/order', '/app/api/controller/v2/order/StoreOrderInvoiceController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单发票控制器'),
|
||
(281, 'store', '/app/api/controller/v2', '/app/api/controller/v2/store', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(282, 'StoreCartController.php', '/app/api/controller/v2/store', '/app/api/controller/v2/store/StoreCartController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车控制器'),
|
||
(283, 'StoreCouponsController.php', '/app/api/controller/v2/store', '/app/api/controller/v2/store/StoreCouponsController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券控制器'),
|
||
(284, 'StoreProductController.php', '/app/api/controller/v2/store', '/app/api/controller/v2/store/StoreProductController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品控制器'),
|
||
(285, 'user', '/app/api/controller/v2', '/app/api/controller/v2/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(286, 'StoreService.php', '/app/api/controller/v2/user', '/app/api/controller/v2/user/StoreService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服控制器'),
|
||
(287, 'UserInvoiceController.php', '/app/api/controller/v2/user', '/app/api/controller/v2/user/UserInvoiceController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '发票控制器'),
|
||
(288, 'UserSearchController.php', '/app/api/controller/v2/user', '/app/api/controller/v2/user/UserSearchController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户搜索控制器'),
|
||
(289, 'wechat', '/app/api/controller/v2', '/app/api/controller/v2/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信'),
|
||
(290, 'AuthController.php', '/app/api/controller/v2/wechat', '/app/api/controller/v2/wechat/AuthController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序控制器'),
|
||
(291, 'WechatController.php', '/app/api/controller/v2/wechat', '/app/api/controller/v2/wechat/WechatController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信控制器'),
|
||
(292, 'event.php', '/app/api', '/app/api/event.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事件配置'),
|
||
(293, 'filetree.txt', '/app/api', '/app/api/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(294, 'middleware', '/app/api', '/app/api/middleware', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件'),
|
||
(295, 'AuthTokenMiddleware.php', '/app/api/middleware', '/app/api/middleware/AuthTokenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(296, 'BlockerMiddleware.php', '/app/api/middleware', '/app/api/middleware/BlockerMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(297, 'CustomerMiddleware.php', '/app/api/middleware', '/app/api/middleware/CustomerMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(298, 'StationOpenMiddleware.php', '/app/api/middleware', '/app/api/middleware/StationOpenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(299, 'provider.php', '/app/api', '/app/api/provider.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '服务注册'),
|
||
(300, 'route', '/app/api', '/app/api/route', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由'),
|
||
(301, 'pc.php', '/app/api/route', '/app/api/route/pc.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(302, 'v1.php', '/app/api/route', '/app/api/route/v1.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(303, 'v2.php', '/app/api/route', '/app/api/route/v2.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(304, 'validate', '/app/api', '/app/api/validate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '数据验证'),
|
||
(305, 'user', '/app/api/validate', '/app/api/validate/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(306, 'AddressValidate.php', '/app/api/validate/user', '/app/api/validate/user/AddressValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(307, 'RegisterValidates.php', '/app/api/validate/user', '/app/api/validate/user/RegisterValidates.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(308, 'StoreServiceFeedbackValidate.php', '/app/api/validate/user', '/app/api/validate/user/StoreServiceFeedbackValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(309, 'build.php', '/app', '/app/build.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '生成文件配置'),
|
||
(310, 'common.php', '/app', '/app/common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共方法'),
|
||
(311, 'dao', '/app', '/app/dao', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'dao层'),
|
||
(312, 'BaseDao.php', '/app/dao', '/app/dao/BaseDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '基础dao类'),
|
||
(313, 'activity', '/app/dao', '/app/dao/activity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '营销'),
|
||
(314, 'advance', '/app/dao/activity', '/app/dao/activity/advance', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售'),
|
||
(315, 'StoreAdvanceDao.php', '/app/dao/activity/advance', '/app/dao/activity/advance/StoreAdvanceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售'),
|
||
(316, 'bargain', '/app/dao/activity', '/app/dao/activity/bargain', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价'),
|
||
(317, 'StoreBargainDao.php', '/app/dao/activity/bargain', '/app/dao/activity/bargain/StoreBargainDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价'),
|
||
(318, 'StoreBargainUserDao.php', '/app/dao/activity/bargain', '/app/dao/activity/bargain/StoreBargainUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价用户记录'),
|
||
(319, 'StoreBargainUserHelpDao.php', '/app/dao/activity/bargain', '/app/dao/activity/bargain/StoreBargainUserHelpDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '帮砍用户记录'),
|
||
(320, 'combination', '/app/dao/activity', '/app/dao/activity/combination', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团'),
|
||
(321, 'StoreCombinationDao.php', '/app/dao/activity/combination', '/app/dao/activity/combination/StoreCombinationDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团商品'),
|
||
(322, 'StorePinkDao.php', '/app/dao/activity/combination', '/app/dao/activity/combination/StorePinkDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团团记录'),
|
||
(323, 'coupon', '/app/dao/activity', '/app/dao/activity/coupon', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券'),
|
||
(324, 'StoreCouponDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券'),
|
||
(325, 'StoreCouponIssueDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponIssueDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券发布'),
|
||
(326, 'StoreCouponIssueUserDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponIssueUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券用户领取'),
|
||
(327, 'StoreCouponProductDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponProductDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品优惠券'),
|
||
(328, 'StoreCouponUserCouponDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponUserCouponDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券和优惠券领取关联'),
|
||
(329, 'StoreCouponUserDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券领取'),
|
||
(330, 'StoreCouponUserUserDao.php', '/app/dao/activity/coupon', '/app/dao/activity/coupon/StoreCouponUserUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券领取和用户关联'),
|
||
(331, 'integral', '/app/dao/activity', '/app/dao/activity/integral', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分'),
|
||
(332, 'StoreIntegralDao.php', '/app/dao/activity/integral', '/app/dao/activity/integral/StoreIntegralDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分商品'),
|
||
(333, 'StoreIntegralOrderDao.php', '/app/dao/activity/integral', '/app/dao/activity/integral/StoreIntegralOrderDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单'),
|
||
(334, 'StoreIntegralOrderStatusDao.php', '/app/dao/activity/integral', '/app/dao/activity/integral/StoreIntegralOrderStatusDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单状态'),
|
||
(335, 'live', '/app/dao/activity', '/app/dao/activity/live', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播'),
|
||
(336, 'LiveAnchorDao.php', '/app/dao/activity/live', '/app/dao/activity/live/LiveAnchorDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播主播'),
|
||
(337, 'LiveGoodsDao.php', '/app/dao/activity/live', '/app/dao/activity/live/LiveGoodsDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播商品'),
|
||
(338, 'LiveRoomDao.php', '/app/dao/activity/live', '/app/dao/activity/live/LiveRoomDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播房间'),
|
||
(339, 'LiveRoomGoodsDao.php', '/app/dao/activity/live', '/app/dao/activity/live/LiveRoomGoodsDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播房间商品'),
|
||
(340, 'lottery', '/app/dao/activity', '/app/dao/activity/lottery', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖'),
|
||
(341, 'LuckLotteryDao.php', '/app/dao/activity/lottery', '/app/dao/activity/lottery/LuckLotteryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖设置'),
|
||
(342, 'LuckLotteryRecordDao.php', '/app/dao/activity/lottery', '/app/dao/activity/lottery/LuckLotteryRecordDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖记录'),
|
||
(343, 'LuckPrizeDao.php', '/app/dao/activity/lottery', '/app/dao/activity/lottery/LuckPrizeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖设置详情'),
|
||
(344, 'seckill', '/app/dao/activity', '/app/dao/activity/seckill', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀'),
|
||
(345, 'StoreSeckillDao.php', '/app/dao/activity/seckill', '/app/dao/activity/seckill/StoreSeckillDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀商品'),
|
||
(346, 'agent', '/app/dao', '/app/dao/agent', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(347, 'AgentLevelDao.php', '/app/dao/agent', '/app/dao/agent/AgentLevelDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级'),
|
||
(348, 'AgentLevelTaskDao.php', '/app/dao/agent', '/app/dao/agent/AgentLevelTaskDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务'),
|
||
(349, 'AgentLevelTaskRecordDao.php', '/app/dao/agent', '/app/dao/agent/AgentLevelTaskRecordDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务记录'),
|
||
(350, 'DivisionAgentApplyDao.php', '/app/dao/agent', '/app/dao/agent/DivisionAgentApplyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '代理商申请'),
|
||
(351, 'article', '/app/dao', '/app/dao/article', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(352, 'ArticleCategoryDao.php', '/app/dao/article', '/app/dao/article/ArticleCategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章分类'),
|
||
(353, 'ArticleContentDao.php', '/app/dao/article', '/app/dao/article/ArticleContentDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章内容'),
|
||
(354, 'ArticleDao.php', '/app/dao/article', '/app/dao/article/ArticleDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(355, 'diy', '/app/dao', '/app/dao/diy', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(356, 'DiyDao.php', '/app/dao/diy', '/app/dao/diy/DiyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(357, 'PageCategoryDao.php', '/app/dao/diy', '/app/dao/diy/PageCategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '页面分类'),
|
||
(358, 'PageLinkDao.php', '/app/dao/diy', '/app/dao/diy/PageLinkDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '页面连接'),
|
||
(359, 'filetree.txt', '/app/dao', '/app/dao/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(360, 'order', '/app/dao', '/app/dao/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(361, 'DeliveryServiceDao.php', '/app/dao/order', '/app/dao/order/DeliveryServiceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配送员'),
|
||
(362, 'OtherOrderDao.php', '/app/dao/order', '/app/dao/order/OtherOrderDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单'),
|
||
(363, 'OtherOrderStatusDao.php', '/app/dao/order', '/app/dao/order/OtherOrderStatusDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单状态'),
|
||
(364, 'StoreCartDao.php', '/app/dao/order', '/app/dao/order/StoreCartDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车'),
|
||
(365, 'StoreOrderCartInfoDao.php', '/app/dao/order', '/app/dao/order/StoreOrderCartInfoDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车详情'),
|
||
(366, 'StoreOrderDao.php', '/app/dao/order', '/app/dao/order/StoreOrderDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(367, 'StoreOrderEconomizeDao.php', '/app/dao/order', '/app/dao/order/StoreOrderEconomizeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '计算节省金额'),
|
||
(368, 'StoreOrderInvoiceDao.php', '/app/dao/order', '/app/dao/order/StoreOrderInvoiceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '发票'),
|
||
(369, 'StoreOrderRefundDao.php', '/app/dao/order', '/app/dao/order/StoreOrderRefundDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后订单'),
|
||
(370, 'StoreOrderStatusDao.php', '/app/dao/order', '/app/dao/order/StoreOrderStatusDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单状态'),
|
||
(371, 'StoreOrderStoreOrderCartInfoDao.php', '/app/dao/order', '/app/dao/order/StoreOrderStoreOrderCartInfoDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单和购物车订单详情关联'),
|
||
(372, 'StoreOrderStoreOrderStatusDao.php', '/app/dao/order', '/app/dao/order/StoreOrderStoreOrderStatusDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单和订单状态关联'),
|
||
(373, 'other', '/app/dao', '/app/dao/other', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他'),
|
||
(374, 'AgreementDao.php', '/app/dao/other', '/app/dao/other/AgreementDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '协议'),
|
||
(375, 'AuxiliaryDao.php', '/app/dao/other', '/app/dao/other/AuxiliaryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '辅助'),
|
||
(376, 'CacheDao.php', '/app/dao/other', '/app/dao/other/CacheDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '缓存'),
|
||
(377, 'CategoryDao.php', '/app/dao/other', '/app/dao/other/CategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分类'),
|
||
(378, 'QrcodeDao.php', '/app/dao/other', '/app/dao/other/QrcodeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '二维码'),
|
||
(379, 'TemplateMessageDao.php', '/app/dao/other', '/app/dao/other/TemplateMessageDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '模板消息'),
|
||
(380, 'out', '/app/dao', '/app/dao/out', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口'),
|
||
(381, 'OutAccountDao.php', '/app/dao/out', '/app/dao/out/OutAccountDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口账号'),
|
||
(382, 'OutInterfaceDao.php', '/app/dao/out', '/app/dao/out/OutInterfaceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口权限'),
|
||
(383, 'product', '/app/dao', '/app/dao/product', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '商品'),
|
||
(384, 'product', '/app/dao/product', '/app/dao/product/product', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(385, 'StoreCategoryDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreCategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类'),
|
||
(386, 'StoreDescriptionDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreDescriptionDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品详情'),
|
||
(387, 'StoreProductCateDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductCateDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类'),
|
||
(388, 'StoreProductCouponDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductCouponDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品关联优惠券'),
|
||
(389, 'StoreProductDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(390, 'StoreProductLogDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductLogDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品访问日志'),
|
||
(391, 'StoreProductRelationDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductRelationDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品辅助'),
|
||
(392, 'StoreProductReplyDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductReplyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评论'),
|
||
(393, 'StoreProductReplyStoreProductDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductReplyStoreProductDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评论和商品关联'),
|
||
(394, 'StoreProductVisitDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreProductVisitDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品和商品访问记录'),
|
||
(395, 'StoreVisitDao.php', '/app/dao/product/product', '/app/dao/product/product/StoreVisitDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品访问记录'),
|
||
(396, 'sku', '/app/dao/product', '/app/dao/product/sku', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU'),
|
||
(397, 'StoreProductAttrDao.php', '/app/dao/product/sku', '/app/dao/product/sku/StoreProductAttrDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品sku'),
|
||
(398, 'StoreProductAttrResultDao.php', '/app/dao/product/sku', '/app/dao/product/sku/StoreProductAttrResultDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品规格'),
|
||
(399, 'StoreProductAttrValueDao.php', '/app/dao/product/sku', '/app/dao/product/sku/StoreProductAttrValueDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品规格详情'),
|
||
(400, 'StoreProductRuleDao.php', '/app/dao/product/sku', '/app/dao/product/sku/StoreProductRuleDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品规格模板'),
|
||
(401, 'StoreProductVirtualDao.php', '/app/dao/product/sku', '/app/dao/product/sku/StoreProductVirtualDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品虚拟规格'),
|
||
(402, 'service', '/app/dao', '/app/dao/service', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(403, 'StoreServiceAuxiliaryDao.php', '/app/dao/service', '/app/dao/service/StoreServiceAuxiliaryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服辅助'),
|
||
(404, 'StoreServiceDao.php', '/app/dao/service', '/app/dao/service/StoreServiceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(405, 'StoreServiceFeedbackDao.php', '/app/dao/service', '/app/dao/service/StoreServiceFeedbackDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服反馈'),
|
||
(406, 'StoreServiceLogDao.php', '/app/dao/service', '/app/dao/service/StoreServiceLogDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服聊天记录'),
|
||
(407, 'StoreServiceRecordDao.php', '/app/dao/service', '/app/dao/service/StoreServiceRecordDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服联系人'),
|
||
(408, 'StoreServiceSpeechcraftDao.php', '/app/dao/service', '/app/dao/service/StoreServiceSpeechcraftDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服话术'),
|
||
(409, 'shipping', '/app/dao', '/app/dao/shipping', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(410, 'ExpressDao.php', '/app/dao/shipping', '/app/dao/shipping/ExpressDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流记录'),
|
||
(411, 'ShippingTemplatesDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(412, 'ShippingTemplatesFreeCityDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesFreeCityDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '包邮和城市配置'),
|
||
(413, 'ShippingTemplatesFreeDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesFreeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '包邮配置'),
|
||
(414, 'ShippingTemplatesNoDeliveryCityDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesNoDeliveryCityDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '不包邮城市邮配置'),
|
||
(415, 'ShippingTemplatesNoDeliveryDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesNoDeliveryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '不包邮配置'),
|
||
(416, 'ShippingTemplatesRegionCityDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesRegionCityDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '根据地区城市板配置运费'),
|
||
(417, 'ShippingTemplatesRegionDao.php', '/app/dao/shipping', '/app/dao/shipping/ShippingTemplatesRegionDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '地区运费配置'),
|
||
(418, 'SystemCityDao.php', '/app/dao/shipping', '/app/dao/shipping/SystemCityDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '城市记录'),
|
||
(419, 'sms', '/app/dao', '/app/dao/sms', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信'),
|
||
(420, 'SmsAdminDao.php', '/app/dao/sms', '/app/dao/sms/SmsAdminDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信管理员'),
|
||
(421, 'SmsRecordDao.php', '/app/dao/sms', '/app/dao/sms/SmsRecordDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信发送记录'),
|
||
(422, 'system', '/app/dao', '/app/dao/system', 'dir', '2023-04-27 10:43:44', '2023-04-27 10:43:44', '系统'),
|
||
(423, 'AppVersionDao.php', '/app/dao/system', '/app/dao/system/AppVersionDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'APP版本管理'),
|
||
(424, 'MessageSystemDao.php', '/app/dao/system', '/app/dao/system/MessageSystemDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信记录'),
|
||
(425, 'SystemCrudDao.php', '/app/dao/system', '/app/dao/system/SystemCrudDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统CRUD生成记录'),
|
||
(426, 'SystemMenusDao.php', '/app/dao/system', '/app/dao/system/SystemMenusDao.php', 'file', '2023-04-27 10:43:44', '2023-04-27 10:43:44', '系统菜单'),
|
||
(427, 'SystemNotificationDao.php', '/app/dao/system', '/app/dao/system/SystemNotificationDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统消息提醒'),
|
||
(428, 'SystemRouteCateDao.php', '/app/dao/system', '/app/dao/system/SystemRouteCateDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统路由分类'),
|
||
(429, 'SystemRouteDao.php', '/app/dao/system', '/app/dao/system/SystemRouteDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统路由'),
|
||
(430, 'SystemUserLevelDao.php', '/app/dao/system', '/app/dao/system/SystemUserLevelDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级'),
|
||
(431, 'admin', '/app/dao/system', '/app/dao/system/admin', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员'),
|
||
(432, 'AdminAuthDao.php', '/app/dao/system/admin', '/app/dao/system/admin/AdminAuthDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员登录'),
|
||
(433, 'SystemAdminDao.php', '/app/dao/system/admin', '/app/dao/system/admin/SystemAdminDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员'),
|
||
(434, 'SystemRoleDao.php', '/app/dao/system/admin', '/app/dao/system/admin/SystemRoleDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '角色'),
|
||
(435, 'attachment', '/app/dao/system', '/app/dao/system/attachment', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件'),
|
||
(436, 'SystemAttachmentCategoryDao.php', '/app/dao/system/attachment', '/app/dao/system/attachment/SystemAttachmentCategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件分类'),
|
||
(437, 'SystemAttachmentDao.php', '/app/dao/system/attachment', '/app/dao/system/attachment/SystemAttachmentDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件'),
|
||
(438, 'config', '/app/dao/system', '/app/dao/system/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(439, 'SystemConfigDao.php', '/app/dao/system/config', '/app/dao/system/config/SystemConfigDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统配置'),
|
||
(440, 'SystemConfigTabDao.php', '/app/dao/system/config', '/app/dao/system/config/SystemConfigTabDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统配置分类'),
|
||
(441, 'SystemGroupDao.php', '/app/dao/system/config', '/app/dao/system/config/SystemGroupDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据配置'),
|
||
(442, 'SystemGroupDataDao.php', '/app/dao/system/config', '/app/dao/system/config/SystemGroupDataDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据详情'),
|
||
(443, 'SystemStorageDao.php', '/app/dao/system/config', '/app/dao/system/config/SystemStorageDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '存储配置'),
|
||
(444, 'crontab', '/app/dao/system', '/app/dao/system/crontab', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(445, 'SystemCrontabDao.php', '/app/dao/system/crontab', '/app/dao/system/crontab/SystemCrontabDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(446, 'lang', '/app/dao/system', '/app/dao/system/lang', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言'),
|
||
(447, 'LangCodeDao.php', '/app/dao/system/lang', '/app/dao/system/lang/LangCodeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言翻译'),
|
||
(448, 'LangCountryDao.php', '/app/dao/system/lang', '/app/dao/system/lang/LangCountryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言国家'),
|
||
(449, 'LangTypeDao.php', '/app/dao/system/lang', '/app/dao/system/lang/LangTypeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言类型'),
|
||
(450, 'log', '/app/dao/system', '/app/dao/system/log', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '日志'),
|
||
(451, 'SystemFileDao.php', '/app/dao/system/log', '/app/dao/system/log/SystemFileDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统文件'),
|
||
(452, 'SystemFileInfoDao.php', '/app/dao/system/log', '/app/dao/system/log/SystemFileInfoDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件详情'),
|
||
(453, 'SystemLogDao.php', '/app/dao/system/log', '/app/dao/system/log/SystemLogDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '系统日志'),
|
||
(454, 'statistics', '/app/dao/system', '/app/dao/system/statistics', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '统计'),
|
||
(455, 'CapitalFlowDao.php', '/app/dao/system/statistics', '/app/dao/system/statistics/CapitalFlowDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '资金流水'),
|
||
(456, 'store', '/app/dao/system', '/app/dao/system/store', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(457, 'SystemStoreDao.php', '/app/dao/system/store', '/app/dao/system/store/SystemStoreDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(458, 'SystemStoreStaffDao.php', '/app/dao/system/store', '/app/dao/system/store/SystemStoreStaffDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店配送员'),
|
||
(459, 'upgrade', '/app/dao/system', '/app/dao/system/upgrade', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '在线更新'),
|
||
(460, 'UpgradeLogDao.php', '/app/dao/system/upgrade', '/app/dao/system/upgrade/UpgradeLogDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '在线更新日志'),
|
||
(461, 'user', '/app/dao', '/app/dao/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(462, 'MemberCardBatchDao.php', '/app/dao/user', '/app/dao/user/MemberCardBatchDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡批量生成记录'),
|
||
(463, 'MemberCardDao.php', '/app/dao/user', '/app/dao/user/MemberCardDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡卡密'),
|
||
(464, 'MemberRightDao.php', '/app/dao/user', '/app/dao/user/MemberRightDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员权益'),
|
||
(465, 'MemberShipDao.php', '/app/dao/user', '/app/dao/user/MemberShipDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡'),
|
||
(466, 'UserAddressDao.php', '/app/dao/user', '/app/dao/user/UserAddressDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户地址'),
|
||
(467, 'UserAuthDao.php', '/app/dao/user', '/app/dao/user/UserAuthDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户登录'),
|
||
(468, 'UserBillDao.php', '/app/dao/user', '/app/dao/user/UserBillDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户记录'),
|
||
(469, 'UserBillStoreOrderDao.php', '/app/dao/user', '/app/dao/user/UserBillStoreOrderDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户记录和用户订单关联'),
|
||
(470, 'UserBrokerageDao.php', '/app/dao/user', '/app/dao/user/UserBrokerageDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户佣金记录'),
|
||
(471, 'UserBrokerageFrozenDao.php', '/app/dao/user', '/app/dao/user/UserBrokerageFrozenDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户佣金到期记录'),
|
||
(472, 'UserCancelDao.php', '/app/dao/user', '/app/dao/user/UserCancelDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户注销'),
|
||
(473, 'UserDao.php', '/app/dao/user', '/app/dao/user/UserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(474, 'UserExtractDao.php', '/app/dao/user', '/app/dao/user/UserExtractDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户提现'),
|
||
(475, 'UserFriendsDao.php', '/app/dao/user', '/app/dao/user/UserFriendsDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户好友关系'),
|
||
(476, 'UserGroupDao.php', '/app/dao/user', '/app/dao/user/UserGroupDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分组'),
|
||
(477, 'UserInvoiceDao.php', '/app/dao/user', '/app/dao/user/UserInvoiceDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户发票'),
|
||
(478, 'UserLabelCateDao.php', '/app/dao/user', '/app/dao/user/UserLabelCateDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类'),
|
||
(479, 'UserLabelDao.php', '/app/dao/user', '/app/dao/user/UserLabelDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签'),
|
||
(480, 'UserLabelRelationDao.php', '/app/dao/user', '/app/dao/user/UserLabelRelationDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签辅助'),
|
||
(481, 'UserLevelDao.php', '/app/dao/user', '/app/dao/user/UserLevelDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级'),
|
||
(482, 'UserMoneyDao.php', '/app/dao/user', '/app/dao/user/UserMoneyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户余额记录'),
|
||
(483, 'UserRechargeDao.php', '/app/dao/user', '/app/dao/user/UserRechargeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户充值'),
|
||
(484, 'UserSearchDao.php', '/app/dao/user', '/app/dao/user/UserSearchDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户搜索'),
|
||
(485, 'UserSignDao.php', '/app/dao/user', '/app/dao/user/UserSignDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户签到'),
|
||
(486, 'UserSpreadDao.php', '/app/dao/user', '/app/dao/user/UserSpreadDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分销记录'),
|
||
(487, 'UserStoreOrderDao.php', '/app/dao/user', '/app/dao/user/UserStoreOrderDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户和订单关联'),
|
||
(488, 'UserUserBillDao.php', '/app/dao/user', '/app/dao/user/UserUserBillDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户和用户记录关联'),
|
||
(489, 'UserUserBrokerageDao.php', '/app/dao/user', '/app/dao/user/UserUserBrokerageDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣'),
|
||
(490, 'UserVisitDao.php', '/app/dao/user', '/app/dao/user/UserVisitDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户记录'),
|
||
(491, 'UserWechatUserDao.php', '/app/dao/user', '/app/dao/user/UserWechatUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户和微信用户关联'),
|
||
(492, 'wechat', '/app/dao', '/app/dao/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信'),
|
||
(493, 'WechatKeyDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatKeyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信关键字'),
|
||
(494, 'WechatMediaDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatMediaDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信附件管理'),
|
||
(495, 'WechatMenuDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatMenuDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信菜单'),
|
||
(496, 'WechatMessageDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatMessageDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信消息'),
|
||
(497, 'WechatNewsCategoryDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatNewsCategoryDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信图文分类'),
|
||
(498, 'WechatQrcodeCateDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatQrcodeCateDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '渠道码分类'),
|
||
(499, 'WechatQrcodeDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatQrcodeDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '渠道码'),
|
||
(500, 'WechatQrcodeRecordDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatQrcodeRecordDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '渠道码回复'),
|
||
(501, 'WechatReplyDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatReplyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信关键字回复'),
|
||
(502, 'WechatReplyKeyDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatReplyKeyDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信关键字'),
|
||
(503, 'WechatUserDao.php', '/app/dao/wechat', '/app/dao/wechat/WechatUserDao.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信用户'),
|
||
(504, 'event.php', '/app', '/app/event.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事件存放'),
|
||
(505, 'filetree.txt', '/app', '/app/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(506, 'http', '/app', '/app/http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '中间层存放'),
|
||
(507, 'middleware', '/app/http', '/app/http/middleware', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件'),
|
||
(508, 'AllowOriginMiddleware.php', '/app/http/middleware', '/app/http/middleware/AllowOriginMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '跨域中间件'),
|
||
(509, 'BaseMiddleware.php', '/app/http/middleware', '/app/http/middleware/BaseMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'base中间件'),
|
||
(510, 'jobs', '/app', '/app/jobs', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '队列'),
|
||
(511, 'AgentJob.php', '/app/jobs', '/app/jobs/AgentJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '检测分销队列'),
|
||
(512, 'AutoCommentJob.php', '/app/jobs', '/app/jobs/AutoCommentJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '自评队列'),
|
||
(513, 'CheckQueueJob.php', '/app/jobs', '/app/jobs/CheckQueueJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '检测队列是否启动'),
|
||
(514, 'LiveJob.php', '/app/jobs', '/app/jobs/LiveJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播队列'),
|
||
(515, 'OrderCreateAfterJob.php', '/app/jobs', '/app/jobs/OrderCreateAfterJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单创建队列'),
|
||
(516, 'OrderJob.php', '/app/jobs', '/app/jobs/OrderJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单队列'),
|
||
(517, 'OtherOrderJob.php', '/app/jobs', '/app/jobs/OtherOrderJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单相关操作队列'),
|
||
(518, 'OutPushJob.php', '/app/jobs', '/app/jobs/OutPushJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口推送队列'),
|
||
(519, 'PinkJob.php', '/app/jobs', '/app/jobs/PinkJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团队列'),
|
||
(520, 'PosterJob.php', '/app/jobs', '/app/jobs/PosterJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '海报队列'),
|
||
(521, 'ProductCopyJob.php', '/app/jobs', '/app/jobs/ProductCopyJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '复制商品队列'),
|
||
(522, 'ProductLogJob.php', '/app/jobs', '/app/jobs/ProductLogJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品访问队列'),
|
||
(523, 'ProductStockJob.php', '/app/jobs', '/app/jobs/ProductStockJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品库存队列'),
|
||
(524, 'RefundOrderJob.php', '/app/jobs', '/app/jobs/RefundOrderJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '退款商品队列'),
|
||
(525, 'TakeOrderJob.php', '/app/jobs', '/app/jobs/TakeOrderJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '自动收货消息队列'),
|
||
(526, 'TaskJob.php', '/app/jobs', '/app/jobs/TaskJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '清除海报队列'),
|
||
(527, 'TemplateJob.php', '/app/jobs', '/app/jobs/TemplateJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '模板消息队列'),
|
||
(528, 'UnpaidOrderCancelJob.php', '/app/jobs', '/app/jobs/UnpaidOrderCancelJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '未支付订单到期取消队列'),
|
||
(529, 'UnpaidOrderSend.php', '/app/jobs', '/app/jobs/UnpaidOrderSend.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '未支付10分钟后发送短信队列'),
|
||
(530, 'UpgradeJob.php', '/app/jobs', '/app/jobs/UpgradeJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '升级包下载队列'),
|
||
(531, 'UserJob.php', '/app/jobs', '/app/jobs/UserJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户队列'),
|
||
(532, 'filetree.txt', '/app/jobs', '/app/jobs/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(533, 'notice', '/app/jobs', '/app/jobs/notice', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息提醒'),
|
||
(534, 'EnterpriseWechatJob.php', '/app/jobs/notice', '/app/jobs/notice/EnterpriseWechatJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '企业微信群发队列'),
|
||
(535, 'PrintJob.php', '/app/jobs/notice', '/app/jobs/notice/PrintJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '下票打印队列'),
|
||
(536, 'SmsJob.php', '/app/jobs/notice', '/app/jobs/notice/SmsJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信发送队列'),
|
||
(537, 'SyncMessageJob.php', '/app/jobs/notice', '/app/jobs/notice/SyncMessageJob.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '同步小程序订阅消息队列'),
|
||
(538, 'kefuapi', '/app', '/app/kefuapi', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服接口'),
|
||
(539, 'KefuApiExceptionHandle.php', '/app/kefuapi', '/app/kefuapi/KefuApiExceptionHandle.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '错误处理'),
|
||
(540, 'config', '/app/kefuapi', '/app/kefuapi/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(541, 'route.php', '/app/kefuapi/config', '/app/kefuapi/config/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(542, 'controller', '/app/kefuapi', '/app/kefuapi/controller', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '控制器'),
|
||
(543, 'AuthController.php', '/app/kefuapi/controller', '/app/kefuapi/controller/AuthController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '授权控制器'),
|
||
(544, 'Common.php', '/app/kefuapi/controller', '/app/kefuapi/controller/Common.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共控制器'),
|
||
(545, 'Login.php', '/app/kefuapi/controller', '/app/kefuapi/controller/Login.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录控制器'),
|
||
(546, 'Order.php', '/app/kefuapi/controller', '/app/kefuapi/controller/Order.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单控制器'),
|
||
(547, 'Product.php', '/app/kefuapi/controller', '/app/kefuapi/controller/Product.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品控制器'),
|
||
(548, 'Service.php', '/app/kefuapi/controller', '/app/kefuapi/controller/Service.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服控制器'),
|
||
(549, 'User.php', '/app/kefuapi/controller', '/app/kefuapi/controller/User.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户控制器'),
|
||
(550, 'middleware', '/app/kefuapi', '/app/kefuapi/middleware', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件'),
|
||
(551, 'KefuAuthTokenMiddleware.php', '/app/kefuapi/middleware', '/app/kefuapi/middleware/KefuAuthTokenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服授权中间件'),
|
||
(552, 'provider.php', '/app/kefuapi', '/app/kefuapi/provider.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '容器配置'),
|
||
(553, 'route', '/app/kefuapi', '/app/kefuapi/route', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由'),
|
||
(554, 'route.php', '/app/kefuapi/route', '/app/kefuapi/route/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(555, 'validate', '/app/kefuapi', '/app/kefuapi/validate', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据验证'),
|
||
(556, 'LoginValidate.php', '/app/kefuapi/validate', '/app/kefuapi/validate/LoginValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录验证'),
|
||
(557, 'SpeechcraftValidate.php', '/app/kefuapi/validate', '/app/kefuapi/validate/SpeechcraftValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '话术验证'),
|
||
(558, 'lang', '/app', '/app/lang', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '语言存放'),
|
||
(559, 'en_us.php', '/app/lang', '/app/lang/en_us.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(560, 'zh_cn.php', '/app/lang', '/app/lang/zh_cn.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(561, 'listener', '/app', '/app/listener', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事件'),
|
||
(562, 'admin', '/app/listener', '/app/listener/admin', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '后台相关事件'),
|
||
(563, 'AdminLoginListener.php', '/app/listener/admin', '/app/listener/admin/AdminLoginListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员登录事件'),
|
||
(564, 'crontab', '/app/listener', '/app/listener/crontab', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务事件'),
|
||
(565, 'SystemCrontabListener.php', '/app/listener/crontab', '/app/listener/crontab/SystemCrontabListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务执行事件'),
|
||
(566, 'filetree.txt', '/app/listener', '/app/listener/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(567, 'http', '/app/listener', '/app/listener/http', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '请求事件'),
|
||
(568, 'HttpEndListener.php', '/app/listener/http', '/app/listener/http/HttpEndListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '请求日志记录事件'),
|
||
(569, 'notice', '/app/listener', '/app/listener/notice', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息推送事件'),
|
||
(570, 'NoticeListener.php', '/app/listener/notice', '/app/listener/notice/NoticeListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息发送时间'),
|
||
(571, 'order', '/app/listener', '/app/listener/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单事件'),
|
||
(572, 'OrderCreateAfterListener.php', '/app/listener/order', '/app/listener/order/OrderCreateAfterListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单创建之后事件'),
|
||
(573, 'OrderDeliveryListener.php', '/app/listener/order', '/app/listener/order/OrderDeliveryListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单配送事件'),
|
||
(574, 'OrderPaySuccessListener.php', '/app/listener/order', '/app/listener/order/OrderPaySuccessListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单支付成功事件'),
|
||
(575, 'OrderRefundCancelAfterListener.php', '/app/listener/order', '/app/listener/order/OrderRefundCancelAfterListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后单取消事件'),
|
||
(576, 'OrderRefundCreateAfterListener.php', '/app/listener/order', '/app/listener/order/OrderRefundCreateAfterListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后单生成事件'),
|
||
(577, 'OrderTakeListener.php', '/app/listener/order', '/app/listener/order/OrderTakeListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单确认收货事件'),
|
||
(578, 'out', '/app/listener', '/app/listener/out', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口事件'),
|
||
(579, 'OutPushListener.php', '/app/listener/out', '/app/listener/out/OutPushListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口推送事件'),
|
||
(580, 'pay', '/app/listener', '/app/listener/pay', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '支付事件'),
|
||
(581, 'NotifyListener.php', '/app/listener/pay', '/app/listener/pay/NotifyListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '支付回调事件'),
|
||
(582, 'queue', '/app/listener', '/app/listener/queue', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '批量队列事件'),
|
||
(583, 'QueueStartListener.php', '/app/listener/queue', '/app/listener/queue/QueueStartListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息队列启动提醒事件'),
|
||
(584, 'user', '/app/listener', '/app/listener/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户事件'),
|
||
(585, 'LoginListener.php', '/app/listener/user', '/app/listener/user/LoginListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户登录事件'),
|
||
(586, 'RegisterListener.php', '/app/listener/user', '/app/listener/user/RegisterListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户注册事件'),
|
||
(587, 'UserLevelListener.php', '/app/listener/user', '/app/listener/user/UserLevelListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级事件'),
|
||
(588, 'UserVisitListener.php', '/app/listener/user', '/app/listener/user/UserVisitListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户访问事件'),
|
||
(589, 'wechat', '/app/listener', '/app/listener/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信事件'),
|
||
(590, 'AuthListener.php', '/app/listener/wechat', '/app/listener/wechat/AuthListener.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户授权后置事件'),
|
||
(591, 'middleware.php', '/app', '/app/middleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件配置'),
|
||
(592, 'model', '/app', '/app/model', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '模型'),
|
||
(593, 'activity', '/app/model', '/app/model/activity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '活动'),
|
||
(594, 'advance', '/app/model/activity', '/app/model/activity/advance', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售'),
|
||
(595, 'StoreAdvance.php', '/app/model/activity/advance', '/app/model/activity/advance/StoreAdvance.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售商品表'),
|
||
(596, 'bargain', '/app/model/activity', '/app/model/activity/bargain', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价'),
|
||
(597, 'StoreBargain.php', '/app/model/activity/bargain', '/app/model/activity/bargain/StoreBargain.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价商品表'),
|
||
(598, 'StoreBargainUser.php', '/app/model/activity/bargain', '/app/model/activity/bargain/StoreBargainUser.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '已砍价用户'),
|
||
(599, 'StoreBargainUserHelp.php', '/app/model/activity/bargain', '/app/model/activity/bargain/StoreBargainUserHelp.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价用户帮砍记录'),
|
||
(600, 'combination', '/app/model/activity', '/app/model/activity/combination', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团'),
|
||
(601, 'StoreCombination.php', '/app/model/activity/combination', '/app/model/activity/combination/StoreCombination.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团商品'),
|
||
(602, 'StorePink.php', '/app/model/activity/combination', '/app/model/activity/combination/StorePink.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团团信息'),
|
||
(603, 'coupon', '/app/model/activity', '/app/model/activity/coupon', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券'),
|
||
(604, 'StoreCoupon.php', '/app/model/activity/coupon', '/app/model/activity/coupon/StoreCoupon.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券'),
|
||
(605, 'StoreCouponIssue.php', '/app/model/activity/coupon', '/app/model/activity/coupon/StoreCouponIssue.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券发布'),
|
||
(606, 'StoreCouponIssueUser.php', '/app/model/activity/coupon', '/app/model/activity/coupon/StoreCouponIssueUser.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券领取记录'),
|
||
(607, 'StoreCouponProduct.php', '/app/model/activity/coupon', '/app/model/activity/coupon/StoreCouponProduct.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券商品'),
|
||
(608, 'StoreCouponUser.php', '/app/model/activity/coupon', '/app/model/activity/coupon/StoreCouponUser.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券使用'),
|
||
(609, 'integral', '/app/model/activity', '/app/model/activity/integral', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分'),
|
||
(610, 'StoreIntegral.php', '/app/model/activity/integral', '/app/model/activity/integral/StoreIntegral.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分商品'),
|
||
(611, 'StoreIntegralOrder.php', '/app/model/activity/integral', '/app/model/activity/integral/StoreIntegralOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单'),
|
||
(612, 'StoreIntegralOrderStatus.php', '/app/model/activity/integral', '/app/model/activity/integral/StoreIntegralOrderStatus.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单状态'),
|
||
(613, 'live', '/app/model/activity', '/app/model/activity/live', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播'),
|
||
(614, 'LiveAnchor.php', '/app/model/activity/live', '/app/model/activity/live/LiveAnchor.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播主播'),
|
||
(615, 'LiveGoods.php', '/app/model/activity/live', '/app/model/activity/live/LiveGoods.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播商品'),
|
||
(616, 'LiveRoom.php', '/app/model/activity/live', '/app/model/activity/live/LiveRoom.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播放假'),
|
||
(617, 'LiveRoomGoods.php', '/app/model/activity/live', '/app/model/activity/live/LiveRoomGoods.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播房间商品'),
|
||
(618, 'lottery', '/app/model/activity', '/app/model/activity/lottery', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖'),
|
||
(619, 'LuckLottery.php', '/app/model/activity/lottery', '/app/model/activity/lottery/LuckLottery.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖'),
|
||
(620, 'LuckLotteryRecord.php', '/app/model/activity/lottery', '/app/model/activity/lottery/LuckLotteryRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖记录'),
|
||
(621, 'LuckPrize.php', '/app/model/activity/lottery', '/app/model/activity/lottery/LuckPrize.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖详细信息'),
|
||
(622, 'seckill', '/app/model/activity', '/app/model/activity/seckill', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀'),
|
||
(623, 'StoreSeckill.php', '/app/model/activity/seckill', '/app/model/activity/seckill/StoreSeckill.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀商品'),
|
||
(624, 'agent', '/app/model', '/app/model/agent', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(625, 'AgentLevel.php', '/app/model/agent', '/app/model/agent/AgentLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级'),
|
||
(626, 'AgentLevelTask.php', '/app/model/agent', '/app/model/agent/AgentLevelTask.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务'),
|
||
(627, 'AgentLevelTaskRecord.php', '/app/model/agent', '/app/model/agent/AgentLevelTaskRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务记录'),
|
||
(628, 'DivisionAgentApply.php', '/app/model/agent', '/app/model/agent/DivisionAgentApply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '申请代理商'),
|
||
(629, 'article', '/app/model', '/app/model/article', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(630, 'Article.php', '/app/model/article', '/app/model/article/Article.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(631, 'ArticleCategory.php', '/app/model/article', '/app/model/article/ArticleCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章分类'),
|
||
(632, 'ArticleContent.php', '/app/model/article', '/app/model/article/ArticleContent.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章内容'),
|
||
(633, 'diy', '/app/model', '/app/model/diy', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(634, 'Diy.php', '/app/model/diy', '/app/model/diy/Diy.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(635, 'PageCategory.php', '/app/model/diy', '/app/model/diy/PageCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '页面链接分类'),
|
||
(636, 'PageLink.php', '/app/model/diy', '/app/model/diy/PageLink.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '页面连接'),
|
||
(637, 'filetree.txt', '/app/model', '/app/model/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(638, 'order', '/app/model', '/app/model/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(639, 'DeliveryService.php', '/app/model/order', '/app/model/order/DeliveryService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配送员'),
|
||
(640, 'OtherOrder.php', '/app/model/order', '/app/model/order/OtherOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单'),
|
||
(641, 'OtherOrderStatus.php', '/app/model/order', '/app/model/order/OtherOrderStatus.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单状态'),
|
||
(642, 'StoreCart.php', '/app/model/order', '/app/model/order/StoreCart.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '购物车'),
|
||
(643, 'StoreOrder.php', '/app/model/order', '/app/model/order/StoreOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(644, 'StoreOrderCartInfo.php', '/app/model/order', '/app/model/order/StoreOrderCartInfo.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单购物车详情'),
|
||
(645, 'StoreOrderEconomize.php', '/app/model/order', '/app/model/order/StoreOrderEconomize.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单开支记录'),
|
||
(646, 'StoreOrderInvoice.php', '/app/model/order', '/app/model/order/StoreOrderInvoice.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单发票'),
|
||
(647, 'StoreOrderRefund.php', '/app/model/order', '/app/model/order/StoreOrderRefund.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后订单'),
|
||
(648, 'StoreOrderStatus.php', '/app/model/order', '/app/model/order/StoreOrderStatus.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单状态'),
|
||
(649, 'StorePink.php', '/app/model/order', '/app/model/order/StorePink.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团'),
|
||
(650, 'other', '/app/model', '/app/model/other', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他'),
|
||
(651, 'Agreement.php', '/app/model/other', '/app/model/other/Agreement.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '协议表'),
|
||
(652, 'Auxiliary.php', '/app/model/other', '/app/model/other/Auxiliary.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '辅助表'),
|
||
(653, 'Cache.php', '/app/model/other', '/app/model/other/Cache.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '缓存表'),
|
||
(654, 'Category.php', '/app/model/other', '/app/model/other/Category.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分类表'),
|
||
(655, 'Express.php', '/app/model/other', '/app/model/other/Express.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '快递表'),
|
||
(656, 'Qrcode.php', '/app/model/other', '/app/model/other/Qrcode.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '二维码记录表'),
|
||
(657, 'TemplateMessage.php', '/app/model/other', '/app/model/other/TemplateMessage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '模板消息表'),
|
||
(658, 'out', '/app/model', '/app/model/out', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口'),
|
||
(659, 'OutAccount.php', '/app/model/out', '/app/model/out/OutAccount.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口表'),
|
||
(660, 'OutInterface.php', '/app/model/out', '/app/model/out/OutInterface.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口权限表'),
|
||
(661, 'product', '/app/model', '/app/model/product', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '商品'),
|
||
(662, 'product', '/app/model/product', '/app/model/product/product', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(663, 'StoreCategory.php', '/app/model/product/product', '/app/model/product/product/StoreCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类表'),
|
||
(664, 'StoreDescription.php', '/app/model/product/product', '/app/model/product/product/StoreDescription.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品详情表'),
|
||
(665, 'StoreProduct.php', '/app/model/product/product', '/app/model/product/product/StoreProduct.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品表'),
|
||
(666, 'StoreProductCate.php', '/app/model/product/product', '/app/model/product/product/StoreProductCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类辅助表'),
|
||
(667, 'StoreProductCoupon.php', '/app/model/product/product', '/app/model/product/product/StoreProductCoupon.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品优惠券辅助表'),
|
||
(668, 'StoreProductLog.php', '/app/model/product/product', '/app/model/product/product/StoreProductLog.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品访问日志表'),
|
||
(669, 'StoreProductRelation.php', '/app/model/product/product', '/app/model/product/product/StoreProductRelation.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品辅助表'),
|
||
(670, 'StoreProductReply.php', '/app/model/product/product', '/app/model/product/product/StoreProductReply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评论表'),
|
||
(671, 'StoreVisit.php', '/app/model/product/product', '/app/model/product/product/StoreVisit.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品访问记录表'),
|
||
(672, 'sku', '/app/model/product', '/app/model/product/sku', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU'),
|
||
(673, 'StoreProductAttr.php', '/app/model/product/sku', '/app/model/product/sku/StoreProductAttr.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品属性'),
|
||
(674, 'StoreProductAttrResult.php', '/app/model/product/sku', '/app/model/product/sku/StoreProductAttrResult.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品属性'),
|
||
(675, 'StoreProductAttrValue.php', '/app/model/product/sku', '/app/model/product/sku/StoreProductAttrValue.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品属性详细信息表'),
|
||
(676, 'StoreProductRule.php', '/app/model/product/sku', '/app/model/product/sku/StoreProductRule.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品规则'),
|
||
(677, 'StoreProductVirtual.php', '/app/model/product/sku', '/app/model/product/sku/StoreProductVirtual.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '虚拟商品'),
|
||
(678, 'service', '/app/model', '/app/model/service', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(679, 'StoreService.php', '/app/model/service', '/app/model/service/StoreService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服表'),
|
||
(680, 'StoreServiceFeedback.php', '/app/model/service', '/app/model/service/StoreServiceFeedback.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服反馈表'),
|
||
(681, 'StoreServiceLog.php', '/app/model/service', '/app/model/service/StoreServiceLog.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服聊天记录表'),
|
||
(682, 'StoreServiceRecord.php', '/app/model/service', '/app/model/service/StoreServiceRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服聊天用户表'),
|
||
(683, 'StoreServiceSpeechcraft.php', '/app/model/service', '/app/model/service/StoreServiceSpeechcraft.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服话术表'),
|
||
(684, 'shipping', '/app/model', '/app/model/shipping', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(685, 'ShippingTemplates.php', '/app/model/shipping', '/app/model/shipping/ShippingTemplates.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(686, 'ShippingTemplatesFree.php', '/app/model/shipping', '/app/model/shipping/ShippingTemplatesFree.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板包邮表'),
|
||
(687, 'ShippingTemplatesNoDelivery.php', '/app/model/shipping', '/app/model/shipping/ShippingTemplatesNoDelivery.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板不送达表'),
|
||
(688, 'ShippingTemplatesRegion.php', '/app/model/shipping', '/app/model/shipping/ShippingTemplatesRegion.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板地区'),
|
||
(689, 'SystemCity.php', '/app/model/shipping', '/app/model/shipping/SystemCity.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '城市数据'),
|
||
(690, 'sms', '/app/model', '/app/model/sms', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信'),
|
||
(691, 'SmsRecord.php', '/app/model/sms', '/app/model/sms/SmsRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信记录'),
|
||
(692, 'system', '/app/model', '/app/model/system', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '服务'),
|
||
(693, 'AppVersion.php', '/app/model/system', '/app/model/system/AppVersion.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'app版本管理表'),
|
||
(694, 'MessageSystem.php', '/app/model/system', '/app/model/system/MessageSystem.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信'),
|
||
(695, 'SystemCrud.php', '/app/model/system', '/app/model/system/SystemCrud.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '代码生成表'),
|
||
(696, 'SystemMenus.php', '/app/model/system', '/app/model/system/SystemMenus.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '菜单表'),
|
||
(697, 'SystemNotification.php', '/app/model/system', '/app/model/system/SystemNotification.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '通知表'),
|
||
(698, 'SystemRoute.php', '/app/model/system', '/app/model/system/SystemRoute.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由权限'),
|
||
(699, 'SystemRouteCate.php', '/app/model/system', '/app/model/system/SystemRouteCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '权限分类'),
|
||
(700, 'SystemUserLevel.php', '/app/model/system', '/app/model/system/SystemUserLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级'),
|
||
(701, 'SystemUserTask.php', '/app/model/system', '/app/model/system/SystemUserTask.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级任务'),
|
||
(702, 'admin', '/app/model/system', '/app/model/system/admin', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员'),
|
||
(703, 'SystemAdmin.php', '/app/model/system/admin', '/app/model/system/admin/SystemAdmin.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员表'),
|
||
(704, 'SystemRole.php', '/app/model/system/admin', '/app/model/system/admin/SystemRole.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '角色表'),
|
||
(705, 'attachment', '/app/model/system', '/app/model/system/attachment', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件'),
|
||
(706, 'SystemAttachment.php', '/app/model/system/attachment', '/app/model/system/attachment/SystemAttachment.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件表'),
|
||
(707, 'SystemAttachmentCategory.php', '/app/model/system/attachment', '/app/model/system/attachment/SystemAttachmentCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '附件分类表'),
|
||
(708, 'config', '/app/model/system', '/app/model/system/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(709, 'SystemConfig.php', '/app/model/system/config', '/app/model/system/config/SystemConfig.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置表'),
|
||
(710, 'SystemConfigTab.php', '/app/model/system/config', '/app/model/system/config/SystemConfigTab.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置分类表'),
|
||
(711, 'SystemGroup.php', '/app/model/system/config', '/app/model/system/config/SystemGroup.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '组合数据表'),
|
||
(712, 'SystemGroupData.php', '/app/model/system/config', '/app/model/system/config/SystemGroupData.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '组合数据详情表'),
|
||
(713, 'SystemStorage.php', '/app/model/system/config', '/app/model/system/config/SystemStorage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '云存储表'),
|
||
(714, 'crontab', '/app/model/system', '/app/model/system/crontab', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(715, 'SystemCrontab.php', '/app/model/system/crontab', '/app/model/system/crontab/SystemCrontab.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '定时任务'),
|
||
(716, 'lang', '/app/model/system', '/app/model/system/lang', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言'),
|
||
(717, 'LangCode.php', '/app/model/system/lang', '/app/model/system/lang/LangCode.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言语言表'),
|
||
(718, 'LangCountry.php', '/app/model/system/lang', '/app/model/system/lang/LangCountry.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言国家表'),
|
||
(719, 'LangType.php', '/app/model/system/lang', '/app/model/system/lang/LangType.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '多语言类型表'),
|
||
(720, 'log', '/app/model/system', '/app/model/system/log', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '日志'),
|
||
(721, 'SystemFile.php', '/app/model/system/log', '/app/model/system/log/SystemFile.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件变动表'),
|
||
(722, 'SystemFileInfo.php', '/app/model/system/log', '/app/model/system/log/SystemFileInfo.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文件记录表'),
|
||
(723, 'SystemLog.php', '/app/model/system/log', '/app/model/system/log/SystemLog.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '访问日志表'),
|
||
(724, 'statistics', '/app/model/system', '/app/model/system/statistics', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '统计'),
|
||
(725, 'CapitalFlow.php', '/app/model/system/statistics', '/app/model/system/statistics/CapitalFlow.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '交易表'),
|
||
(726, 'store', '/app/model/system', '/app/model/system/store', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店'),
|
||
(727, 'SystemStore.php', '/app/model/system/store', '/app/model/system/store/SystemStore.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '门店表'),
|
||
(728, 'SystemStoreStaff.php', '/app/model/system/store', '/app/model/system/store/SystemStoreStaff.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '店员表'),
|
||
(729, 'upgrade', '/app/model/system', '/app/model/system/upgrade', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '在线更新'),
|
||
(730, 'UpgradeLog.php', '/app/model/system/upgrade', '/app/model/system/upgrade/UpgradeLog.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '升级日志表'),
|
||
(731, 'user', '/app/model', '/app/model/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(732, 'MemberCard.php', '/app/model/user', '/app/model/user/MemberCard.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡表'),
|
||
(733, 'MemberCardBatch.php', '/app/model/user', '/app/model/user/MemberCardBatch.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '批量会员卡表'),
|
||
(734, 'MemberRight.php', '/app/model/user', '/app/model/user/MemberRight.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡权益'),
|
||
(735, 'MemberShip.php', '/app/model/user', '/app/model/user/MemberShip.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡类型表'),
|
||
(736, 'User.php', '/app/model/user', '/app/model/user/User.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用于表'),
|
||
(737, 'UserAddress.php', '/app/model/user', '/app/model/user/UserAddress.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户地址表'),
|
||
(738, 'UserBill.php', '/app/model/user', '/app/model/user/UserBill.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户记录表'),
|
||
(739, 'UserBrokerage.php', '/app/model/user', '/app/model/user/UserBrokerage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣表'),
|
||
(740, 'UserBrokerageFrozen.php', '/app/model/user', '/app/model/user/UserBrokerageFrozen.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣记录表'),
|
||
(741, 'UserCancel.php', '/app/model/user', '/app/model/user/UserCancel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户注销表'),
|
||
(742, 'UserExtract.php', '/app/model/user', '/app/model/user/UserExtract.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户提现表'),
|
||
(743, 'UserFriends.php', '/app/model/user', '/app/model/user/UserFriends.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '好友关系表'),
|
||
(744, 'UserGroup.php', '/app/model/user', '/app/model/user/UserGroup.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分组表'),
|
||
(745, 'UserInvoice.php', '/app/model/user', '/app/model/user/UserInvoice.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户发票表'),
|
||
(746, 'UserLabel.php', '/app/model/user', '/app/model/user/UserLabel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签表'),
|
||
(747, 'UserLabelCate.php', '/app/model/user', '/app/model/user/UserLabelCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类表'),
|
||
(748, 'UserLabelRelation.php', '/app/model/user', '/app/model/user/UserLabelRelation.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签关联表'),
|
||
(749, 'UserLevel.php', '/app/model/user', '/app/model/user/UserLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级表'),
|
||
(750, 'UserMoney.php', '/app/model/user', '/app/model/user/UserMoney.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户余额变动表'),
|
||
(751, 'UserRecharge.php', '/app/model/user', '/app/model/user/UserRecharge.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户充值表'),
|
||
(752, 'UserSearch.php', '/app/model/user', '/app/model/user/UserSearch.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户搜索表'),
|
||
(753, 'UserSign.php', '/app/model/user', '/app/model/user/UserSign.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户签到表'),
|
||
(754, 'UserSpread.php', '/app/model/user', '/app/model/user/UserSpread.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分销表'),
|
||
(755, 'UserVisit.php', '/app/model/user', '/app/model/user/UserVisit.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户访问表'),
|
||
(756, 'wechat', '/app/model', '/app/model/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信'),
|
||
(757, 'WechatKey.php', '/app/model/wechat', '/app/model/wechat/WechatKey.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信关键词表'),
|
||
(758, 'WechatMedia.php', '/app/model/wechat', '/app/model/wechat/WechatMedia.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信附件表'),
|
||
(759, 'WechatMessage.php', '/app/model/wechat', '/app/model/wechat/WechatMessage.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信消息表'),
|
||
(760, 'WechatNewsCategory.php', '/app/model/wechat', '/app/model/wechat/WechatNewsCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信图文表'),
|
||
(761, 'WechatQrcode.php', '/app/model/wechat', '/app/model/wechat/WechatQrcode.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信二维码表'),
|
||
(762, 'WechatQrcodeCate.php', '/app/model/wechat', '/app/model/wechat/WechatQrcodeCate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信二维码分类表'),
|
||
(763, 'WechatQrcodeRecord.php', '/app/model/wechat', '/app/model/wechat/WechatQrcodeRecord.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信二维码记录表'),
|
||
(764, 'WechatReply.php', '/app/model/wechat', '/app/model/wechat/WechatReply.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信关键词表'),
|
||
(765, 'WechatUser.php', '/app/model/wechat', '/app/model/wechat/WechatUser.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信用户表'),
|
||
(766, 'outapi', '/app', '/app/outapi', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口'),
|
||
(767, 'OutApiExceptionHandle.php', '/app/outapi', '/app/outapi/OutApiExceptionHandle.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '异常捕获'),
|
||
(768, 'config', '/app/outapi', '/app/outapi/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配置'),
|
||
(769, 'route.php', '/app/outapi/config', '/app/outapi/config/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(770, 'controller', '/app/outapi', '/app/outapi/controller', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '控制器'),
|
||
(771, 'AuthController.php', '/app/outapi/controller', '/app/outapi/controller/AuthController.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '授权控制器'),
|
||
(772, 'Login.php', '/app/outapi/controller', '/app/outapi/controller/Login.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录控制器'),
|
||
(773, 'RefundOrder.php', '/app/outapi/controller', '/app/outapi/controller/RefundOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后订单控制器'),
|
||
(774, 'StoreCategory.php', '/app/outapi/controller', '/app/outapi/controller/StoreCategory.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类控制器'),
|
||
(775, 'StoreCoupon.php', '/app/outapi/controller', '/app/outapi/controller/StoreCoupon.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品优惠券控制器'),
|
||
(776, 'StoreOrder.php', '/app/outapi/controller', '/app/outapi/controller/StoreOrder.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单控制器'),
|
||
(777, 'StoreProduct.php', '/app/outapi/controller', '/app/outapi/controller/StoreProduct.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品控制器'),
|
||
(778, 'User.php', '/app/outapi/controller', '/app/outapi/controller/User.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户控制器'),
|
||
(779, 'UserLevel.php', '/app/outapi/controller', '/app/outapi/controller/UserLevel.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级控制器'),
|
||
(780, 'middleware', '/app/outapi', '/app/outapi/middleware', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '中间件'),
|
||
(781, 'AuthTokenMiddleware.php', '/app/outapi/middleware', '/app/outapi/middleware/AuthTokenMiddleware.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '授权登录控制器'),
|
||
(782, 'provider.php', '/app/outapi', '/app/outapi/provider.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '服务注册'),
|
||
(783, 'route', '/app/outapi', '/app/outapi/route', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由'),
|
||
(784, 'route.php', '/app/outapi/route', '/app/outapi/route/route.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '路由配置'),
|
||
(785, 'validate', '/app/outapi', '/app/outapi/validate', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据验证'),
|
||
(786, 'LoginValidate.php', '/app/outapi/validate', '/app/outapi/validate/LoginValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '登录验证'),
|
||
(787, 'StoreCategoryValidate.php', '/app/outapi/validate', '/app/outapi/validate/StoreCategoryValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分类验证'),
|
||
(788, 'StoreOutAccountValidate.php', '/app/outapi/validate', '/app/outapi/validate/StoreOutAccountValidate.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '账号验证'),
|
||
(789, 'provider.php', '/app', '/app/provider.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '容器配置'),
|
||
(790, 'service.php', '/app', '/app/service.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '服务注册'),
|
||
(791, 'services', '/app', '/app/services', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '业务逻辑层'),
|
||
(792, 'BaseServices.php', '/app/services', '/app/services/BaseServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '基础服务类'),
|
||
(793, 'activity', '/app/services', '/app/services/activity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '营销活动'),
|
||
(794, 'advance', '/app/services/activity', '/app/services/activity/advance', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '虚拟商品'),
|
||
(795, 'StoreAdvanceServices.php', '/app/services/activity/advance', '/app/services/activity/advance/StoreAdvanceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '虚拟商品'),
|
||
(796, 'bargain', '/app/services/activity', '/app/services/activity/bargain', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价'),
|
||
(797, 'StoreBargainServices.php', '/app/services/activity/bargain', '/app/services/activity/bargain/StoreBargainServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '砍价商品'),
|
||
(798, 'StoreBargainUserHelpServices.php', '/app/services/activity/bargain', '/app/services/activity/bargain/StoreBargainUserHelpServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '帮砍用户记录'),
|
||
(799, 'StoreBargainUserServices.php', '/app/services/activity/bargain', '/app/services/activity/bargain/StoreBargainUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户砍价记录'),
|
||
(800, 'combination', '/app/services/activity', '/app/services/activity/combination', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团'),
|
||
(801, 'StoreCombinationServices.php', '/app/services/activity/combination', '/app/services/activity/combination/StoreCombinationServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团商品'),
|
||
(802, 'StorePinkServices.php', '/app/services/activity/combination', '/app/services/activity/combination/StorePinkServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '拼团订单'),
|
||
(803, 'coupon', '/app/services/activity', '/app/services/activity/coupon', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券'),
|
||
(804, 'StoreCouponIssueServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponIssueServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '已发布优惠券'),
|
||
(805, 'StoreCouponIssueUserServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponIssueUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券领取'),
|
||
(806, 'StoreCouponProductServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券关联商品'),
|
||
(807, 'StoreCouponService.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '优惠券生成'),
|
||
(808, 'StoreCouponUserCouponServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponUserCouponServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '根据下单金额获取用户能使用的优惠券'),
|
||
(809, 'StoreCouponUserServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户优惠券状态'),
|
||
(810, 'StoreCouponUserUserServices.php', '/app/services/activity/coupon', '/app/services/activity/coupon/StoreCouponUserUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户优惠券领取'),
|
||
(811, 'integral', '/app/services/activity', '/app/services/activity/integral', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分'),
|
||
(812, 'StoreIntegralOrderServices.php', '/app/services/activity/integral', '/app/services/activity/integral/StoreIntegralOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单'),
|
||
(813, 'StoreIntegralOrderStatusServices.php', '/app/services/activity/integral', '/app/services/activity/integral/StoreIntegralOrderStatusServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单状态'),
|
||
(814, 'StoreIntegralServices.php', '/app/services/activity/integral', '/app/services/activity/integral/StoreIntegralServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分订单商品'),
|
||
(815, 'StorePointRecordServices.php', '/app/services/activity/integral', '/app/services/activity/integral/StorePointRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '积分记录'),
|
||
(816, 'live', '/app/services/activity', '/app/services/activity/live', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播'),
|
||
(817, 'LiveAnchorServices.php', '/app/services/activity/live', '/app/services/activity/live/LiveAnchorServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播主播'),
|
||
(818, 'LiveGoodsServices.php', '/app/services/activity/live', '/app/services/activity/live/LiveGoodsServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播商品'),
|
||
(819, 'LiveRoomGoodsServices.php', '/app/services/activity/live', '/app/services/activity/live/LiveRoomGoodsServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播房间商品'),
|
||
(820, 'LiveRoomServices.php', '/app/services/activity/live', '/app/services/activity/live/LiveRoomServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '直播间'),
|
||
(821, 'lottery', '/app/services/activity', '/app/services/activity/lottery', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖'),
|
||
(822, 'LuckLotteryRecordServices.php', '/app/services/activity/lottery', '/app/services/activity/lottery/LuckLotteryRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖记录'),
|
||
(823, 'LuckLotteryServices.php', '/app/services/activity/lottery', '/app/services/activity/lottery/LuckLotteryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖活动'),
|
||
(824, 'LuckPrizeServices.php', '/app/services/activity/lottery', '/app/services/activity/lottery/LuckPrizeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '抽奖活动详细信息'),
|
||
(825, 'seckill', '/app/services/activity', '/app/services/activity/seckill', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀'),
|
||
(826, 'StoreSeckillServices.php', '/app/services/activity/seckill', '/app/services/activity/seckill/StoreSeckillServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '秒杀商品'),
|
||
(827, 'agent', '/app/services', '/app/services/agent', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(828, 'AgentLevelServices.php', '/app/services/agent', '/app/services/agent/AgentLevelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级'),
|
||
(829, 'AgentLevelTaskRecordServices.php', '/app/services/agent', '/app/services/agent/AgentLevelTaskRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销等级任务记录'),
|
||
(830, 'AgentLevelTaskServices.php', '/app/services/agent', '/app/services/agent/AgentLevelTaskServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销任务'),
|
||
(831, 'AgentManageServices.php', '/app/services/agent', '/app/services/agent/AgentManageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销统计'),
|
||
(832, 'DivisionAgentApplyServices.php', '/app/services/agent', '/app/services/agent/DivisionAgentApplyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '代理商申请'),
|
||
(833, 'DivisionServices.php', '/app/services/agent', '/app/services/agent/DivisionServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '事业部'),
|
||
(834, 'article', '/app/services', '/app/services/article', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(835, 'ArticleCategoryServices.php', '/app/services/article', '/app/services/article/ArticleCategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章分类'),
|
||
(836, 'ArticleContentServices.php', '/app/services/article', '/app/services/article/ArticleContentServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章内容'),
|
||
(837, 'ArticleServices.php', '/app/services/article', '/app/services/article/ArticleServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '文章'),
|
||
(838, 'diy', '/app/services', '/app/services/diy', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY'),
|
||
(839, 'DiyServices.php', '/app/services/diy', '/app/services/diy/DiyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'DIY记录'),
|
||
(840, 'PageCategoryServices.php', '/app/services/diy', '/app/services/diy/PageCategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '链接分类'),
|
||
(841, 'PageLinkServices.php', '/app/services/diy', '/app/services/diy/PageLinkServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '链接记录'),
|
||
(842, 'filetree.txt', '/app/services', '/app/services/filetree.txt', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(843, 'kefu', '/app/services', '/app/services/kefu', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(844, 'KefuServices.php', '/app/services/kefu', '/app/services/kefu/KefuServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(845, 'LoginServices.php', '/app/services/kefu', '/app/services/kefu/LoginServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服登录'),
|
||
(846, 'ProductServices.php', '/app/services/kefu', '/app/services/kefu/ProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服商品相关'),
|
||
(847, 'UserServices.php', '/app/services/kefu', '/app/services/kefu/UserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服用户相关'),
|
||
(848, 'service', '/app/services/kefu', '/app/services/kefu/service', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服相关'),
|
||
(849, 'StoreServiceAuxiliaryServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceAuxiliaryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服和客服辅助关联'),
|
||
(850, 'StoreServiceFeedbackServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceFeedbackServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服反馈'),
|
||
(851, 'StoreServiceLogServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceLogServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服聊天记录'),
|
||
(852, 'StoreServiceRecordServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服聊天用户记录'),
|
||
(853, 'StoreServiceServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服'),
|
||
(854, 'StoreServiceSpeechcraftCateServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceSpeechcraftCateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服话术分类'),
|
||
(855, 'StoreServiceSpeechcraftServices.php', '/app/services/kefu/service', '/app/services/kefu/service/StoreServiceSpeechcraftServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '客服话术'),
|
||
(856, 'message', '/app/services', '/app/services/message', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息'),
|
||
(857, 'MessageSystemServices.php', '/app/services/message', '/app/services/message/MessageSystemServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信'),
|
||
(858, 'NoticeService.php', '/app/services/message', '/app/services/message/NoticeService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '消息发送'),
|
||
(859, 'SystemNotificationServices.php', '/app/services/message', '/app/services/message/SystemNotificationServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信消息发送'),
|
||
(860, 'TemplateMessageServices.php', '/app/services/message', '/app/services/message/TemplateMessageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '模板消息发送'),
|
||
(861, 'notice', '/app/services/message', '/app/services/message/notice', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他消息通知'),
|
||
(862, 'EnterpriseWechatService.php', '/app/services/message/notice', '/app/services/message/notice/EnterpriseWechatService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '企业微信消息'),
|
||
(863, 'RoutineTemplateListService.php', '/app/services/message/notice', '/app/services/message/notice/RoutineTemplateListService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序订阅消息'),
|
||
(864, 'SmsService.php', '/app/services/message/notice', '/app/services/message/notice/SmsService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信消息'),
|
||
(865, 'SystemMsgService.php', '/app/services/message/notice', '/app/services/message/notice/SystemMsgService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '站内信消息'),
|
||
(866, 'WechatTemplateListService.php', '/app/services/message/notice', '/app/services/message/notice/WechatTemplateListService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共号消息'),
|
||
(867, 'wechat', '/app/services/message', '/app/services/message/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信消息通知'),
|
||
(868, 'MessageServices.php', '/app/services/message/wechat', '/app/services/message/wechat/MessageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公共号消息回复'),
|
||
(869, 'order', '/app/services', '/app/services/order', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(870, 'DeliveryServiceServices.php', '/app/services/order', '/app/services/order/DeliveryServiceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '配送员'),
|
||
(871, 'OtherOrderServices.php', '/app/services/order', '/app/services/order/OtherOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单'),
|
||
(872, 'OtherOrderStatusServices.php', '/app/services/order', '/app/services/order/OtherOrderStatusServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他订单状态'),
|
||
(873, 'OutStoreOrderRefundServices.php', '/app/services/order', '/app/services/order/OutStoreOrderRefundServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口售后订单'),
|
||
(874, 'OutStoreOrderServices.php', '/app/services/order', '/app/services/order/OutStoreOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口订单'),
|
||
(875, 'StoreCartServices.php', '/app/services/order', '/app/services/order/StoreCartServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单购物车'),
|
||
(876, 'StoreOrderCartInfoServices.php', '/app/services/order', '/app/services/order/StoreOrderCartInfoServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单购物车详情'),
|
||
(877, 'StoreOrderComputedServices.php', '/app/services/order', '/app/services/order/StoreOrderComputedServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单计算'),
|
||
(878, 'StoreOrderCreateServices.php', '/app/services/order', '/app/services/order/StoreOrderCreateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单创建'),
|
||
(879, 'StoreOrderDeliveryServices.php', '/app/services/order', '/app/services/order/StoreOrderDeliveryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单配送'),
|
||
(880, 'StoreOrderEconomizeServices.php', '/app/services/order', '/app/services/order/StoreOrderEconomizeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单计算优惠金额'),
|
||
(881, 'StoreOrderInvoiceServices.php', '/app/services/order', '/app/services/order/StoreOrderInvoiceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单发票'),
|
||
(882, 'StoreOrderRefundServices.php', '/app/services/order', '/app/services/order/StoreOrderRefundServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '售后订单'),
|
||
(883, 'StoreOrderServices.php', '/app/services/order', '/app/services/order/StoreOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单'),
|
||
(884, 'StoreOrderSplitServices.php', '/app/services/order', '/app/services/order/StoreOrderSplitServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单拆分'),
|
||
(885, 'StoreOrderStatusServices.php', '/app/services/order', '/app/services/order/StoreOrderStatusServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单状态'),
|
||
(886, 'StoreOrderStoreOrderCartInfoServices.php', '/app/services/order', '/app/services/order/StoreOrderStoreOrderCartInfoServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单表和订单购物车关联'),
|
||
(887, 'StoreOrderStoreOrderStatusServices.php', '/app/services/order', '/app/services/order/StoreOrderStoreOrderStatusServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单和订单状态关联'),
|
||
(888, 'StoreOrderSuccessServices.php', '/app/services/order', '/app/services/order/StoreOrderSuccessServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单支付成功'),
|
||
(889, 'StoreOrderTakeServices.php', '/app/services/order', '/app/services/order/StoreOrderTakeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单发货'),
|
||
(890, 'StoreOrderWapServices.php', '/app/services/order', '/app/services/order/StoreOrderWapServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单前台统计'),
|
||
(891, 'StoreOrderWriteOffServices.php', '/app/services/order', '/app/services/order/StoreOrderWriteOffServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单核销'),
|
||
(892, 'other', '/app/services', '/app/services/other', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '其他'),
|
||
(893, 'AgreementServices.php', '/app/services/other', '/app/services/other/AgreementServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '协议'),
|
||
(894, 'CacheServices.php', '/app/services/other', '/app/services/other/CacheServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '数据缓存'),
|
||
(895, 'CategoryServices.php', '/app/services/other', '/app/services/other/CategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分类'),
|
||
(896, 'PosterServices.php', '/app/services/other', '/app/services/other/PosterServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '分销'),
|
||
(897, 'QrcodeServices.php', '/app/services/other', '/app/services/other/QrcodeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '二维码'),
|
||
(898, 'UploadService.php', '/app/services/other', '/app/services/other/UploadService.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '上传'),
|
||
(899, 'export', '/app/services/other', '/app/services/other/export', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '快递'),
|
||
(900, 'ExportServices.php', '/app/services/other/export', '/app/services/other/export/ExportServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '快递公司'),
|
||
(901, 'out', '/app/services', '/app/services/out', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口'),
|
||
(902, 'OutAccountServices.php', '/app/services/out', '/app/services/out/OutAccountServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口账号'),
|
||
(903, 'OutInterfaceServices.php', '/app/services/out', '/app/services/out/OutInterfaceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口权限'),
|
||
(904, 'pay', '/app/services', '/app/services/pay', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '支付'),
|
||
(905, 'OrderOfflineServices.php', '/app/services/pay', '/app/services/pay/OrderOfflineServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '线下支付成功'),
|
||
(906, 'OrderPayServices.php', '/app/services/pay', '/app/services/pay/OrderPayServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单支付成功'),
|
||
(907, 'PayNotifyServices.php', '/app/services/pay', '/app/services/pay/PayNotifyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '支付回调'),
|
||
(908, 'PayServices.php', '/app/services/pay', '/app/services/pay/PayServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '发起支付'),
|
||
(909, 'RechargeServices.php', '/app/services/pay', '/app/services/pay/RechargeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '充值支付'),
|
||
(910, 'YuePayServices.php', '/app/services/pay', '/app/services/pay/YuePayServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '余额支付'),
|
||
(911, 'pc', '/app/services', '/app/services/pc', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'pc相关'),
|
||
(912, 'CartServices.php', '/app/services/pc', '/app/services/pc/CartServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC购物车'),
|
||
(913, 'HomeServices.php', '/app/services/pc', '/app/services/pc/HomeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC主页'),
|
||
(914, 'LoginServices.php', '/app/services/pc', '/app/services/pc/LoginServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC登录'),
|
||
(915, 'OrderServices.php', '/app/services/pc', '/app/services/pc/OrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC订单'),
|
||
(916, 'ProductServices.php', '/app/services/pc', '/app/services/pc/ProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC商品'),
|
||
(917, 'PublicServices.php', '/app/services/pc', '/app/services/pc/PublicServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC公共'),
|
||
(918, 'UserServices.php', '/app/services/pc', '/app/services/pc/UserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'PC用户'),
|
||
(919, 'product', '/app/services', '/app/services/product', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '商品'),
|
||
(920, 'product', '/app/services/product', '/app/services/product/product', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(921, 'CopyTaobaoServices.php', '/app/services/product/product', '/app/services/product/product/CopyTaobaoServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '复制商品'),
|
||
(922, 'OutStoreProductServices.php', '/app/services/product/product', '/app/services/product/product/OutStoreProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口商品'),
|
||
(923, 'StoreCategoryServices.php', '/app/services/product/product', '/app/services/product/product/StoreCategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类'),
|
||
(924, 'StoreDescriptionServices.php', '/app/services/product/product', '/app/services/product/product/StoreDescriptionServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品详情'),
|
||
(925, 'StoreProductCateServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductCateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品分类辅助'),
|
||
(926, 'StoreProductCouponServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductCouponServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品优惠券辅助'),
|
||
(927, 'StoreProductLogServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductLogServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品日志'),
|
||
(928, 'StoreProductRelationServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductRelationServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品关联'),
|
||
(929, 'StoreProductReplyServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductReplyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品评价'),
|
||
(930, 'StoreProductReplyStoreProductServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductReplyStoreProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品和商品评价'),
|
||
(931, 'StoreProductServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品'),
|
||
(932, 'StoreProductVisitServices.php', '/app/services/product/product', '/app/services/product/product/StoreProductVisitServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品浏览'),
|
||
(933, 'StoreVisitServices.php', '/app/services/product/product', '/app/services/product/product/StoreVisitServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '访问记录'),
|
||
(934, 'sku', '/app/services/product', '/app/services/product/sku', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU'),
|
||
(935, 'StoreProductAttrResultServices.php', '/app/services/product/sku', '/app/services/product/sku/StoreProductAttrResultServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU'),
|
||
(936, 'StoreProductAttrServices.php', '/app/services/product/sku', '/app/services/product/sku/StoreProductAttrServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU规格记录'),
|
||
(937, 'StoreProductAttrValueServices.php', '/app/services/product/sku', '/app/services/product/sku/StoreProductAttrValueServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU规格值记录'),
|
||
(938, 'StoreProductRuleServices.php', '/app/services/product/sku', '/app/services/product/sku/StoreProductRuleServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'SKU生成规格'),
|
||
(939, 'StoreProductVirtualServices.php', '/app/services/product/sku', '/app/services/product/sku/StoreProductVirtualServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '预售SKU'),
|
||
(940, 'serve', '/app/services', '/app/services/serve', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通'),
|
||
(941, 'ServeServices.php', '/app/services/serve', '/app/services/serve/ServeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通服务入口'),
|
||
(942, 'shipping', '/app/services', '/app/services/shipping', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(943, 'ExpressServices.php', '/app/services/shipping', '/app/services/shipping/ExpressServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '物流公司'),
|
||
(944, 'ShippingTemplatesFreeCityServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesFreeCityServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板包邮城市数据'),
|
||
(945, 'ShippingTemplatesFreeServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesFreeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板包邮数据'),
|
||
(946, 'ShippingTemplatesNoDeliveryCityServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesNoDeliveryCityServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板不送达城市'),
|
||
(947, 'ShippingTemplatesNoDeliveryServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesNoDeliveryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板不送达'),
|
||
(948, 'ShippingTemplatesRegionCityServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesRegionCityServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板指定地区包邮城市'),
|
||
(949, 'ShippingTemplatesRegionServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesRegionServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板指定地区包邮'),
|
||
(950, 'ShippingTemplatesServices.php', '/app/services/shipping', '/app/services/shipping/ShippingTemplatesServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '运费模板'),
|
||
(951, 'SystemCityServices.php', '/app/services/shipping', '/app/services/shipping/SystemCityServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '城市数据'),
|
||
(952, 'statistic', '/app/services', '/app/services/statistic', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '统计'),
|
||
(953, 'CapitalFlowServices.php', '/app/services/statistic', '/app/services/statistic/CapitalFlowServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '资金流水统计'),
|
||
(954, 'OrderStatisticServices.php', '/app/services/statistic', '/app/services/statistic/OrderStatisticServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '订单统计'),
|
||
(955, 'ProductStatisticServices.php', '/app/services/statistic', '/app/services/statistic/ProductStatisticServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '商品统计'),
|
||
(956, 'TradeStatisticServices.php', '/app/services/statistic', '/app/services/statistic/TradeStatisticServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '交易统计'),
|
||
(957, 'UserStatisticServices.php', '/app/services/statistic', '/app/services/statistic/UserStatisticServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户统计'),
|
||
(958, 'system', '/app/services', '/app/services/system', 'dir', '2023-04-28 10:19:26', '2023-04-28 10:19:26', '设置'),
|
||
(959, 'AppVersionServices.php', '/app/services/system', '/app/services/system/AppVersionServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', 'APP版本'),
|
||
(960, 'SystemAuthServices.php', '/app/services/system', '/app/services/system/SystemAuthServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '管理员登录'),
|
||
(961, 'SystemClearServices.php', '/app/services/system', '/app/services/system/SystemClearServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '清除数据'),
|
||
(962, 'SystemCrudServices.php', '/app/services/system', '/app/services/system/SystemCrudServices.php', 'file', '2023-04-28 10:19:26', '2023-04-28 10:19:26', '代码生成'),
|
||
(963, 'SystemDatabackupServices.php', '/app/services/system', '/app/services/system/SystemDatabackupServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(964, 'SystemLangServices.php', '/app/services/system', '/app/services/system/SystemLangServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(965, 'SystemMenusServices.php', '/app/services/system', '/app/services/system/SystemMenusServices.php', 'file', '2023-04-27 10:43:44', '2023-04-27 10:43:44', ''),
|
||
(966, 'SystemRouteCateServices.php', '/app/services/system', '/app/services/system/SystemRouteCateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(967, 'SystemRouteServices.php', '/app/services/system', '/app/services/system/SystemRouteServices.php', 'file', '2023-04-27 09:38:55', '2023-04-27 09:38:55', ''),
|
||
(968, 'SystemUserLevelServices.php', '/app/services/system', '/app/services/system/SystemUserLevelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(969, 'UpgradeServices.php', '/app/services/system', '/app/services/system/UpgradeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(970, 'admin', '/app/services/system', '/app/services/system/admin', 'dir', '2023-04-28 10:19:26', '2023-04-28 10:19:26', ''),
|
||
(971, 'AdminAuthServices.php', '/app/services/system/admin', '/app/services/system/admin/AdminAuthServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(972, 'SystemAdminServices.php', '/app/services/system/admin', '/app/services/system/admin/SystemAdminServices.php', 'file', '2023-04-28 10:19:26', '2023-04-28 10:19:26', ''),
|
||
(973, 'SystemRoleServices.php', '/app/services/system/admin', '/app/services/system/admin/SystemRoleServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(974, 'attachment', '/app/services/system', '/app/services/system/attachment', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(975, 'SystemAttachmentCategoryServices.php', '/app/services/system/attachment', '/app/services/system/attachment/SystemAttachmentCategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(976, 'SystemAttachmentServices.php', '/app/services/system/attachment', '/app/services/system/attachment/SystemAttachmentServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(977, 'config', '/app/services/system', '/app/services/system/config', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(978, 'SystemConfigServices.php', '/app/services/system/config', '/app/services/system/config/SystemConfigServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(979, 'SystemConfigTabServices.php', '/app/services/system/config', '/app/services/system/config/SystemConfigTabServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(980, 'SystemGroupDataServices.php', '/app/services/system/config', '/app/services/system/config/SystemGroupDataServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(981, 'SystemGroupServices.php', '/app/services/system/config', '/app/services/system/config/SystemGroupServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(982, 'SystemStorageServices.php', '/app/services/system/config', '/app/services/system/config/SystemStorageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(983, 'crontab', '/app/services/system', '/app/services/system/crontab', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(984, 'CrontabRunServices.php', '/app/services/system/crontab', '/app/services/system/crontab/CrontabRunServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(985, 'SystemCrontabServices.php', '/app/services/system/crontab', '/app/services/system/crontab/SystemCrontabServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(986, 'lang', '/app/services/system', '/app/services/system/lang', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(987, 'LangCodeServices.php', '/app/services/system/lang', '/app/services/system/lang/LangCodeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(988, 'LangCountryServices.php', '/app/services/system/lang', '/app/services/system/lang/LangCountryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(989, 'LangTypeServices.php', '/app/services/system/lang', '/app/services/system/lang/LangTypeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(990, 'log', '/app/services/system', '/app/services/system/log', 'dir', '2023-04-28 10:38:19', '2023-04-28 10:38:19', ''),
|
||
(991, 'ClearServices.php', '/app/services/system/log', '/app/services/system/log/ClearServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(992, 'SystemFileInfoServices.php', '/app/services/system/log', '/app/services/system/log/SystemFileInfoServices.php', 'file', '2023-04-28 10:38:19', '2023-04-28 10:38:19', ''),
|
||
(993, 'SystemFileServices.php', '/app/services/system/log', '/app/services/system/log/SystemFileServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(994, 'SystemLogServices.php', '/app/services/system/log', '/app/services/system/log/SystemLogServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(995, 'store', '/app/services/system', '/app/services/system/store', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(996, 'SystemStoreServices.php', '/app/services/system/store', '/app/services/system/store/SystemStoreServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(997, 'SystemStoreStaffServices.php', '/app/services/system/store', '/app/services/system/store/SystemStoreStaffServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', ''),
|
||
(998, 'user', '/app/services', '/app/services/user', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(999, 'LoginServices.php', '/app/services/user', '/app/services/user/LoginServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户登录'),
|
||
(1000, 'OutUserLevelServices.php', '/app/services/user', '/app/services/user/OutUserLevelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口用户等级'),
|
||
(1001, 'OutUserServices.php', '/app/services/user', '/app/services/user/OutUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '对外接口用户'),
|
||
(1002, 'UserAddressServices.php', '/app/services/user', '/app/services/user/UserAddressServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户地址'),
|
||
(1003, 'UserAuthServices.php', '/app/services/user', '/app/services/user/UserAuthServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户授权登录'),
|
||
(1004, 'UserBillServices.php', '/app/services/user', '/app/services/user/UserBillServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户变动记录'),
|
||
(1005, 'UserBillStoreOrderServices.php', '/app/services/user', '/app/services/user/UserBillStoreOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户变动记录和订单'),
|
||
(1006, 'UserBrokerageFrozenServices.php', '/app/services/user', '/app/services/user/UserBrokerageFrozenServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣冻结'),
|
||
(1007, 'UserBrokerageServices.php', '/app/services/user', '/app/services/user/UserBrokerageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户返佣记录'),
|
||
(1008, 'UserCancelServices.php', '/app/services/user', '/app/services/user/UserCancelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户注销'),
|
||
(1009, 'UserExtractServices.php', '/app/services/user', '/app/services/user/UserExtractServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户提现'),
|
||
(1010, 'UserFriendsServices.php', '/app/services/user', '/app/services/user/UserFriendsServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户关系'),
|
||
(1011, 'UserGroupServices.php', '/app/services/user', '/app/services/user/UserGroupServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分组'),
|
||
(1012, 'UserInvoiceServices.php', '/app/services/user', '/app/services/user/UserInvoiceServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户发票'),
|
||
(1013, 'UserLabelCateServices.php', '/app/services/user', '/app/services/user/UserLabelCateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类'),
|
||
(1014, 'UserLabelRelationServices.php', '/app/services/user', '/app/services/user/UserLabelRelationServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签分类关联'),
|
||
(1015, 'UserLabelServices.php', '/app/services/user', '/app/services/user/UserLabelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户标签'),
|
||
(1016, 'UserLevelServices.php', '/app/services/user', '/app/services/user/UserLevelServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户等级'),
|
||
(1017, 'UserMoneyServices.php', '/app/services/user', '/app/services/user/UserMoneyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户余额'),
|
||
(1018, 'UserRechargeServices.php', '/app/services/user', '/app/services/user/UserRechargeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户充值'),
|
||
(1019, 'UserSearchServices.php', '/app/services/user', '/app/services/user/UserSearchServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户搜索'),
|
||
(1020, 'UserServices.php', '/app/services/user', '/app/services/user/UserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户'),
|
||
(1021, 'UserSignServices.php', '/app/services/user', '/app/services/user/UserSignServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户签到'),
|
||
(1022, 'UserSpreadServices.php', '/app/services/user', '/app/services/user/UserSpreadServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户分销人记录'),
|
||
(1023, 'UserStoreOrderServices.php', '/app/services/user', '/app/services/user/UserStoreOrderServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户关联订单'),
|
||
(1024, 'UserUserBillServices.php', '/app/services/user', '/app/services/user/UserUserBillServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户关联用户记录'),
|
||
(1025, 'UserUserBrokerageServices.php', '/app/services/user', '/app/services/user/UserUserBrokerageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户关联返佣'),
|
||
(1026, 'UserVisitServices.php', '/app/services/user', '/app/services/user/UserVisitServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户访问记录'),
|
||
(1027, 'UserWechatuserServices.php', '/app/services/user', '/app/services/user/UserWechatuserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '用户关联微信用户'),
|
||
(1028, 'member', '/app/services/user', '/app/services/user/member', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '付费会员'),
|
||
(1029, 'MemberCardBatchServices.php', '/app/services/user/member', '/app/services/user/member/MemberCardBatchServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡批量记录'),
|
||
(1030, 'MemberCardServices.php', '/app/services/user/member', '/app/services/user/member/MemberCardServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡记录'),
|
||
(1031, 'MemberRightServices.php', '/app/services/user/member', '/app/services/user/member/MemberRightServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡权益'),
|
||
(1032, 'MemberShipServices.php', '/app/services/user/member', '/app/services/user/member/MemberShipServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '会员卡类型'),
|
||
(1033, 'wechat', '/app/services', '/app/services/wechat', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '微信'),
|
||
(1034, 'RoutineServices.php', '/app/services/wechat', '/app/services/wechat/RoutineServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '小程序登录相关'),
|
||
(1035, 'WechatKeyServices.php', '/app/services/wechat', '/app/services/wechat/WechatKeyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号关键字'),
|
||
(1036, 'WechatMediaServices.php', '/app/services/wechat', '/app/services/wechat/WechatMediaServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号附件'),
|
||
(1037, 'WechatMenuServices.php', '/app/services/wechat', '/app/services/wechat/WechatMenuServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号菜单'),
|
||
(1038, 'WechatMessageServices.php', '/app/services/wechat', '/app/services/wechat/WechatMessageServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号消息'),
|
||
(1039, 'WechatNewsCategoryServices.php', '/app/services/wechat', '/app/services/wechat/WechatNewsCategoryServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号图文'),
|
||
(1040, 'WechatQrcodeCateServices.php', '/app/services/wechat', '/app/services/wechat/WechatQrcodeCateServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号二维码分类'),
|
||
(1041, 'WechatQrcodeRecordServices.php', '/app/services/wechat', '/app/services/wechat/WechatQrcodeRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号二维码记录'),
|
||
(1042, 'WechatQrcodeServices.php', '/app/services/wechat', '/app/services/wechat/WechatQrcodeServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号二维码'),
|
||
(1043, 'WechatReplyKeyServices.php', '/app/services/wechat', '/app/services/wechat/WechatReplyKeyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号关键字回复'),
|
||
(1044, 'WechatReplyServices.php', '/app/services/wechat', '/app/services/wechat/WechatReplyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号关键词回复内容'),
|
||
(1045, 'WechatServices.php', '/app/services/wechat', '/app/services/wechat/WechatServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号服务'),
|
||
(1046, 'WechatUserServices.php', '/app/services/wechat', '/app/services/wechat/WechatUserServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '公众号用户相关服务'),
|
||
(1047, 'yihaotong', '/app/services', '/app/services/yihaotong', 'dir', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '一号通'),
|
||
(1048, 'SmsAdminServices.php', '/app/services/yihaotong', '/app/services/yihaotong/SmsAdminServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信账号'),
|
||
(1049, 'SmsRecordServices.php', '/app/services/yihaotong', '/app/services/yihaotong/SmsRecordServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信记录'),
|
||
(1050, 'SmsTemplateApplyServices.php', '/app/services/yihaotong', '/app/services/yihaotong/SmsTemplateApplyServices.php', 'file', '2023-04-27 09:38:48', '2023-04-27 09:38:48', '短信模板'),
|
||
(1051, 'backup', '', '/backup', 'dir', '2023-04-26 16:58:03', '2023-04-26 16:58:03', '备份文件存放'),
|
||
(1052, 'readme.md', '/backup', '/backup/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '4442'),
|
||
(1053, 'build.example.php', '', '/build.example.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '生成文件配置'),
|
||
(1054, 'composer.json', '', '/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'composer配置'),
|
||
(1055, 'composer.lock', '', '/composer.lock', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'composer日志'),
|
||
(1056, 'config', '', '/config', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '配置目录'),
|
||
(1057, 'ajcaptcha.php', '/config', '/config/ajcaptcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '滑动验证码'),
|
||
(1058, 'app.php', '/config', '/config/app.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '系统应用配置'),
|
||
(1059, 'cache.php', '/config', '/config/cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '缓存配置'),
|
||
(1060, 'captcha.php', '/config', '/config/captcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '文字验证码配置'),
|
||
(1061, 'console.php', '/config', '/config/console.php', 'file', '2023-04-26 16:58:01', '2023-04-28 11:54:01', '控制台配置'),
|
||
(1062, 'cookie.php', '/config', '/config/cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-28 11:49:06', 'Cookie配置'),
|
||
(1063, 'database.php', '/config', '/config/database.php', 'file', '2023-04-26 16:58:01', '2023-04-28 11:54:12', '数据库配置'),
|
||
(1064, 'filesystem.php', '/config', '/config/filesystem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '文件配置'),
|
||
(1065, 'filetree.txt', '/config', '/config/filetree.txt', 'file', '2023-04-26 16:58:01', '2023-04-28 11:54:19', '文件列表'),
|
||
(1066, 'lang.php', '/config', '/config/lang.php', 'file', '2023-04-26 16:58:01', '2023-04-28 11:44:25', '语言配置'),
|
||
(1067, 'log.php', '/config', '/config/log.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '系统日志配置'),
|
||
(1068, 'pay.php', '/config', '/config/pay.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '支付配置'),
|
||
(1069, 'plat.php', '/config', '/config/plat.php', 'file', '2023-04-26 16:58:01', '2023-04-28 11:54:21', '短信配置(todo)'),
|
||
(1070, 'printer.php', '/config', '/config/printer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '打印机配置'),
|
||
(1071, 'qrcode.php', '/config', '/config/qrcode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '二维码配置'),
|
||
(1072, 'queue.php', '/config', '/config/queue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '队列配置'),
|
||
(1073, 'route.php', '/config', '/config/route.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '路由配置'),
|
||
(1074, 'session.php', '/config', '/config/session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '会话设置'),
|
||
(1075, 'sms.php', '/config', '/config/sms.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '短信配置'),
|
||
(1076, 'trace.php', '/config', '/config/trace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'Trace设置 开启调试模式后有效'),
|
||
(1077, 'upload.php', '/config', '/config/upload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '文件上传配置'),
|
||
(1078, 'view.php', '/config', '/config/view.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '模板设置'),
|
||
(1079, 'workerman.php', '/config', '/config/workerman.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', 'websocket配置'),
|
||
(1080, 'crmeb', '', '/crmeb', 'dir', '2023-04-28 10:38:17', '2023-05-04 17:00:06', 'crmeb核心类'),
|
||
(1081, 'basic', '/crmeb', '/crmeb/basic', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础类存放'),
|
||
(1082, 'BaseController.php', '/crmeb/basic', '/crmeb/basic/BaseController.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础控制器类'),
|
||
(1083, 'BaseJobs.php', '/crmeb/basic', '/crmeb/basic/BaseJobs.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础队列类'),
|
||
(1084, 'BaseManager.php', '/crmeb/basic', '/crmeb/basic/BaseManager.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动基类'),
|
||
(1085, 'BaseModel.php', '/crmeb/basic', '/crmeb/basic/BaseModel.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '模型基类'),
|
||
(1086, 'BaseStorage.php', '/crmeb/basic', '/crmeb/basic/BaseStorage.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '存储基类'),
|
||
(1087, 'command', '/crmeb', '/crmeb/command', 'dir', '2023-04-28 10:38:19', '2023-04-28 10:38:19', '命令行'),
|
||
(1088, 'Npm.php', '/crmeb/command', '/crmeb/command/Npm.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'npm打包自动移动命令'),
|
||
(1089, 'Timer.php', '/crmeb/command', '/crmeb/command/Timer.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '定时任务命令'),
|
||
(1090, 'Util.php', '/crmeb/command', '/crmeb/command/Util.php', 'file', '2023-04-28 10:38:19', '2023-04-28 10:38:19', '工具类命令'),
|
||
(1091, 'Workerman.php', '/crmeb/command', '/crmeb/command/Workerman.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '长链接命令'),
|
||
(1092, 'exceptions', '/crmeb', '/crmeb/exceptions', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '错误定义'),
|
||
(1093, 'AdminException.php', '/crmeb/exceptions', '/crmeb/exceptions/AdminException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '后台错误抛出'),
|
||
(1094, 'ApiException.php', '/crmeb/exceptions', '/crmeb/exceptions/ApiException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '接口错误抛出'),
|
||
(1095, 'ApiStatusException.php', '/crmeb/exceptions', '/crmeb/exceptions/ApiStatusException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '应用错误抛出'),
|
||
(1096, 'AuthException.php', '/crmeb/exceptions', '/crmeb/exceptions/AuthException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '授权错误抛出'),
|
||
(1097, 'CrudException.php', '/crmeb/exceptions', '/crmeb/exceptions/CrudException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '代码生成异常抛出'),
|
||
(1098, 'PayException.php', '/crmeb/exceptions', '/crmeb/exceptions/PayException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付异常抛出'),
|
||
(1099, 'UploadException.php', '/crmeb/exceptions', '/crmeb/exceptions/UploadException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '上传异常抛出'),
|
||
(1100, 'filetree.txt', '/crmeb', '/crmeb/filetree.txt', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1101, 'interfaces', '/crmeb', '/crmeb/interfaces', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '接口类'),
|
||
(1102, 'JobInterface.php', '/crmeb/interfaces', '/crmeb/interfaces/JobInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '队列接口'),
|
||
(1103, 'ListenerInterface.php', '/crmeb/interfaces', '/crmeb/interfaces/ListenerInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '事件接口'),
|
||
(1104, 'MiddlewareInterface.php', '/crmeb/interfaces', '/crmeb/interfaces/MiddlewareInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '中间件接口'),
|
||
(1105, 'ProviderInterface.php', '/crmeb/interfaces', '/crmeb/interfaces/ProviderInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'easywechat接口'),
|
||
(1106, 'services', '/crmeb', '/crmeb/services', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '服务类'),
|
||
(1107, 'AccessTokenServeService.php', '/crmeb/services', '/crmeb/services/AccessTokenServeService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '一号通获取token'),
|
||
(1108, 'AliPayService.php', '/crmeb/services', '/crmeb/services/AliPayService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付宝支付'),
|
||
(1109, 'CacheService.php', '/crmeb/services', '/crmeb/services/CacheService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '缓存操作'),
|
||
(1110, 'FileService.php', '/crmeb/services', '/crmeb/services/FileService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '文件操作'),
|
||
(1111, 'FormBuilder.php', '/crmeb/services', '/crmeb/services/FormBuilder.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '表单生成'),
|
||
(1112, 'GroupDataService.php', '/crmeb/services', '/crmeb/services/GroupDataService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '组合数据'),
|
||
(1113, 'HttpService.php', '/crmeb/services', '/crmeb/services/HttpService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'curl请求'),
|
||
(1114, 'LockService.php', '/crmeb/services', '/crmeb/services/LockService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'redis锁'),
|
||
(1115, 'MysqlBackupService.php', '/crmeb/services', '/crmeb/services/MysqlBackupService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'mysql导出'),
|
||
(1116, 'SpreadsheetExcelService.php', '/crmeb/services', '/crmeb/services/SpreadsheetExcelService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '表格导出'),
|
||
(1117, 'SystemConfigService.php', '/crmeb/services', '/crmeb/services/SystemConfigService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '数据配置'),
|
||
(1118, 'UpgradeService.php', '/crmeb/services', '/crmeb/services/UpgradeService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '在线更新'),
|
||
(1119, 'app', '/crmeb/services', '/crmeb/services/app', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '微信应用'),
|
||
(1120, 'MiniProgramService.php', '/crmeb/services/app', '/crmeb/services/app/MiniProgramService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序服务'),
|
||
(1121, 'WechatOpenService.php', '/crmeb/services/app', '/crmeb/services/app/WechatOpenService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '开发平台服务'),
|
||
(1122, 'WechatService.php', '/crmeb/services/app', '/crmeb/services/app/WechatService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '微信公共号服务'),
|
||
(1123, 'copyproduct', '/crmeb/services', '/crmeb/services/copyproduct', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '复制商品'),
|
||
(1124, 'BaseCopyProduct.php', '/crmeb/services/copyproduct', '/crmeb/services/copyproduct/BaseCopyProduct.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础复制商品'),
|
||
(1125, 'CopyProduct.php', '/crmeb/services/copyproduct', '/crmeb/services/copyproduct/CopyProduct.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '复制商品'),
|
||
(1126, 'storage', '/crmeb/services/copyproduct', '/crmeb/services/copyproduct/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动类型'),
|
||
(1127, 'Copy.php', '/crmeb/services/copyproduct/storage', '/crmeb/services/copyproduct/storage/Copy.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '复制商品一号通驱动'),
|
||
(1128, 'Copy99api.php', '/crmeb/services/copyproduct/storage', '/crmeb/services/copyproduct/storage/Copy99api.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '复制商品99api驱动'),
|
||
(1129, 'crud', '/crmeb/services', '/crmeb/services/crud', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '代码生成'),
|
||
(1130, 'Controller.php', '/crmeb/services/crud', '/crmeb/services/crud/Controller.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成控制器代码'),
|
||
(1131, 'Dao.php', '/crmeb/services/crud', '/crmeb/services/crud/Dao.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成dao层代码'),
|
||
(1132, 'Make.php', '/crmeb/services/crud', '/crmeb/services/crud/Make.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成代码基类'),
|
||
(1133, 'Model.php', '/crmeb/services/crud', '/crmeb/services/crud/Model.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成模型代码'),
|
||
(1134, 'Route.php', '/crmeb/services/crud', '/crmeb/services/crud/Route.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成路由代码'),
|
||
(1135, 'Service.php', '/crmeb/services/crud', '/crmeb/services/crud/Service.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成逻辑层代码'),
|
||
(1136, 'Validate.php', '/crmeb/services/crud', '/crmeb/services/crud/Validate.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成验证类代码'),
|
||
(1137, 'ViewApi.php', '/crmeb/services/crud', '/crmeb/services/crud/ViewApi.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成api接口方法代码'),
|
||
(1138, 'ViewPages.php', '/crmeb/services/crud', '/crmeb/services/crud/ViewPages.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成页面文件代码'),
|
||
(1139, 'ViewRouter.php', '/crmeb/services/crud', '/crmeb/services/crud/ViewRouter.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '生成页面路由代码'),
|
||
(1140, 'stubs', '/crmeb/services/crud', '/crmeb/services/crud/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '模板文件'),
|
||
(1141, 'controller', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/controller', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '控制器模板'),
|
||
(1142, 'create.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/create.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '创建数据模板'),
|
||
(1143, 'crudController.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/crudController.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1144, 'delete.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/delete.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '删除数据模板'),
|
||
(1145, 'edit.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/edit.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '更改获取表单模板'),
|
||
(1146, 'index.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/index.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '列表模板'),
|
||
(1147, 'save.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/save.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '保存模板'),
|
||
(1148, 'update.stub', '/crmeb/services/crud/stubs/controller', '/crmeb/services/crud/stubs/controller/update.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1149, 'dao', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/dao', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'dao层模板'),
|
||
(1150, 'crudDao.stub', '/crmeb/services/crud/stubs/dao', '/crmeb/services/crud/stubs/dao/crudDao.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1151, 'model', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/model', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '模型模板'),
|
||
(1152, 'crudModel.stub', '/crmeb/services/crud/stubs/model', '/crmeb/services/crud/stubs/model/crudModel.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1153, 'getattr.stub', '/crmeb/services/crud/stubs/model', '/crmeb/services/crud/stubs/model/getattr.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '数据解析模板'),
|
||
(1154, 'route', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/route', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '路由模板'),
|
||
(1155, 'create.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/create.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '创建路由模板'),
|
||
(1156, 'delete.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/delete.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '删除路由模板'),
|
||
(1157, 'edit.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/edit.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '编辑路由模板'),
|
||
(1158, 'index.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/index.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '列表路由模板'),
|
||
(1159, 'route.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/route.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '主路由模板'),
|
||
(1160, 'save.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/save.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '保存路由模板'),
|
||
(1161, 'update.stub', '/crmeb/services/crud/stubs/route', '/crmeb/services/crud/stubs/route/update.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1162, 'service', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/service', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '逻辑层模板'),
|
||
(1163, 'crudListIndex.stub', '/crmeb/services/crud/stubs/service', '/crmeb/services/crud/stubs/service/crudListIndex.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1164, 'crudSave.stub', '/crmeb/services/crud/stubs/service', '/crmeb/services/crud/stubs/service/crudSave.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1165, 'crudService.stub', '/crmeb/services/crud/stubs/service', '/crmeb/services/crud/stubs/service/crudService.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1166, 'crudUpdate.stub', '/crmeb/services/crud/stubs/service', '/crmeb/services/crud/stubs/service/crudUpdate.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1167, 'getCrudForm.stub', '/crmeb/services/crud/stubs/service', '/crmeb/services/crud/stubs/service/getCrudForm.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1168, 'validate', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/validate', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '数据验证模板'),
|
||
(1169, 'crudValidate.stub', '/crmeb/services/crud/stubs/validate', '/crmeb/services/crud/stubs/validate/crudValidate.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '数据验证模板'),
|
||
(1170, 'view', '/crmeb/services/crud/stubs', '/crmeb/services/crud/stubs/view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '前台页面模板'),
|
||
(1171, 'api', '/crmeb/services/crud/stubs/view', '/crmeb/services/crud/stubs/view/api', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '接口方法模板'),
|
||
(1172, 'crud.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/crud.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '主路由模板'),
|
||
(1173, 'crudDeleteApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/crudDeleteApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '删除函数模板'),
|
||
(1174, 'crudSaveApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/crudSaveApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '保存函数模板'),
|
||
(1175, 'crudUpdateApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/crudUpdateApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1176, 'getCrudCreateApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/getCrudCreateApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '创建函数模板'),
|
||
(1177, 'getCrudEditApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/getCrudEditApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '更新获取表单模板'),
|
||
(1178, 'getCrudListApi.stub', '/crmeb/services/crud/stubs/view/api', '/crmeb/services/crud/stubs/view/api/getCrudListApi.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '列表回去模板'),
|
||
(1179, 'pages', '/crmeb/services/crud/stubs/view', '/crmeb/services/crud/stubs/view/pages', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '页面模板'),
|
||
(1180, 'crud', '/crmeb/services/crud/stubs/view/pages', '/crmeb/services/crud/stubs/view/pages/crud', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '页面模板'),
|
||
(1181, 'image.stub', '/crmeb/services/crud/stubs/view/pages/crud', '/crmeb/services/crud/stubs/view/pages/crud/image.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1182, 'images.stub', '/crmeb/services/crud/stubs/view/pages/crud', '/crmeb/services/crud/stubs/view/pages/crud/images.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1183, 'index.stub', '/crmeb/services/crud/stubs/view/pages/crud', '/crmeb/services/crud/stubs/view/pages/crud/index.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1184, 'router', '/crmeb/services/crud/stubs/view', '/crmeb/services/crud/stubs/view/router', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '路由模板'),
|
||
(1185, 'modules', '/crmeb/services/crud/stubs/view/router', '/crmeb/services/crud/stubs/view/router/modules', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '路由文件存放'),
|
||
(1186, 'crud.stub', '/crmeb/services/crud/stubs/view/router/modules', '/crmeb/services/crud/stubs/view/router/modules/crud.stub', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '主路由模板'),
|
||
(1187, 'easywechat', '/crmeb/services', '/crmeb/services/easywechat', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '微信SDK扩展'),
|
||
(1188, 'Application.php', '/crmeb/services/easywechat', '/crmeb/services/easywechat/Application.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '注册服务'),
|
||
(1189, 'Open3rd', '/crmeb/services/easywechat', '/crmeb/services/easywechat/Open3rd', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序上架服务'),
|
||
(1190, 'AccessToken.php', '/crmeb/services/easywechat/Open3rd', '/crmeb/services/easywechat/Open3rd/AccessToken.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1191, 'ProgramOpen3rd.php', '/crmeb/services/easywechat/Open3rd', '/crmeb/services/easywechat/Open3rd/ProgramOpen3rd.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1192, 'ProgramProvider.php', '/crmeb/services/easywechat/Open3rd', '/crmeb/services/easywechat/Open3rd/ProgramProvider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1193, 'miniPayment', '/crmeb/services/easywechat', '/crmeb/services/easywechat/miniPayment', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序支付管理'),
|
||
(1194, 'ServiceProvider.php', '/crmeb/services/easywechat/miniPayment', '/crmeb/services/easywechat/miniPayment/ServiceProvider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '服务注册'),
|
||
(1195, 'WeChatClient.php', '/crmeb/services/easywechat/miniPayment', '/crmeb/services/easywechat/miniPayment/WeChatClient.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序支付管理'),
|
||
(1196, 'oauth2', '/crmeb/services/easywechat', '/crmeb/services/easywechat/oauth2', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '微信授权'),
|
||
(1197, 'wechat', '/crmeb/services/easywechat/oauth2', '/crmeb/services/easywechat/oauth2/wechat', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '公共号'),
|
||
(1198, 'WechatOauth.php', '/crmeb/services/easywechat/oauth2/wechat', '/crmeb/services/easywechat/oauth2/wechat/WechatOauth.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '公共号授权'),
|
||
(1199, 'WechatOauth2Provider.php', '/crmeb/services/easywechat/oauth2/wechat', '/crmeb/services/easywechat/oauth2/wechat/WechatOauth2Provider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '注册服务'),
|
||
(1200, 'subscribe', '/crmeb/services/easywechat', '/crmeb/services/easywechat/subscribe', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '订阅消息'),
|
||
(1201, 'ProgramProvider.php', '/crmeb/services/easywechat/subscribe', '/crmeb/services/easywechat/subscribe/ProgramProvider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '服务注册'),
|
||
(1202, 'ProgramSubscribe.php', '/crmeb/services/easywechat/subscribe', '/crmeb/services/easywechat/subscribe/ProgramSubscribe.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '订阅消息类'),
|
||
(1203, 'v3pay', '/crmeb/services/easywechat', '/crmeb/services/easywechat/v3pay', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'v3支付'),
|
||
(1204, 'BaseClient.php', '/crmeb/services/easywechat/v3pay', '/crmeb/services/easywechat/v3pay/BaseClient.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础请求类'),
|
||
(1205, 'Certficates.php', '/crmeb/services/easywechat/v3pay', '/crmeb/services/easywechat/v3pay/Certficates.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '获取证书类'),
|
||
(1206, 'PayClient.php', '/crmeb/services/easywechat/v3pay', '/crmeb/services/easywechat/v3pay/PayClient.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付类'),
|
||
(1207, 'ServiceProvider.php', '/crmeb/services/easywechat/v3pay', '/crmeb/services/easywechat/v3pay/ServiceProvider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '服务注册类'),
|
||
(1208, 'wechatlive', '/crmeb/services/easywechat', '/crmeb/services/easywechat/wechatlive', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序直播'),
|
||
(1209, 'ProgramProvider.php', '/crmeb/services/easywechat/wechatlive', '/crmeb/services/easywechat/wechatlive/ProgramProvider.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '服务注册'),
|
||
(1210, 'ProgramWechatLive.php', '/crmeb/services/easywechat/wechatlive', '/crmeb/services/easywechat/wechatlive/ProgramWechatLive.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序直播类'),
|
||
(1211, 'express', '/crmeb/services', '/crmeb/services/express', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '物流公司'),
|
||
(1212, 'BaseExpress.php', '/crmeb/services/express', '/crmeb/services/express/BaseExpress.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '物流公司服务基类'),
|
||
(1213, 'Express.php', '/crmeb/services/express', '/crmeb/services/express/Express.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '物流公司服务入口'),
|
||
(1214, 'storage', '/crmeb/services/express', '/crmeb/services/express/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1215, 'AliyunExpress.php', '/crmeb/services/express/storage', '/crmeb/services/express/storage/AliyunExpress.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '阿里云物流'),
|
||
(1216, 'Express.php', '/crmeb/services/express/storage', '/crmeb/services/express/storage/Express.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '一号通物流'),
|
||
(1217, 'oauth', '/crmeb/services', '/crmeb/services/oauth', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '授权登录'),
|
||
(1218, 'OAuth.php', '/crmeb/services/oauth', '/crmeb/services/oauth/OAuth.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '授权登录入口'),
|
||
(1219, 'OAuthException.php', '/crmeb/services/oauth', '/crmeb/services/oauth/OAuthException.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '授权登录接口异常类'),
|
||
(1220, 'OAuthInterface.php', '/crmeb/services/oauth', '/crmeb/services/oauth/OAuthInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '授权登录接口类'),
|
||
(1221, 'storage', '/crmeb/services/oauth', '/crmeb/services/oauth/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1222, 'MiniProgram.php', '/crmeb/services/oauth/storage', '/crmeb/services/oauth/storage/MiniProgram.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小程序授权'),
|
||
(1223, 'TouTiao.php', '/crmeb/services/oauth/storage', '/crmeb/services/oauth/storage/TouTiao.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '头条小程序授权'),
|
||
(1224, 'Wechat.php', '/crmeb/services/oauth/storage', '/crmeb/services/oauth/storage/Wechat.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '微信授权'),
|
||
(1225, 'pay', '/crmeb/services', '/crmeb/services/pay', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付'),
|
||
(1226, 'BasePay.php', '/crmeb/services/pay', '/crmeb/services/pay/BasePay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基类支付'),
|
||
(1227, 'Pay.php', '/crmeb/services/pay', '/crmeb/services/pay/Pay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付入口'),
|
||
(1228, 'PayInterface.php', '/crmeb/services/pay', '/crmeb/services/pay/PayInterface.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付接口类'),
|
||
(1229, 'extend', '/crmeb/services/pay', '/crmeb/services/pay/extend', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '扩展'),
|
||
(1230, 'allinpay', '/crmeb/services/pay/extend', '/crmeb/services/pay/extend/allinpay', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '通联扩展'),
|
||
(1231, 'AllinPay.php', '/crmeb/services/pay/extend/allinpay', '/crmeb/services/pay/extend/allinpay/AllinPay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '通联支付类'),
|
||
(1232, 'Client.php', '/crmeb/services/pay/extend/allinpay', '/crmeb/services/pay/extend/allinpay/Client.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '接口请求类'),
|
||
(1233, 'storage', '/crmeb/services/pay', '/crmeb/services/pay/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1234, 'AliPay.php', '/crmeb/services/pay/storage', '/crmeb/services/pay/storage/AliPay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '支付宝支付'),
|
||
(1235, 'AllinPay.php', '/crmeb/services/pay/storage', '/crmeb/services/pay/storage/AllinPay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '通联支付'),
|
||
(1236, 'V3WechatPay.php', '/crmeb/services/pay/storage', '/crmeb/services/pay/storage/V3WechatPay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'v3支付'),
|
||
(1237, 'WechatPay.php', '/crmeb/services/pay/storage', '/crmeb/services/pay/storage/WechatPay.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'v2支付'),
|
||
(1238, 'printer', '/crmeb/services', '/crmeb/services/printer', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小票打印'),
|
||
(1239, 'AccessToken.php', '/crmeb/services/printer', '/crmeb/services/printer/AccessToken.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '获取token类'),
|
||
(1240, 'BasePrinter.php', '/crmeb/services/printer', '/crmeb/services/printer/BasePrinter.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '打印小票基类'),
|
||
(1241, 'Printer.php', '/crmeb/services/printer', '/crmeb/services/printer/Printer.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '小票打印入口'),
|
||
(1242, 'storage', '/crmeb/services/printer', '/crmeb/services/printer/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1243, 'FeiEYun.php', '/crmeb/services/printer/storage', '/crmeb/services/printer/storage/FeiEYun.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '飞蛾打印机'),
|
||
(1244, 'YiLianYun.php', '/crmeb/services/printer/storage', '/crmeb/services/printer/storage/YiLianYun.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '易联云打印机'),
|
||
(1245, 'serve', '/crmeb/services', '/crmeb/services/serve', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '第三方服务'),
|
||
(1246, 'Serve.php', '/crmeb/services/serve', '/crmeb/services/serve/Serve.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '第三方服务入口'),
|
||
(1247, 'storage', '/crmeb/services/serve', '/crmeb/services/serve/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1248, 'Crmeb.php', '/crmeb/services/serve/storage', '/crmeb/services/serve/storage/Crmeb.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'crmeb一号通服务'),
|
||
(1249, 'sms', '/crmeb/services', '/crmeb/services/sms', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '短信'),
|
||
(1250, 'BaseSms.php', '/crmeb/services/sms', '/crmeb/services/sms/BaseSms.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '短信发送基类'),
|
||
(1251, 'Sms.php', '/crmeb/services/sms', '/crmeb/services/sms/Sms.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '短信发送入口'),
|
||
(1252, 'storage', '/crmeb/services/sms', '/crmeb/services/sms/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1253, 'Aliyun.php', '/crmeb/services/sms/storage', '/crmeb/services/sms/storage/Aliyun.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '阿里云短信'),
|
||
(1254, 'Chuanglan.php', '/crmeb/services/sms/storage', '/crmeb/services/sms/storage/Chuanglan.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '创蓝短信'),
|
||
(1255, 'Tencent.php', '/crmeb/services/sms/storage', '/crmeb/services/sms/storage/Tencent.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '腾讯短信'),
|
||
(1256, 'Yihaotong.php', '/crmeb/services/sms/storage', '/crmeb/services/sms/storage/Yihaotong.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '一号通短信'),
|
||
(1257, 'template', '/crmeb/services', '/crmeb/services/template', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '模板消息'),
|
||
(1258, 'BaseMessage.php', '/crmeb/services/template', '/crmeb/services/template/BaseMessage.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '消息发送基类'),
|
||
(1259, 'Template.php', '/crmeb/services/template', '/crmeb/services/template/Template.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '模板消息'),
|
||
(1260, 'storage', '/crmeb/services/template', '/crmeb/services/template/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1261, 'Baidu.php', '/crmeb/services/template/storage', '/crmeb/services/template/storage/Baidu.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '百度模板消息'),
|
||
(1262, 'Subscribe.php', '/crmeb/services/template/storage', '/crmeb/services/template/storage/Subscribe.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '订阅消息'),
|
||
(1263, 'Wechat.php', '/crmeb/services/template/storage', '/crmeb/services/template/storage/Wechat.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '公众号消息'),
|
||
(1264, 'upload', '/crmeb/services', '/crmeb/services/upload', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '上传'),
|
||
(1265, 'BaseUpload.php', '/crmeb/services/upload', '/crmeb/services/upload/BaseUpload.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '基础上传类'),
|
||
(1266, 'Upload.php', '/crmeb/services/upload', '/crmeb/services/upload/Upload.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '上传入口'),
|
||
(1267, 'extend', '/crmeb/services/upload', '/crmeb/services/upload/extend', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '扩展'),
|
||
(1268, 'cos', '/crmeb/services/upload/extend', '/crmeb/services/upload/extend/cos', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'cos扩展'),
|
||
(1269, 'Client.php', '/crmeb/services/upload/extend/cos', '/crmeb/services/upload/extend/cos/Client.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '请求类'),
|
||
(1270, 'Scope.php', '/crmeb/services/upload/extend/cos', '/crmeb/services/upload/extend/cos/Scope.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '区域范围检测类'),
|
||
(1271, 'Signature.php', '/crmeb/services/upload/extend/cos', '/crmeb/services/upload/extend/cos/Signature.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '签名生成'),
|
||
(1272, 'Sts.php', '/crmeb/services/upload/extend/cos', '/crmeb/services/upload/extend/cos/Sts.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '临时秘钥计算类'),
|
||
(1273, 'XML.php', '/crmeb/services/upload/extend/cos', '/crmeb/services/upload/extend/cos/XML.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'xml处理'),
|
||
(1274, 'storage', '/crmeb/services/upload', '/crmeb/services/upload/storage', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '驱动'),
|
||
(1275, 'Cos.php', '/crmeb/services/upload/storage', '/crmeb/services/upload/storage/Cos.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'cos上传'),
|
||
(1276, 'Local.php', '/crmeb/services/upload/storage', '/crmeb/services/upload/storage/Local.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '本地上传'),
|
||
(1277, 'Oss.php', '/crmeb/services/upload/storage', '/crmeb/services/upload/storage/Oss.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'oss上传'),
|
||
(1278, 'Qiniu.php', '/crmeb/services/upload/storage', '/crmeb/services/upload/storage/Qiniu.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '七牛上传'),
|
||
(1279, 'workerman', '/crmeb/services', '/crmeb/services/workerman', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '长链接'),
|
||
(1280, 'ChannelService.php', '/crmeb/services/workerman', '/crmeb/services/workerman/ChannelService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1281, 'Response.php', '/crmeb/services/workerman', '/crmeb/services/workerman/Response.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1282, 'WorkermanHandle.php', '/crmeb/services/workerman', '/crmeb/services/workerman/WorkermanHandle.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1283, 'WorkermanService.php', '/crmeb/services/workerman', '/crmeb/services/workerman/WorkermanService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1284, 'chat', '/crmeb/services/workerman', '/crmeb/services/workerman/chat', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1285, 'ChatHandle.php', '/crmeb/services/workerman/chat', '/crmeb/services/workerman/chat/ChatHandle.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1286, 'ChatService.php', '/crmeb/services/workerman/chat', '/crmeb/services/workerman/chat/ChatService.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', ''),
|
||
(1287, 'traits', '/crmeb', '/crmeb/traits', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '多继承类'),
|
||
(1288, 'JwtAuthModelTrait.php', '/crmeb/traits', '/crmeb/traits/JwtAuthModelTrait.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'JWT生成继承类'),
|
||
(1289, 'ModelTrait.php', '/crmeb/traits', '/crmeb/traits/ModelTrait.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '模型公共继承类'),
|
||
(1290, 'QueueTrait.php', '/crmeb/traits', '/crmeb/traits/QueueTrait.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '消息队列继承类'),
|
||
(1291, 'utils', '/crmeb', '/crmeb/utils', 'dir', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '工具类'),
|
||
(1292, 'Arr.php', '/crmeb/utils', '/crmeb/utils/Arr.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '数组使用类'),
|
||
(1293, 'Cache.php', '/crmeb/utils', '/crmeb/utils/Cache.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '缓存使用类'),
|
||
(1294, 'Canvas.php', '/crmeb/utils', '/crmeb/utils/Canvas.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '画布使用类'),
|
||
(1295, 'Captcha.php', '/crmeb/utils', '/crmeb/utils/Captcha.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '验证码使用类'),
|
||
(1296, 'DownloadImage.php', '/crmeb/utils', '/crmeb/utils/DownloadImage.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '下载图片类'),
|
||
(1297, 'Hook.php', '/crmeb/utils', '/crmeb/utils/Hook.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '订阅类'),
|
||
(1298, 'Json.php', '/crmeb/utils', '/crmeb/utils/Json.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '输入json类'),
|
||
(1299, 'JwtAuth.php', '/crmeb/utils', '/crmeb/utils/JwtAuth.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', 'jwt生成类'),
|
||
(1300, 'Queue.php', '/crmeb/utils', '/crmeb/utils/Queue.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '消息队列类'),
|
||
(1301, 'Str.php', '/crmeb/utils', '/crmeb/utils/Str.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '字符串处理类'),
|
||
(1302, 'Terminal.php', '/crmeb/utils', '/crmeb/utils/Terminal.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '命令行执行类'),
|
||
(1303, 'Translate.php', '/crmeb/utils', '/crmeb/utils/Translate.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '机器翻译类'),
|
||
(1304, 'fileVerification.php', '/crmeb/utils', '/crmeb/utils/fileVerification.php', 'file', '2023-04-28 10:38:17', '2023-04-28 10:38:17', '签名计算类'),
|
||
(1305, 'filetree.txt', '', '/filetree.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '目录结构'),
|
||
(1306, 'index.html', '', '/index.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '引导文件'),
|
||
(1307, 'public', '', '/public', 'dir', '2023-04-26 16:58:50', '2023-04-26 16:58:50', '静态文件目录'),
|
||
(1308, '.htaccess', '/public', '/public/.htaccess', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '网站apache伪静态文件配置'),
|
||
(1309, '.user.ini', '/public', '/public/.user.ini', 'file', '2023-04-26 16:57:16', '2023-04-26 16:57:13', ''),
|
||
(1310, 'admin', '/public', '/public/admin', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', '后台页面目录'),
|
||
(1311, 'css.worker.js', '/public/admin', '/public/admin/css.worker.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1312, 'editor.worker.js', '/public/admin', '/public/admin/editor.worker.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1313, 'favicon.ico', '/public/admin', '/public/admin/favicon.ico', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1314, 'html.worker.js', '/public/admin', '/public/admin/html.worker.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1315, 'index.html', '/public/admin', '/public/admin/index.html', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1316, 'json.worker.js', '/public/admin', '/public/admin/json.worker.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1317, 'system_static', '/public/admin', '/public/admin/system_static', 'dir', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1318, 'css', '/public/admin/system_static', '/public/admin/system_static/css', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', ''),
|
||
(1319, 'app.2128acc0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/app.2128acc0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1320, 'app.51793c3d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/app.51793c3d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1321, 'app.9298366e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/app.9298366e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1322, 'app.a5c31e50.css', '/public/admin/system_static/css', '/public/admin/system_static/css/app.a5c31e50.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1323, 'app.dd63f4d8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/app.dd63f4d8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1324, 'chunk-00dfde9d.6029ffa4.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-00dfde9d.6029ffa4.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1325, 'chunk-011a5902.a1f0b1ed.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-011a5902.a1f0b1ed.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1326, 'chunk-017372ad.80b155c7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-017372ad.80b155c7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1327, 'chunk-0206364c.e960d769.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0206364c.e960d769.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1328, 'chunk-02d5764c.a387a5f9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-02d5764c.a387a5f9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1329, 'chunk-030292b9.2d560533.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-030292b9.2d560533.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1330, 'chunk-04d9318e.bca09a64.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-04d9318e.bca09a64.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1331, 'chunk-05106bdc.b893c4af.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-05106bdc.b893c4af.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1332, 'chunk-05920e65.e2d75467.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-05920e65.e2d75467.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1333, 'chunk-05ea5920.30dce022.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-05ea5920.30dce022.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1334, 'chunk-06565fa8.f33e8737.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-06565fa8.f33e8737.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1335, 'chunk-06ebf9ce.3a9dc686.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-06ebf9ce.3a9dc686.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1336, 'chunk-06f7b54e.6674366d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-06f7b54e.6674366d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1337, 'chunk-079229da.f3a1ec95.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-079229da.f3a1ec95.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1338, 'chunk-07aab7e8.12163463.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-07aab7e8.12163463.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1339, 'chunk-07b5ff65.1b08dbb6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-07b5ff65.1b08dbb6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1340, 'chunk-07dedbcb.2ff42ac5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-07dedbcb.2ff42ac5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1341, 'chunk-07eb3cf3.572108c3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-07eb3cf3.572108c3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1342, 'chunk-07f8e82a.38337c8b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-07f8e82a.38337c8b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1343, 'chunk-0862a2d0.2e073c00.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0862a2d0.2e073c00.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1344, 'chunk-08e6167b.b42725be.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-08e6167b.b42725be.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1345, 'chunk-09539496.21906b70.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-09539496.21906b70.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1346, 'chunk-099175c5.89f04a35.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-099175c5.89f04a35.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1347, 'chunk-0a0e823b.98af5d00.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0a0e823b.98af5d00.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1348, 'chunk-0a354658.4e2d745a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0a354658.4e2d745a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1349, 'chunk-0b503f84.47c9981a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0b503f84.47c9981a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1350, 'chunk-0bf7991c.ec23e6f9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0bf7991c.ec23e6f9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1351, 'chunk-0c05df09.ec625add.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0c05df09.ec625add.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1352, 'chunk-0c8efa00.b0d7b9e0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0c8efa00.b0d7b9e0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1353, 'chunk-0c9c680c.1287012e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0c9c680c.1287012e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1354, 'chunk-0ca76063.b9a345b5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0ca76063.b9a345b5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1355, 'chunk-0d39ed33.6beb4ded.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0d39ed33.6beb4ded.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1356, 'chunk-0d7d8855.52d95e02.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0d7d8855.52d95e02.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1357, 'chunk-0e1bff56.0499104f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0e1bff56.0499104f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1358, 'chunk-0f053020.d1425a68.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0f053020.d1425a68.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1359, 'chunk-0fd166cd.fc89a506.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-0fd166cd.fc89a506.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1360, 'chunk-10953d93.54d8216d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-10953d93.54d8216d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1361, 'chunk-11a3b25b.94f87de6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-11a3b25b.94f87de6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1362, 'chunk-11af4722.31d891be.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-11af4722.31d891be.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1363, 'chunk-12f282dc.3606733e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-12f282dc.3606733e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1364, 'chunk-130c5632.2dffa892.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-130c5632.2dffa892.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1365, 'chunk-131583ed.760add5d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-131583ed.760add5d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1366, 'chunk-1363679e.84f91323.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1363679e.84f91323.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1367, 'chunk-14dd4022.34f7db24.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-14dd4022.34f7db24.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1368, 'chunk-14edecb8.2bdc7b96.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-14edecb8.2bdc7b96.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1369, 'chunk-153d0a1a.9f55a0e7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-153d0a1a.9f55a0e7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1370, 'chunk-157b4f48.fb9470f3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-157b4f48.fb9470f3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1371, 'chunk-15c8f2c2.bb4aea32.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-15c8f2c2.bb4aea32.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1372, 'chunk-168ce470.7458715b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-168ce470.7458715b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1373, 'chunk-16df2f4c.eddf13b2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-16df2f4c.eddf13b2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1374, 'chunk-1726de98.822786e8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1726de98.822786e8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1375, 'chunk-17da9750.439ce86b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-17da9750.439ce86b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1376, 'chunk-181702dc.fa1c2856.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-181702dc.fa1c2856.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1377, 'chunk-186376ec.dae5a74c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-186376ec.dae5a74c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1378, 'chunk-18d4a264.3a23573e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-18d4a264.3a23573e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1379, 'chunk-192b85c8.b1d7015d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-192b85c8.b1d7015d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1380, 'chunk-1ac44521.7e4ea005.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1ac44521.7e4ea005.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1381, 'chunk-1add119a.555bc19b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1add119a.555bc19b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1382, 'chunk-1ae29506.c8867b15.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1ae29506.c8867b15.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1383, 'chunk-1b0bd2cc.536a11c9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1b0bd2cc.536a11c9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1384, 'chunk-1b2bad82.65d216aa.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1b2bad82.65d216aa.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1385, 'chunk-1b4152e5.e9e85f76.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1b4152e5.e9e85f76.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1386, 'chunk-1b647dc4.f66053ac.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1b647dc4.f66053ac.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1387, 'chunk-1bc71a8c.77993446.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1bc71a8c.77993446.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1388, 'chunk-1c19d602.1a9e0147.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1c19d602.1a9e0147.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1389, 'chunk-1c71391a.fee5890e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1c71391a.fee5890e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1390, 'chunk-1c9d17cc.36ffa31d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1c9d17cc.36ffa31d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1391, 'chunk-1cb94d23.421a7c77.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1cb94d23.421a7c77.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1392, 'chunk-1cf27680.754868cc.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1cf27680.754868cc.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1393, 'chunk-1d823580.c95191a8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1d823580.c95191a8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1394, 'chunk-1db96cd5.754868cc.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1db96cd5.754868cc.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1395, 'chunk-1dca2a98.ee833ed4.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1dca2a98.ee833ed4.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1396, 'chunk-1dedce59.2a89d4d5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1dedce59.2a89d4d5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1397, 'chunk-1ef08e1b.f00c5e1a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1ef08e1b.f00c5e1a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1398, 'chunk-1ef2b5e4.421a7c77.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1ef2b5e4.421a7c77.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1399, 'chunk-1f894614.c0a99313.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1f894614.c0a99313.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1400, 'chunk-1fd6224d.8f115b7f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-1fd6224d.8f115b7f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1401, 'chunk-2076b67c.82c47fa6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2076b67c.82c47fa6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1402, 'chunk-225e7352.46baeea8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-225e7352.46baeea8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1403, 'chunk-22844407.cf1fd63a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-22844407.cf1fd63a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1404, 'chunk-228f60d2.7e55d531.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-228f60d2.7e55d531.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1405, 'chunk-22b4043a.d670809e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-22b4043a.d670809e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1406, 'chunk-22e64126.4dc73b4c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-22e64126.4dc73b4c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1407, 'chunk-23245ea4.c429dc00.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-23245ea4.c429dc00.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1408, 'chunk-23bc9c3e.cdfda7ba.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-23bc9c3e.cdfda7ba.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1409, 'chunk-23f1d398.f46eed4f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-23f1d398.f46eed4f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1410, 'chunk-2443ca8a.50123d85.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2443ca8a.50123d85.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1411, 'chunk-249e48fe.7805721e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-249e48fe.7805721e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1412, 'chunk-24bcd400.335e4475.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-24bcd400.335e4475.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1413, 'chunk-24dfe0e6.6ed9fb31.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-24dfe0e6.6ed9fb31.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1414, 'chunk-24ec4e0e.fa07380f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-24ec4e0e.fa07380f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1415, 'chunk-2535a63e.a10aaea1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2535a63e.a10aaea1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1416, 'chunk-25540271.392fa861.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-25540271.392fa861.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1417, 'chunk-26798ce6.d517fe9e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-26798ce6.d517fe9e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1418, 'chunk-26da89b4.6c45ae97.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-26da89b4.6c45ae97.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1419, 'chunk-27331629.2437fd16.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-27331629.2437fd16.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1420, 'chunk-2897e7e2.58b2b5a1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2897e7e2.58b2b5a1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1421, 'chunk-28f8fa16.3de7caac.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-28f8fa16.3de7caac.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1422, 'chunk-29a73690.933bf6b8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-29a73690.933bf6b8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1423, 'chunk-29d9e9c7.3fef3b8f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-29d9e9c7.3fef3b8f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1424, 'chunk-2a2e594c.51237d7c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2a2e594c.51237d7c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1425, 'chunk-2a68d25c.e2388245.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2a68d25c.e2388245.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1426, 'chunk-2a6fd2e4.0227b625.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2a6fd2e4.0227b625.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1427, 'chunk-2c811914.8f394152.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2c811914.8f394152.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1428, 'chunk-2d3ca166.f948dea3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2d3ca166.f948dea3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1429, 'chunk-2d92cc62.84945cb6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2d92cc62.84945cb6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1430, 'chunk-2dc9fc66.9fc3b547.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2dc9fc66.9fc3b547.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1431, 'chunk-2e6d7c7a.a2d95a93.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2e6d7c7a.a2d95a93.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1432, 'chunk-2f2a52ea.a07ce782.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2f2a52ea.a07ce782.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1433, 'chunk-2fa779f0.372c3841.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-2fa779f0.372c3841.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1434, 'chunk-310629e4.59177206.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-310629e4.59177206.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1435, 'chunk-3126fcbb.6904d876.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3126fcbb.6904d876.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1436, 'chunk-318359b8.f1415b7e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-318359b8.f1415b7e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1437, 'chunk-318cd060.3ae07c8e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-318cd060.3ae07c8e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1438, 'chunk-31f7f6f4.acdb4478.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-31f7f6f4.acdb4478.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1439, 'chunk-3211bc0c.0e5354e8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3211bc0c.0e5354e8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1440, 'chunk-3217e6f9.7c65855c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3217e6f9.7c65855c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1441, 'chunk-3252bb0a.71bb20f5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3252bb0a.71bb20f5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1442, 'chunk-33c7cfe1.752710d8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-33c7cfe1.752710d8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1443, 'chunk-33cfa904.aa21ae8c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-33cfa904.aa21ae8c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1444, 'chunk-33dc3354.eae4755a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-33dc3354.eae4755a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1445, 'chunk-345535b9.093c37d6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-345535b9.093c37d6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1446, 'chunk-347748ab.b6b97141.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-347748ab.b6b97141.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1447, 'chunk-347f00e3.41211080.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-347f00e3.41211080.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1448, 'chunk-34dc580b.891304a1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-34dc580b.891304a1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1449, 'chunk-354d56f3.dc94edda.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-354d56f3.dc94edda.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1450, 'chunk-374f12d2.f3dc7f46.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-374f12d2.f3dc7f46.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1451, 'chunk-37ba1a53.f19b441d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-37ba1a53.f19b441d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1452, 'chunk-37f63326.33a5524c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-37f63326.33a5524c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1453, 'chunk-38c857e2.d7ea39ff.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-38c857e2.d7ea39ff.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1454, 'chunk-38f2845b.98bd250f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-38f2845b.98bd250f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1455, 'chunk-394095d4.2c370ecb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-394095d4.2c370ecb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1456, 'chunk-3942d346.ae4d14e6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3942d346.ae4d14e6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1457, 'chunk-39487ca4.eef8e625.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-39487ca4.eef8e625.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1458, 'chunk-3970514f.7edf2b6d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3970514f.7edf2b6d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1459, 'chunk-398679d1.c627c4f2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-398679d1.c627c4f2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1460, 'chunk-39dc5197.9e202c41.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-39dc5197.9e202c41.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1461, 'chunk-3ac84326.6801945b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3ac84326.6801945b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1462, 'chunk-3af60686.d92106e9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3af60686.d92106e9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1463, 'chunk-3affab88.4d5dad9b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3affab88.4d5dad9b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1464, 'chunk-3b3f5c7c.b503ef2e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3b3f5c7c.b503ef2e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1465, 'chunk-3bd11c94.65fd9e5f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3bd11c94.65fd9e5f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1466, 'chunk-3c16c594.5bee562e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3c16c594.5bee562e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1467, 'chunk-3c26b362.205a824c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3c26b362.205a824c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1468, 'chunk-3d3b2d8e.131f1c7b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3d3b2d8e.131f1c7b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1469, 'chunk-3d6b888d.1ad7af4c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3d6b888d.1ad7af4c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1470, 'chunk-3dde579c.775917d2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3dde579c.775917d2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1471, 'chunk-3dfba956.2a74996c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3dfba956.2a74996c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1472, 'chunk-3e123c16.5860491f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3e123c16.5860491f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1473, 'chunk-3ead65b4.56d14bef.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3ead65b4.56d14bef.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1474, 'chunk-3fda7096.04f598bd.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-3fda7096.04f598bd.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1475, 'chunk-40003b7f.b34bbb83.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-40003b7f.b34bbb83.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1476, 'chunk-4037b518.9bf71c8c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4037b518.9bf71c8c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1477, 'chunk-40c51cef.555bc19b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-40c51cef.555bc19b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1478, 'chunk-40d1bd1a.6963886a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-40d1bd1a.6963886a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1479, 'chunk-42603b15.0f5a036f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-42603b15.0f5a036f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1480, 'chunk-426aca71.56f3d872.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-426aca71.56f3d872.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1481, 'chunk-43146ca4.f2ebd107.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-43146ca4.f2ebd107.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1482, 'chunk-433efe57.73e80914.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-433efe57.73e80914.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1483, 'chunk-43af4971.c0d022e6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-43af4971.c0d022e6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1484, 'chunk-45400840.69b12d7b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-45400840.69b12d7b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1485, 'chunk-4542f131.3ec4ea39.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4542f131.3ec4ea39.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1486, 'chunk-45c36ee8.4ffc7985.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-45c36ee8.4ffc7985.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1487, 'chunk-464a5aac.ce0c665b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-464a5aac.ce0c665b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1488, 'chunk-46567bb0.2708018a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-46567bb0.2708018a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1489, 'chunk-472197e0.1a216cc5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-472197e0.1a216cc5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1490, 'chunk-474ae24e.1fa5d4be.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-474ae24e.1fa5d4be.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1491, 'chunk-474e923b.2770ce3b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-474e923b.2770ce3b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1492, 'chunk-47b48296.9bc6525a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-47b48296.9bc6525a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1493, 'chunk-47e494c8.09788139.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-47e494c8.09788139.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1494, 'chunk-4903def6.254327f8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4903def6.254327f8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1495, 'chunk-49268c10.1f0571cb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-49268c10.1f0571cb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1496, 'chunk-49680f39.07eb1402.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-49680f39.07eb1402.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1497, 'chunk-4a6e0eaf.fa0dfb87.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4a6e0eaf.fa0dfb87.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1498, 'chunk-4acd4264.926cee7d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4acd4264.926cee7d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1499, 'chunk-4ada2d76.f479d888.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4ada2d76.f479d888.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1500, 'chunk-4b568c54.b8417b9f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4b568c54.b8417b9f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1501, 'chunk-4b6f0332.6b6b720c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4b6f0332.6b6b720c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1502, 'chunk-4bbbd790.db9045bb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4bbbd790.db9045bb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1503, 'chunk-4bbff9bb.e1fa542e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4bbff9bb.e1fa542e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1504, 'chunk-4bdab239.d8222842.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4bdab239.d8222842.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1505, 'chunk-4ca4f1ca.891304a1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4ca4f1ca.891304a1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1506, 'chunk-4d2be200.754868cc.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4d2be200.754868cc.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1507, 'chunk-4de97dce.232bd18a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4de97dce.232bd18a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1508, 'chunk-4f2c2164.421a7c77.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4f2c2164.421a7c77.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1509, 'chunk-4fe8ea66.2a2a85e0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4fe8ea66.2a2a85e0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1510, 'chunk-4fec683e.c8241b72.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-4fec683e.c8241b72.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1511, 'chunk-50423a09.a141a3ee.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-50423a09.a141a3ee.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1512, 'chunk-51b5ba90.52216f4b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-51b5ba90.52216f4b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1513, 'chunk-524cca06.d15a1978.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-524cca06.d15a1978.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1514, 'chunk-526679c4.61b14e04.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-526679c4.61b14e04.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1515, 'chunk-526c110a.6ae3129e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-526c110a.6ae3129e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1516, 'chunk-526e87ea.04682afb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-526e87ea.04682afb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1517, 'chunk-52704a5a.d05c5b40.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-52704a5a.d05c5b40.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1518, 'chunk-53577b14.ed499a06.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-53577b14.ed499a06.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1519, 'chunk-53a4d7e3.7f74963c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-53a4d7e3.7f74963c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1520, 'chunk-540c9406.7a7eeec0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-540c9406.7a7eeec0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1521, 'chunk-54b54e02.f770cfc0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-54b54e02.f770cfc0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1522, 'chunk-54dd0fe8.ec64c687.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-54dd0fe8.ec64c687.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1523, 'chunk-55244c25.ddc6ec7c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-55244c25.ddc6ec7c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1524, 'chunk-55297486.2e8f52d1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-55297486.2e8f52d1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1525, 'chunk-55a83c65.09bdf357.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-55a83c65.09bdf357.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1526, 'chunk-55b0e5ff.08006483.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-55b0e5ff.08006483.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1527, 'chunk-55df0dc3.e15adb10.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-55df0dc3.e15adb10.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1528, 'chunk-56e0c136.6c33ddf3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-56e0c136.6c33ddf3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1529, 'chunk-571bcdb4.299052e9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-571bcdb4.299052e9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1530, 'chunk-58289673.3e998d1e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-58289673.3e998d1e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1531, 'chunk-58344a1a.77475f5f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-58344a1a.77475f5f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1532, 'chunk-5879d7c6.55495be0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5879d7c6.55495be0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1533, 'chunk-58a4433e.65d24d33.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-58a4433e.65d24d33.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1534, 'chunk-592dcdcb.76124f3d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-592dcdcb.76124f3d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1535, 'chunk-59aafa1f.8e08d326.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-59aafa1f.8e08d326.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1536, 'chunk-5a39e378.622f82d7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5a39e378.622f82d7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1537, 'chunk-5b2fd0b4.5616306d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5b2fd0b4.5616306d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1538, 'chunk-5be71a0e.90d552c1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5be71a0e.90d552c1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1539, 'chunk-5c905c73.95b96584.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5c905c73.95b96584.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1540, 'chunk-5d68fff0.619da802.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5d68fff0.619da802.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1541, 'chunk-5d9d7992.e07e4ae0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5d9d7992.e07e4ae0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1542, 'chunk-5dd705ca.fbd4373e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5dd705ca.fbd4373e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1543, 'chunk-5df7e78c.f9d66c59.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5df7e78c.f9d66c59.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1544, 'chunk-5e204c5f.4f3bfc8c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5e204c5f.4f3bfc8c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1545, 'chunk-5ebef968.baf7ba27.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5ebef968.baf7ba27.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1546, 'chunk-5ee0e49e.67de22cb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5ee0e49e.67de22cb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1547, 'chunk-5f37bdfc.67de22cb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5f37bdfc.67de22cb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1548, 'chunk-5f7068f0.943926ac.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5f7068f0.943926ac.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1549, 'chunk-5fdfd370.cb492a77.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-5fdfd370.cb492a77.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1550, 'chunk-604f7e5c.2d8ab0ec.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-604f7e5c.2d8ab0ec.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1551, 'chunk-60b63af9.8f0f4543.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-60b63af9.8f0f4543.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1552, 'chunk-61a03dec.38e8d034.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-61a03dec.38e8d034.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1553, 'chunk-61b424c6.b283ab92.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-61b424c6.b283ab92.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1554, 'chunk-6258450f.7456edae.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6258450f.7456edae.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1555, 'chunk-62acd4a6.dbadc4b0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-62acd4a6.dbadc4b0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1556, 'chunk-62b37966.5d70fb51.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-62b37966.5d70fb51.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1557, 'chunk-62e276d0.0df22b7a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-62e276d0.0df22b7a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1558, 'chunk-63fc945c.3956c14c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-63fc945c.3956c14c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1559, 'chunk-64cbd134.015efae6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-64cbd134.015efae6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1560, 'chunk-657d3466.6f069374.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-657d3466.6f069374.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1561, 'chunk-658a3236.040e7b52.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-658a3236.040e7b52.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1562, 'chunk-66426965.d6cd32b4.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-66426965.d6cd32b4.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1563, 'chunk-67cf1b80.d3a3e2a7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-67cf1b80.d3a3e2a7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1564, 'chunk-688e7f86.1ec8a80d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-688e7f86.1ec8a80d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1565, 'chunk-68b46b36.eb7e3e8b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-68b46b36.eb7e3e8b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1566, 'chunk-692a5f7e.4544bc0a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-692a5f7e.4544bc0a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1567, 'chunk-6a2fb179.e2724184.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6a2fb179.e2724184.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1568, 'chunk-6b1e6d40.56c9c1c9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6b1e6d40.56c9c1c9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1569, 'chunk-6b8f980e.cae992b7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6b8f980e.cae992b7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1570, 'chunk-6bc1b311.f630f334.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6bc1b311.f630f334.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1571, 'chunk-6bd151d1.56bface2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6bd151d1.56bface2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1572, 'chunk-6bdf096a.c7f5ac02.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6bdf096a.c7f5ac02.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1573, 'chunk-6d110ae8.221d1778.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6d110ae8.221d1778.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1574, 'chunk-6e9f76a0.71bb20f5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6e9f76a0.71bb20f5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1575, 'chunk-6ea40d1c.39235fd1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6ea40d1c.39235fd1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1576, 'chunk-6f56b2e0.3c04e944.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6f56b2e0.3c04e944.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1577, 'chunk-6f84851e.978c76f0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-6f84851e.978c76f0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1578, 'chunk-705a2f42.01f272b8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-705a2f42.01f272b8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1579, 'chunk-706c43db.552b0136.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-706c43db.552b0136.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1580, 'chunk-70c1cdda.7b0b945d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-70c1cdda.7b0b945d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1581, 'chunk-71d55753.7f1e0886.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-71d55753.7f1e0886.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1582, 'chunk-72205bcc.f1b8835e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-72205bcc.f1b8835e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1583, 'chunk-72b8efee.f36d59c2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-72b8efee.f36d59c2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1584, 'chunk-731d0dcd.79ec1310.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-731d0dcd.79ec1310.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1585, 'chunk-73b6c47a.e8411a2d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-73b6c47a.e8411a2d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1586, 'chunk-7453b76c.e7b18228.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7453b76c.e7b18228.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1587, 'chunk-745b9bfa.cd34c57a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-745b9bfa.cd34c57a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1588, 'chunk-754e64fb.9715f8ed.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-754e64fb.9715f8ed.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1589, 'chunk-75955b98.1eff79aa.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-75955b98.1eff79aa.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1590, 'chunk-76466ae2.0271eb30.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-76466ae2.0271eb30.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1591, 'chunk-76e67188.6b28cbe2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-76e67188.6b28cbe2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1592, 'chunk-77194a60.deb99f80.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-77194a60.deb99f80.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1593, 'chunk-771c8a96.cd64ad20.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-771c8a96.cd64ad20.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1594, 'chunk-772baf98.828e2be5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-772baf98.828e2be5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1595, 'chunk-7739374b.020997b5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7739374b.020997b5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1596, 'chunk-7773fc71.4a209b21.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7773fc71.4a209b21.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1597, 'chunk-779e3b9c.ae8199d1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-779e3b9c.ae8199d1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1598, 'chunk-77c8a796.7566e4c5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-77c8a796.7566e4c5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1599, 'chunk-77d9cfec.ad66d021.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-77d9cfec.ad66d021.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1600, 'chunk-78282f65.96cd661e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-78282f65.96cd661e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1601, 'chunk-78f28660.a2ce4b29.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-78f28660.a2ce4b29.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1602, 'chunk-7a3d9eb5.676f4081.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7a3d9eb5.676f4081.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1603, 'chunk-7a92e064.8c1f76a7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7a92e064.8c1f76a7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1604, 'chunk-7aa0e78c.5765ce40.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7aa0e78c.5765ce40.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1605, 'chunk-7af22251.cf8abc80.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7af22251.cf8abc80.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1606, 'chunk-7b38ba8f.f3fc72c2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7b38ba8f.f3fc72c2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1607, 'chunk-7b831a91.562c3559.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7b831a91.562c3559.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1608, 'chunk-7bbdd5d4.ab07349b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7bbdd5d4.ab07349b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1609, 'chunk-7c140509.7eef744e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7c140509.7eef744e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1610, 'chunk-7c4d29dc.16791e1c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7c4d29dc.16791e1c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1611, 'chunk-7c6b689b.d47dc28c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7c6b689b.d47dc28c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1612, 'chunk-7ca413d5.eb5fe77d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7ca413d5.eb5fe77d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1613, 'chunk-7cf74c78.49904f38.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7cf74c78.49904f38.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1614, 'chunk-7d90b9a3.cbe02e34.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7d90b9a3.cbe02e34.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1615, 'chunk-7da9e4f8.1b39ee59.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7da9e4f8.1b39ee59.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1616, 'chunk-7df421ac.ecb1cac6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7df421ac.ecb1cac6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1617, 'chunk-7e087517.0a7b4a84.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7e087517.0a7b4a84.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1618, 'chunk-7ee09251.9f7b9db8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7ee09251.9f7b9db8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1619, 'chunk-7f05d390.4db26818.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7f05d390.4db26818.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1620, 'chunk-7f6680c5.700ca69a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7f6680c5.700ca69a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1621, 'chunk-7f89f9ba.544d1dce.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7f89f9ba.544d1dce.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1622, 'chunk-7feba4f0.335e4475.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-7feba4f0.335e4475.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1623, 'chunk-8088a85e.67de22cb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8088a85e.67de22cb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1624, 'chunk-829aa68e.8e0251ce.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-829aa68e.8e0251ce.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1625, 'chunk-82abb0a6.681dad8a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-82abb0a6.681dad8a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1626, 'chunk-82e13746.0a553977.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-82e13746.0a553977.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1627, 'chunk-83b449fc.45b8a12f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-83b449fc.45b8a12f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1628, 'chunk-83d2a766.6b18acd6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-83d2a766.6b18acd6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1629, 'chunk-884c56b8.93ff3327.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-884c56b8.93ff3327.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1630, 'chunk-8997cdd4.eef8e625.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8997cdd4.eef8e625.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1631, 'chunk-8b43bd72.b4523145.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8b43bd72.b4523145.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1632, 'chunk-8c07836c.109a0aea.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8c07836c.109a0aea.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1633, 'chunk-8dd55324.c4b6cf5c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8dd55324.c4b6cf5c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1634, 'chunk-8eef0434.c7513d37.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8eef0434.c7513d37.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1635, 'chunk-8f26de76.f7bfc789.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-8f26de76.f7bfc789.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1636, 'chunk-926cafa6.2c00da20.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-926cafa6.2c00da20.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1637, 'chunk-9342bcb8.5616306d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9342bcb8.5616306d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1638, 'chunk-9368228a.d21d496a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9368228a.d21d496a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1639, 'chunk-93a67276.9cf426b5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-93a67276.9cf426b5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1640, 'chunk-93d69260.84d6843b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-93d69260.84d6843b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1641, 'chunk-94b63ad6.9cca98ab.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-94b63ad6.9cca98ab.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1642, 'chunk-95552848.e067905a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-95552848.e067905a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1643, 'chunk-9717edec.3d047d06.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9717edec.3d047d06.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1644, 'chunk-97554c44.f23a4aa3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-97554c44.f23a4aa3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1645, 'chunk-9818dcb0.14a83434.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9818dcb0.14a83434.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1646, 'chunk-98e705ee.3ae76791.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-98e705ee.3ae76791.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1647, 'chunk-9b49c2a6.bdc6d8f6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9b49c2a6.bdc6d8f6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1648, 'chunk-9cdff0ca.07896a7f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9cdff0ca.07896a7f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1649, 'chunk-9db35086.2597b56c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-9db35086.2597b56c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1650, 'chunk-a1b1ce8e.94c9a2c5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-a1b1ce8e.94c9a2c5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1651, 'chunk-a2142d04.f3497132.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-a2142d04.f3497132.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1652, 'chunk-a6a6c792.281204ab.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-a6a6c792.281204ab.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1653, 'chunk-a82e7358.af84e76f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-a82e7358.af84e76f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1654, 'chunk-a9bccc00.94071fd8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-a9bccc00.94071fd8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1655, 'chunk-ac14e078.7cba7115.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-ac14e078.7cba7115.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1656, 'chunk-aceb5616.005d8886.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-aceb5616.005d8886.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1657, 'chunk-b030fc0a.63dd6ea1.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b030fc0a.63dd6ea1.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1658, 'chunk-b12df032.4bb3bb3c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b12df032.4bb3bb3c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1659, 'chunk-b19bdce0.1b08dbb6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b19bdce0.1b08dbb6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1660, 'chunk-b2498f9c.1b08dbb6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b2498f9c.1b08dbb6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1661, 'chunk-b2b9817c.e38b1a89.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b2b9817c.e38b1a89.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1662, 'chunk-b41662c0.85e17eaf.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b41662c0.85e17eaf.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1663, 'chunk-b85bf2f6.0dcb2386.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-b85bf2f6.0dcb2386.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1664, 'chunk-bbdf5830.c8c28da3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-bbdf5830.c8c28da3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1665, 'chunk-bc166014.4fa68992.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-bc166014.4fa68992.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1666, 'chunk-bc8ebd4c.a1d9e65b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-bc8ebd4c.a1d9e65b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1667, 'chunk-bd3916d4.536daedd.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-bd3916d4.536daedd.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1668, 'chunk-c380ac22.7a085ce3.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c380ac22.7a085ce3.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1669, 'chunk-c560f4be.b1bf3d1a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c560f4be.b1bf3d1a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1670, 'chunk-c582c15a.55ce6698.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c582c15a.55ce6698.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1671, 'chunk-c7b9a360.3de40d00.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c7b9a360.3de40d00.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1672, 'chunk-c914ed5c.5cefbdc0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c914ed5c.5cefbdc0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1673, 'chunk-c92068d8.c4386d13.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-c92068d8.c4386d13.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1674, 'chunk-cb1ada30.f158888a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cb1ada30.f158888a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1675, 'chunk-cc91cc7c.ecdc6930.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cc91cc7c.ecdc6930.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1676, 'chunk-cc93a18a.b92164ea.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cc93a18a.b92164ea.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1677, 'chunk-cd4d630e.2b50686a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cd4d630e.2b50686a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1678, 'chunk-cdbf138e.4d2ae999.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cdbf138e.4d2ae999.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1679, 'chunk-cdf197d8.27a15f73.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cdf197d8.27a15f73.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1680, 'chunk-ce74252a.9e74d342.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-ce74252a.9e74d342.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1681, 'chunk-ce8ebbb4.268d46a7.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-ce8ebbb4.268d46a7.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1682, 'chunk-cf36bb2e.463426b2.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cf36bb2e.463426b2.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1683, 'chunk-cfcbc61a.52364a8b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-cfcbc61a.52364a8b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1684, 'chunk-d1664786.e60ad228.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-d1664786.e60ad228.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1685, 'chunk-d225cbf0.e67dd67f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-d225cbf0.e67dd67f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1686, 'chunk-d36740f2.ff67f03f.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-d36740f2.ff67f03f.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1687, 'chunk-d9959eb8.91cef06e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-d9959eb8.91cef06e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1688, 'chunk-dde0a81e.76cde8c8.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-dde0a81e.76cde8c8.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1689, 'chunk-de95e6f2.bd848b76.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-de95e6f2.bd848b76.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1690, 'chunk-df056abe.eafdc5e6.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-df056abe.eafdc5e6.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1691, 'chunk-e27ab2e4.5f3aee83.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-e27ab2e4.5f3aee83.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1692, 'chunk-e2ed07fc.00ce3e7e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-e2ed07fc.00ce3e7e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1693, 'chunk-e5221e6a.48de1bba.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-e5221e6a.48de1bba.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1694, 'chunk-e9603986.ac15576c.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-e9603986.ac15576c.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1695, 'chunk-e9d423c8.53b1763d.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-e9d423c8.53b1763d.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1696, 'chunk-ea0991f4.2cce8d1e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-ea0991f4.2cce8d1e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1697, 'chunk-efb7fe90.0ba3a678.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-efb7fe90.0ba3a678.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1698, 'chunk-f184d4f6.81b53bbb.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f184d4f6.81b53bbb.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1699, 'chunk-f1b3bf12.55e9711e.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f1b3bf12.55e9711e.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1700, 'chunk-f1fc9bde.d5cad0ec.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f1fc9bde.d5cad0ec.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1701, 'chunk-f23ecd5a.ad132d94.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f23ecd5a.ad132d94.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1702, 'chunk-f73ef548.7e75bae9.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f73ef548.7e75bae9.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1703, 'chunk-f91dca6a.7618fa37.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f91dca6a.7618fa37.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1704, 'chunk-f9d8c10a.1ce7e3b0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f9d8c10a.1ce7e3b0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1705, 'chunk-f9fb41f6.bd88a689.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-f9fb41f6.bd88a689.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1706, 'chunk-fbe95726.1a57fc27.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-fbe95726.1a57fc27.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1707, 'chunk-fd44b72c.8362eb7b.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-fd44b72c.8362eb7b.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1708, 'chunk-fd75d1da.ebf3117a.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-fd75d1da.ebf3117a.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1709, 'chunk-fde7c08a.978c76f0.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-fde7c08a.978c76f0.css', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1710, 'chunk-vendors.d4d844e5.css', '/public/admin/system_static/css', '/public/admin/system_static/css/chunk-vendors.d4d844e5.css', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1711, 'fonts', '/public/admin/system_static', '/public/admin/system_static/fonts', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', ''),
|
||
(1712, 'codicon.b821e161.ttf', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/codicon.b821e161.ttf', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1713, 'element-icons.535877f5.woff', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/element-icons.535877f5.woff', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1714, 'element-icons.732389de.ttf', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/element-icons.732389de.ttf', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1715, 'iconfont.3bb04b23.woff', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfont.3bb04b23.woff', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1716, 'iconfont.ba3ee7a9.ttf', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfont.ba3ee7a9.ttf', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1717, 'iconfont.edf75d6a.eot', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfont.edf75d6a.eot', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1718, 'iconfontYI.40366cb7.woff', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfontYI.40366cb7.woff', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1719, 'iconfontYI.61aade08.ttf', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfontYI.61aade08.ttf', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1720, 'iconfontYI.d1990cbc.eot', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/iconfontYI.d1990cbc.eot', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1721, 'ionicons.143146fa.woff2', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/ionicons.143146fa.woff2', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1722, 'ionicons.99ac3308.woff', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/ionicons.99ac3308.woff', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1723, 'ionicons.d535a25a.ttf', '/public/admin/system_static/fonts', '/public/admin/system_static/fonts/ionicons.d535a25a.ttf', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1724, 'img', '/public/admin/system_static', '/public/admin/system_static/img', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', ''),
|
||
(1725, 'abbreviation.a562fab6.png', '/public/admin/system_static/img', '/public/admin/system_static/img/abbreviation.a562fab6.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1726, 'abbreviationBig.8b2693c4.png', '/public/admin/system_static/img', '/public/admin/system_static/img/abbreviationBig.8b2693c4.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1727, 'abbreviationSmall.b17dca11.png', '/public/admin/system_static/img', '/public/admin/system_static/img/abbreviationSmall.b17dca11.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1728, 'ag-phone.596fa229.png', '/public/admin/system_static/img', '/public/admin/system_static/img/ag-phone.596fa229.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1729, 'bg.33ece377.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/bg.33ece377.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1730, 'bg.ee41a758.png', '/public/admin/system_static/img', '/public/admin/system_static/img/bg.ee41a758.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1731, 'bg2.c636f6a6.png', '/public/admin/system_static/img', '/public/admin/system_static/img/bg2.c636f6a6.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1732, 'bg3.c43f8c09.png', '/public/admin/system_static/img', '/public/admin/system_static/img/bg3.c43f8c09.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1733, 'bluesgin.032bae4b.png', '/public/admin/system_static/img', '/public/admin/system_static/img/bluesgin.032bae4b.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1734, 'bule.1786e93d.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/bule.1786e93d.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1735, 'default.6b914f9c.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/default.6b914f9c.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1736, 'error-401.98bba5b1.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/error-401.98bba5b1.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1737, 'error-404.94756dcf.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/error-404.94756dcf.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1738, 'error-500.a371eabc.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/error-500.a371eabc.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1739, 'f.5aa43cd3.png', '/public/admin/system_static/img', '/public/admin/system_static/img/f.5aa43cd3.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1740, 'feed-icon.99e39a74.png', '/public/admin/system_static/img', '/public/admin/system_static/img/feed-icon.99e39a74.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1741, 'foo1-01.003b4be4.png', '/public/admin/system_static/img', '/public/admin/system_static/img/foo1-01.003b4be4.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1742, 'foo3-01.a1ab32aa.png', '/public/admin/system_static/img', '/public/admin/system_static/img/foo3-01.a1ab32aa.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1743, 'foo4-01.b50f04b1.png', '/public/admin/system_static/img', '/public/admin/system_static/img/foo4-01.b50f04b1.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1744, 'green.ad79683b.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/green.ad79683b.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1745, 'greesgin.43ae54b5.png', '/public/admin/system_static/img', '/public/admin/system_static/img/greesgin.43ae54b5.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1746, 'head.cfd4b538.gif', '/public/admin/system_static/img', '/public/admin/system_static/img/head.cfd4b538.gif', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1747, 'iconfont.13b90fe6.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfont.13b90fe6.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1748, 'iconfont.28f25a95.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfont.28f25a95.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1749, 'iconfont.e48d5fe1.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfont.e48d5fe1.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1750, 'iconfont.e9f41a95.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfont.e9f41a95.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1751, 'iconfontYI.2ade83ca.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfontYI.2ade83ca.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1752, 'iconfontYI.86efbf7b.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/iconfontYI.86efbf7b.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1753, 'integral.fcfc352b.png', '/public/admin/system_static/img', '/public/admin/system_static/img/integral.fcfc352b.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1754, 'ionicons.a2c4a261.svg', '/public/admin/system_static/img', '/public/admin/system_static/img/ionicons.a2c4a261.svg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1755, 'kefu.6c63578f.png', '/public/admin/system_static/img', '/public/admin/system_static/img/kefu.6c63578f.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1756, 'kfbg_2.c2db7dc6.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/kfbg_2.c2db7dc6.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1757, 'line.05bf1c84.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/line.05bf1c84.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1758, 'logo-dark.b9962944.png', '/public/admin/system_static/img', '/public/admin/system_static/img/logo-dark.b9962944.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1759, 'logo.eb6eba32.png', '/public/admin/system_static/img', '/public/admin/system_static/img/logo.eb6eba32.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1760, 'look.62b51bae.png', '/public/admin/system_static/img', '/public/admin/system_static/img/look.62b51bae.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1761, 'm_bg.be5b7aa5.png', '/public/admin/system_static/img', '/public/admin/system_static/img/m_bg.be5b7aa5.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1762, 'member.b885cf62.png', '/public/admin/system_static/img', '/public/admin/system_static/img/member.b885cf62.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1763, 'mobilehead.1c931282.png', '/public/admin/system_static/img', '/public/admin/system_static/img/mobilehead.1c931282.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1764, 'no.7de91001.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no.7de91001.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1765, 'no_all.174e30c0.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_all.174e30c0.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1766, 'no_chat.b9c3e583.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_chat.b9c3e583.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1767, 'no_fh.977a0fb8.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_fh.977a0fb8.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1768, 'no_tk.401d40f4.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_tk.401d40f4.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1769, 'no_user.a09b282b.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_user.a09b282b.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1770, 'no_zf.e61fe9b5.png', '/public/admin/system_static/img', '/public/admin/system_static/img/no_zf.e61fe9b5.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1771, 'oragesgin.00077d3a.png', '/public/admin/system_static/img', '/public/admin/system_static/img/oragesgin.00077d3a.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1772, 'orange.78f28374.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/orange.78f28374.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1773, 'pcbanner.23f05e2e.png', '/public/admin/system_static/img', '/public/admin/system_static/img/pcbanner.23f05e2e.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1774, 'pclogin.3d27e2c2.png', '/public/admin/system_static/img', '/public/admin/system_static/img/pclogin.3d27e2c2.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1775, 'phonebg.632cc2f9.png', '/public/admin/system_static/img', '/public/admin/system_static/img/phonebg.632cc2f9.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1776, 'pink.a3f8f9ed.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/pink.a3f8f9ed.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1777, 'pinksgin.0e1c51b4.png', '/public/admin/system_static/img', '/public/admin/system_static/img/pinksgin.0e1c51b4.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1778, 'pricetitle.d0496d6f.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/pricetitle.d0496d6f.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1779, 'red.a05c2bd5.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/red.a05c2bd5.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1780, 'redsgin.d8b0c12e.png', '/public/admin/system_static/img', '/public/admin/system_static/img/redsgin.d8b0c12e.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1781, 'ren.c7bc0d99.png', '/public/admin/system_static/img', '/public/admin/system_static/img/ren.c7bc0d99.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1782, 'sheet_apple_64_indexed_256colors.f99f1af2.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_apple_64_indexed_256colors.f99f1af2.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1783, 'sheet_emojione_64_indexed_128.5953c7ea.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_emojione_64_indexed_128.5953c7ea.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1784, 'sheet_facebook_64_indexed_128.f1911246.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_facebook_64_indexed_128.f1911246.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1785, 'sheet_google_64_indexed_128.04280c7a.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_google_64_indexed_128.04280c7a.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1786, 'sheet_messenger_64_indexed_128.68a885d7.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_messenger_64_indexed_128.68a885d7.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1787, 'sheet_twitter_64_indexed_128.0ebbf2e8.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sheet_twitter_64_indexed_128.0ebbf2e8.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1788, 'sort01.e157a5ea.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/sort01.e157a5ea.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1789, 'sort02.feab1b79.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/sort02.feab1b79.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1790, 'sort03.fbcd456c.png', '/public/admin/system_static/img', '/public/admin/system_static/img/sort03.fbcd456c.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1791, 'sw.3ef10e8b.jpg', '/public/admin/system_static/img', '/public/admin/system_static/img/sw.3ef10e8b.jpg', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1792, 'user01.3e2e9bb6.png', '/public/admin/system_static/img', '/public/admin/system_static/img/user01.3e2e9bb6.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1793, 'user_vip.7fa6644b.png', '/public/admin/system_static/img', '/public/admin/system_static/img/user_vip.7fa6644b.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1794, 'wutu.d797d845.png', '/public/admin/system_static/img', '/public/admin/system_static/img/wutu.d797d845.png', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1795, 'js', '/public/admin/system_static', '/public/admin/system_static/js', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', ''),
|
||
(1796, 'app.0d48ca32.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.0d48ca32.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1797, 'app.31344de0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.31344de0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1798, 'app.6c0fe1e4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.6c0fe1e4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1799, 'app.858e2258.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.858e2258.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1800, 'app.9ee66250.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.9ee66250.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1801, 'app.b6c8795b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/app.b6c8795b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1802, 'chunk-00dfde9d.8ebb9315.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-00dfde9d.8ebb9315.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1803, 'chunk-011a5902.241be214.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-011a5902.241be214.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1804, 'chunk-017372ad.c69902cf.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-017372ad.c69902cf.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1805, 'chunk-0206364c.f71fa2de.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0206364c.f71fa2de.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1806, 'chunk-02d5764c.3be4ce64.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-02d5764c.3be4ce64.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1807, 'chunk-030292b9.9e0b36bd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-030292b9.9e0b36bd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1808, 'chunk-030292b9.c6ba02e7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-030292b9.c6ba02e7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1809, 'chunk-04d9318e.a82edfe6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-04d9318e.a82edfe6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1810, 'chunk-05106bdc.882d17f9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-05106bdc.882d17f9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1811, 'chunk-05920e65.aa61c256.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-05920e65.aa61c256.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1812, 'chunk-05ea5920.9b8a5d37.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-05ea5920.9b8a5d37.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1813, 'chunk-06565fa8.f863be28.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-06565fa8.f863be28.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1814, 'chunk-06ebf9ce.abc205e1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-06ebf9ce.abc205e1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1815, 'chunk-06f7b54e.d681fc45.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-06f7b54e.d681fc45.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1816, 'chunk-079229da.08356d92.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-079229da.08356d92.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1817, 'chunk-07aab7e8.a10aa29e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-07aab7e8.a10aa29e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1818, 'chunk-07b5ff65.b654d839.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-07b5ff65.b654d839.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1819, 'chunk-07dedbcb.e9a54aee.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-07dedbcb.e9a54aee.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1820, 'chunk-07eb3cf3.b1c685e2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-07eb3cf3.b1c685e2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1821, 'chunk-07f8e82a.da407641.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-07f8e82a.da407641.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1822, 'chunk-0862a2d0.6dab5a96.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0862a2d0.6dab5a96.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1823, 'chunk-08e6167b.650acf92.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-08e6167b.650acf92.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1824, 'chunk-09539496.0e0e7ca7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-09539496.0e0e7ca7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1825, 'chunk-099175c5.ad6055c5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-099175c5.ad6055c5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1826, 'chunk-0a0e823b.05b60af9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0a0e823b.05b60af9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1827, 'chunk-0a354658.0f4e1c10.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0a354658.0f4e1c10.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1828, 'chunk-0b503f84.fc6de974.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0b503f84.fc6de974.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1829, 'chunk-0b65ffb6.b018f8a5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0b65ffb6.b018f8a5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1830, 'chunk-0bf7991c.52f20cf1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0bf7991c.52f20cf1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1831, 'chunk-0c05df09.23eea8ef.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0c05df09.23eea8ef.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1832, 'chunk-0c8efa00.fa92e85d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0c8efa00.fa92e85d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1833, 'chunk-0c9c680c.3ca1675d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0c9c680c.3ca1675d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1834, 'chunk-0ca76063.7cab55b8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0ca76063.7cab55b8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1835, 'chunk-0d39ed33.3756eefd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0d39ed33.3756eefd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1836, 'chunk-0d7d8855.7b9aac55.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0d7d8855.7b9aac55.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1837, 'chunk-0e1bff56.b928e897.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0e1bff56.b928e897.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1838, 'chunk-0f053020.0237f2b5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0f053020.0237f2b5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1839, 'chunk-0fd166cd.238df053.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0fd166cd.238df053.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1840, 'chunk-0fd166cd.d2dd8560.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-0fd166cd.d2dd8560.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1841, 'chunk-10953d93.d75608cb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-10953d93.d75608cb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1842, 'chunk-11a3b25b.82fa3fa5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-11a3b25b.82fa3fa5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1843, 'chunk-11af4722.856ef9de.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-11af4722.856ef9de.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1844, 'chunk-12f282dc.8ac88c0c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-12f282dc.8ac88c0c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1845, 'chunk-130c5632.35233b65.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-130c5632.35233b65.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1846, 'chunk-131583ed.c4477ced.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-131583ed.c4477ced.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1847, 'chunk-1363679e.2d99c1a4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1363679e.2d99c1a4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1848, 'chunk-14dd4022.3f336b41.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-14dd4022.3f336b41.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1849, 'chunk-14edecb8.a426b7f7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-14edecb8.a426b7f7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1850, 'chunk-153d0a1a.7e606dd7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-153d0a1a.7e606dd7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1851, 'chunk-157b4f48.58eb1275.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-157b4f48.58eb1275.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1852, 'chunk-15c8f2c2.d19e0e1f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-15c8f2c2.d19e0e1f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1853, 'chunk-168ce470.3fa445c9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-168ce470.3fa445c9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1854, 'chunk-16df2f4c.d9f25fc5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-16df2f4c.d9f25fc5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1855, 'chunk-1726de98.bc8f762c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1726de98.bc8f762c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1856, 'chunk-17da9750.8cd0c6c0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-17da9750.8cd0c6c0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1857, 'chunk-181702dc.db4d60de.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-181702dc.db4d60de.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1858, 'chunk-186376ec.3eff73fe.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-186376ec.3eff73fe.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1859, 'chunk-18d4a264.a1a73d71.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-18d4a264.a1a73d71.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1860, 'chunk-192b85c8.a82dae5a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-192b85c8.a82dae5a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1861, 'chunk-1ac44521.5c2ae551.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1ac44521.5c2ae551.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1862, 'chunk-1ad6cbf9.86affe4e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1ad6cbf9.86affe4e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1863, 'chunk-1add119a.0440cfab.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1add119a.0440cfab.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1864, 'chunk-1ae29506.441be12d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1ae29506.441be12d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1865, 'chunk-1b0bd2cc.bb1ef7f5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1b0bd2cc.bb1ef7f5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1866, 'chunk-1b2bad82.f4303a78.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1b2bad82.f4303a78.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1867, 'chunk-1b4152e5.07a7651b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1b4152e5.07a7651b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1868, 'chunk-1b647dc4.f6663777.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1b647dc4.f6663777.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1869, 'chunk-1bc71a8c.fef1d0d0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1bc71a8c.fef1d0d0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1870, 'chunk-1c19d602.867ee0a7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1c19d602.867ee0a7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1871, 'chunk-1c71391a.6b7563e9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1c71391a.6b7563e9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1872, 'chunk-1c9d17cc.f13ba5ff.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1c9d17cc.f13ba5ff.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1873, 'chunk-1cb94d23.30fd5056.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1cb94d23.30fd5056.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1874, 'chunk-1cf27680.a913a4dd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1cf27680.a913a4dd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1875, 'chunk-1d823580.e5c9f316.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1d823580.e5c9f316.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1876, 'chunk-1db96cd5.476a17d4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1db96cd5.476a17d4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1877, 'chunk-1dca2a98.77583ee2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1dca2a98.77583ee2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1878, 'chunk-1dedce59.b32f91be.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1dedce59.b32f91be.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1879, 'chunk-1e2736cd.f5177b46.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1e2736cd.f5177b46.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1880, 'chunk-1ef08e1b.d531a04b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1ef08e1b.d531a04b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1881, 'chunk-1ef2b5e4.d63e69e1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1ef2b5e4.d63e69e1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1882, 'chunk-1f894614.76c9b151.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1f894614.76c9b151.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1883, 'chunk-1fd6224d.0fc89ada.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-1fd6224d.0fc89ada.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1884, 'chunk-2076b67c.9f6d7993.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2076b67c.9f6d7993.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1885, 'chunk-225e7352.956c2af7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-225e7352.956c2af7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1886, 'chunk-22844407.b349ba0f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-22844407.b349ba0f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1887, 'chunk-228f60d2.e1a38457.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-228f60d2.e1a38457.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1888, 'chunk-22b4043a.057b155e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-22b4043a.057b155e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1889, 'chunk-22e64126.0aea3946.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-22e64126.0aea3946.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1890, 'chunk-23245ea4.c536a8dd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-23245ea4.c536a8dd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1891, 'chunk-23bc9c3e.97061a3b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-23bc9c3e.97061a3b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1892, 'chunk-23bc9c3e.f1032f24.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-23bc9c3e.f1032f24.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1893, 'chunk-23f1d398.dbdc6a1a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-23f1d398.dbdc6a1a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1894, 'chunk-2443ca8a.1327425f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2443ca8a.1327425f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1895, 'chunk-249e48fe.fe0bf709.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-249e48fe.fe0bf709.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1896, 'chunk-24bcd400.86c26f20.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-24bcd400.86c26f20.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1897, 'chunk-24bcd400.95a4bcd3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-24bcd400.95a4bcd3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1898, 'chunk-24dfe0e6.3890e791.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-24dfe0e6.3890e791.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1899, 'chunk-24dfe0e6.d2f23c4c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-24dfe0e6.d2f23c4c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1900, 'chunk-24ec4e0e.afe4c1ad.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-24ec4e0e.afe4c1ad.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1901, 'chunk-2535a63e.3eed6f16.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2535a63e.3eed6f16.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1902, 'chunk-25540271.67955be0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-25540271.67955be0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1903, 'chunk-25540271.b54d3c4e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-25540271.b54d3c4e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1904, 'chunk-26798ce6.e80d9d41.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-26798ce6.e80d9d41.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1905, 'chunk-26d4603e.cad70a4b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-26d4603e.cad70a4b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1906, 'chunk-26da89b4.980ebd6b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-26da89b4.980ebd6b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1907, 'chunk-27331629.2e9f2283.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-27331629.2e9f2283.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1908, 'chunk-2822f156.0ea29a9c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2822f156.0ea29a9c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1909, 'chunk-2822f156.1e240c6c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2822f156.1e240c6c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1910, 'chunk-2897e7e2.cada298e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2897e7e2.cada298e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1911, 'chunk-28f8fa16.45ffc0c3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-28f8fa16.45ffc0c3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1912, 'chunk-29a73690.c92e2a90.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-29a73690.c92e2a90.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1913, 'chunk-29d9e9c7.a7bdf356.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-29d9e9c7.a7bdf356.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1914, 'chunk-29d9e9c7.f63c36e4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-29d9e9c7.f63c36e4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1915, 'chunk-2a2e594c.f108f13f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2a2e594c.f108f13f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1916, 'chunk-2a68d25c.dc1ee401.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2a68d25c.dc1ee401.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1917, 'chunk-2a6fd2e4.e4a0d9dd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2a6fd2e4.e4a0d9dd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1918, 'chunk-2c811914.eaea369d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2c811914.eaea369d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1919, 'chunk-2d0a3196.91b3cb51.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0a3196.91b3cb51.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1920, 'chunk-2d0a3577.3620d6e7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0a3577.3620d6e7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1921, 'chunk-2d0a40c8.284a5a5c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0a40c8.284a5a5c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1922, 'chunk-2d0a43df.fe90e47c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0a43df.fe90e47c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1923, 'chunk-2d0a4bbf.aa409a1c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0a4bbf.aa409a1c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1924, 'chunk-2d0aa90c.9777a439.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0aa90c.9777a439.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1925, 'chunk-2d0aab07.d737a594.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0aab07.d737a594.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1926, 'chunk-2d0ab8b4.10da7e39.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0ab8b4.10da7e39.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1927, 'chunk-2d0ab8b4.7bd48292.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0ab8b4.7bd48292.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1928, 'chunk-2d0abc00.a2c33027.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0abc00.a2c33027.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1929, 'chunk-2d0ae937.95610c06.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0ae937.95610c06.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1930, 'chunk-2d0aeb45.be920726.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0aeb45.be920726.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1931, 'chunk-2d0af08c.e1041e3b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0af08c.e1041e3b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1932, 'chunk-2d0afa49.bd5eaaef.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0afa49.bd5eaaef.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1933, 'chunk-2d0b1fd5.ae66d55f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b1fd5.ae66d55f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1934, 'chunk-2d0b21d7.1c3efd02.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b21d7.1c3efd02.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1935, 'chunk-2d0b613c.596a6d18.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b613c.596a6d18.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1936, 'chunk-2d0b613c.74e8e299.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b613c.74e8e299.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1937, 'chunk-2d0b613c.fc27f0aa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b613c.fc27f0aa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1938, 'chunk-2d0b6187.cea86035.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0b6187.cea86035.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1939, 'chunk-2d0ba136.2f799b40.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0ba136.2f799b40.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1940, 'chunk-2d0bb267.b3245835.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0bb267.b3245835.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1941, 'chunk-2d0bdf38.062a3a34.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0bdf38.062a3a34.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1942, 'chunk-2d0be348.1265502a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0be348.1265502a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1943, 'chunk-2d0be348.e1bd0fc5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0be348.e1bd0fc5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1944, 'chunk-2d0be348.fd22e013.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0be348.fd22e013.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1945, 'chunk-2d0bff92.d2d233f8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0bff92.d2d233f8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1946, 'chunk-2d0c0494.3f946b26.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c0494.3f946b26.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1947, 'chunk-2d0c0a09.53c0eb8e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c0a09.53c0eb8e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1948, 'chunk-2d0c4313.5777d743.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c4313.5777d743.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1949, 'chunk-2d0c46d1.8a7be41c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c46d1.8a7be41c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1950, 'chunk-2d0c4a95.35390e3d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c4a95.35390e3d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1951, 'chunk-2d0c512b.2c1da1ca.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c512b.2c1da1ca.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1952, 'chunk-2d0c86e3.51d65a49.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c86e3.51d65a49.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1953, 'chunk-2d0c8a73.d3771e63.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c8a73.d3771e63.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1954, 'chunk-2d0c8a73.df72f3c5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c8a73.df72f3c5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1955, 'chunk-2d0c8f4c.0e82d746.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0c8f4c.0e82d746.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1956, 'chunk-2d0cf16e.974cb011.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0cf16e.974cb011.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1957, 'chunk-2d0cf6e4.0ce00411.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0cf6e4.0ce00411.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1958, 'chunk-2d0cf6e4.9981a569.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0cf6e4.9981a569.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1959, 'chunk-2d0cf6e4.dbabc773.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0cf6e4.dbabc773.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1960, 'chunk-2d0d056d.87140153.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0d056d.87140153.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1961, 'chunk-2d0d0645.6c7d341f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0d0645.6c7d341f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1962, 'chunk-2d0d2f22.136b31fa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0d2f22.136b31fa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1963, 'chunk-2d0d61fd.5fe16749.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0d61fd.5fe16749.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1964, 'chunk-2d0d7e63.623e3c8c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0d7e63.623e3c8c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1965, 'chunk-2d0dda4e.141d579d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0dda4e.141d579d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1966, 'chunk-2d0de971.48a686f4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0de971.48a686f4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1967, 'chunk-2d0e1b57.70e66ac5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e1b57.70e66ac5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1968, 'chunk-2d0e1fbe.7f02bf47.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e1fbe.7f02bf47.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1969, 'chunk-2d0e22d6.0ee739a7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e22d6.0ee739a7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1970, 'chunk-2d0e488e.22919795.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e488e.22919795.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1971, 'chunk-2d0e488e.e7c585a6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e488e.e7c585a6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1972, 'chunk-2d0e4fe5.3de79a6e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e4fe5.3de79a6e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1973, 'chunk-2d0e542a.026fef21.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e542a.026fef21.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1974, 'chunk-2d0e57ec.a93d37ee.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e57ec.a93d37ee.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1975, 'chunk-2d0e5b34.b6758542.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e5b34.b6758542.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1976, 'chunk-2d0e6553.7b84ed32.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e6553.7b84ed32.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1977, 'chunk-2d0e6c86.48f84529.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0e6c86.48f84529.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1978, 'chunk-2d0ea098.fc7d1609.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0ea098.fc7d1609.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1979, 'chunk-2d0f0a11.0c14a5f0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d0f0a11.0c14a5f0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1980, 'chunk-2d207f67.801092f8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d207f67.801092f8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1981, 'chunk-2d207f67.bb2caf9f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d207f67.bb2caf9f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1982, 'chunk-2d208ac5.79d60b97.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d208ac5.79d60b97.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1983, 'chunk-2d209408.83e6d4a1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d209408.83e6d4a1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1984, 'chunk-2d20ebf3.2927745c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d20ebf3.2927745c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1985, 'chunk-2d20f745.f5bc85f2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d20f745.f5bc85f2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1986, 'chunk-2d20ff23.c20485b0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d20ff23.c20485b0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1987, 'chunk-2d2138c7.cd3748bb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d2138c7.cd3748bb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1988, 'chunk-2d216f3b.effa267b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d216f3b.effa267b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1989, 'chunk-2d217e5b.5517bbc8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d217e5b.5517bbc8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1990, 'chunk-2d21ab79.99b87210.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21ab79.99b87210.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1991, 'chunk-2d21afa5.52262f82.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21afa5.52262f82.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1992, 'chunk-2d21afa5.8e222fcb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21afa5.8e222fcb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1993, 'chunk-2d21b84a.ad3d4759.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21b84a.ad3d4759.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1994, 'chunk-2d21d0c2.091fa717.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21d0c2.091fa717.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1995, 'chunk-2d21da46.6c4bd930.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21da46.6c4bd930.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(1996, 'chunk-2d21dcd2.c4c1f1ed.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21dcd2.c4c1f1ed.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1997, 'chunk-2d21f327.48b24ae4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d21f327.48b24ae4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1998, 'chunk-2d2214b3.ea6c7103.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d2214b3.ea6c7103.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(1999, 'chunk-2d221799.94cc1d6d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d221799.94cc1d6d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2000, 'chunk-2d221814.759a1e3b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d221814.759a1e3b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2001, 'chunk-2d221a34.56313bbc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d221a34.56313bbc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2002, 'chunk-2d22502a.804d1367.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22502a.804d1367.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2003, 'chunk-2d226775.15dcb3ba.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d226775.15dcb3ba.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2004, 'chunk-2d229411.e8b199e0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d229411.e8b199e0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2005, 'chunk-2d2295e9.c4b0d605.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d2295e9.c4b0d605.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2006, 'chunk-2d229c13.05448add.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d229c13.05448add.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2007, 'chunk-2d229c13.6c8802ce.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d229c13.6c8802ce.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2008, 'chunk-2d22c171.27ac3fc5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22c171.27ac3fc5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2009, 'chunk-2d22c2b8.0fe69cfa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22c2b8.0fe69cfa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2010, 'chunk-2d22c8ff.1da72657.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22c8ff.1da72657.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2011, 'chunk-2d22c8ff.bf658edf.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22c8ff.bf658edf.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2012, 'chunk-2d22ca58.ddfaf6b9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d22ca58.ddfaf6b9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2013, 'chunk-2d2311f7.8fc8d1b4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d2311f7.8fc8d1b4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2014, 'chunk-2d237ee7.533d4c09.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d237ee7.533d4c09.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2015, 'chunk-2d238465.a49711d3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d238465.a49711d3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2016, 'chunk-2d3ca166.1e4014c8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d3ca166.1e4014c8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2017, 'chunk-2d92cc62.5c58e7a9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2d92cc62.5c58e7a9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2018, 'chunk-2dc9fc66.e5a40363.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2dc9fc66.e5a40363.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2019, 'chunk-2e6d7c7a.fa332993.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2e6d7c7a.fa332993.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2020, 'chunk-2f2a52ea.bd153d81.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2f2a52ea.bd153d81.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2021, 'chunk-2fa779f0.1a7bb1e5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-2fa779f0.1a7bb1e5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2022, 'chunk-310629e4.4a897b0e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-310629e4.4a897b0e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2023, 'chunk-3126fcbb.c382c0b2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3126fcbb.c382c0b2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2024, 'chunk-318359b8.0f05c522.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-318359b8.0f05c522.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2025, 'chunk-318cd060.48d89ce3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-318cd060.48d89ce3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2026, 'chunk-31f7f6f4.b37023ab.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-31f7f6f4.b37023ab.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2027, 'chunk-3211bc0c.cf27c3d5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3211bc0c.cf27c3d5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2028, 'chunk-3217e6f9.db2a92cd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3217e6f9.db2a92cd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2029, 'chunk-3252bb0a.c19424fa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3252bb0a.c19424fa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2030, 'chunk-33c7cfe1.11a7d06a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-33c7cfe1.11a7d06a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2031, 'chunk-33cfa904.69f01590.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-33cfa904.69f01590.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2032, 'chunk-33dc3354.59bdb4de.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-33dc3354.59bdb4de.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2033, 'chunk-345535b9.d00db435.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-345535b9.d00db435.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2034, 'chunk-347748ab.ff2645b2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-347748ab.ff2645b2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2035, 'chunk-347f00e3.5b08bda7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-347f00e3.5b08bda7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2036, 'chunk-34dc580b.01666f92.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-34dc580b.01666f92.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2037, 'chunk-354d56f3.dd3dfb90.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-354d56f3.dd3dfb90.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2038, 'chunk-374f12d2.ff6acf09.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-374f12d2.ff6acf09.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2039, 'chunk-37b3a6b4.3067d867.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-37b3a6b4.3067d867.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2040, 'chunk-37b3a6b4.96eb54c1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-37b3a6b4.96eb54c1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2041, 'chunk-37b3a6b4.d13b6f9e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-37b3a6b4.d13b6f9e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2042, 'chunk-37ba1a53.972c8877.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-37ba1a53.972c8877.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2043, 'chunk-37f63326.f93ecdc9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-37f63326.f93ecdc9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2044, 'chunk-38c857e2.07c0b7d3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-38c857e2.07c0b7d3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2045, 'chunk-38f2845b.1c082524.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-38f2845b.1c082524.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2046, 'chunk-394095d4.55b17f65.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-394095d4.55b17f65.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2047, 'chunk-3942d346.b9fcfc09.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3942d346.b9fcfc09.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2048, 'chunk-39487ca4.1556ce07.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-39487ca4.1556ce07.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2049, 'chunk-3970514f.0d907822.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3970514f.0d907822.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2050, 'chunk-398679d1.c5ed2fee.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-398679d1.c5ed2fee.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2051, 'chunk-39dc5197.9cb6a8f3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-39dc5197.9cb6a8f3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2052, 'chunk-3ac84326.32602045.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3ac84326.32602045.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2053, 'chunk-3af60686.77b37110.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3af60686.77b37110.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2054, 'chunk-3affab88.58f0df2a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3affab88.58f0df2a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2055, 'chunk-3b3f5c7c.392c576d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3b3f5c7c.392c576d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2056, 'chunk-3bd11c94.27b4d2ad.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3bd11c94.27b4d2ad.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2057, 'chunk-3c16c594.45da426e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3c16c594.45da426e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2058, 'chunk-3c26b362.98ade704.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3c26b362.98ade704.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2059, 'chunk-3d3b2d8e.8be4ab15.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3d3b2d8e.8be4ab15.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2060, 'chunk-3d6b888d.f6da43f0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3d6b888d.f6da43f0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2061, 'chunk-3dde579c.9562f42b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3dde579c.9562f42b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2062, 'chunk-3dfba956.ff0fc87c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3dfba956.ff0fc87c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2063, 'chunk-3e123c16.da69ee7c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3e123c16.da69ee7c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2064, 'chunk-3ead65b4.87100aaa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3ead65b4.87100aaa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2065, 'chunk-3fda7096.799c598b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-3fda7096.799c598b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2066, 'chunk-40003b7f.6e40bf48.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-40003b7f.6e40bf48.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2067, 'chunk-4037b518.3fa2f7e3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4037b518.3fa2f7e3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2068, 'chunk-40c51cef.7a0e9cc2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-40c51cef.7a0e9cc2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2069, 'chunk-40d1bd1a.187c557e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-40d1bd1a.187c557e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2070, 'chunk-42603b15.ff65a8a9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-42603b15.ff65a8a9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2071, 'chunk-426aca71.18910319.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-426aca71.18910319.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2072, 'chunk-43146ca4.60b2bd7f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-43146ca4.60b2bd7f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2073, 'chunk-433efe57.634b2b05.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-433efe57.634b2b05.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2074, 'chunk-43af4971.26423c1a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-43af4971.26423c1a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2075, 'chunk-45400840.0159038f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-45400840.0159038f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2076, 'chunk-4542f131.cab5e37f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4542f131.cab5e37f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2077, 'chunk-45c36ee8.b3ecd24a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-45c36ee8.b3ecd24a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2078, 'chunk-464a5aac.ac69ac44.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-464a5aac.ac69ac44.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2079, 'chunk-46567bb0.58e244cc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-46567bb0.58e244cc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2080, 'chunk-472197e0.51c6144a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-472197e0.51c6144a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2081, 'chunk-474ae24e.9ed4ed03.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-474ae24e.9ed4ed03.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2082, 'chunk-474e923b.6715554d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-474e923b.6715554d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2083, 'chunk-47b48296.5bde254c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-47b48296.5bde254c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2084, 'chunk-47e494c8.2d35bea9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-47e494c8.2d35bea9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2085, 'chunk-4903def6.d4abc6e5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4903def6.d4abc6e5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2086, 'chunk-49268c10.1514d851.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-49268c10.1514d851.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2087, 'chunk-49680f39.c7eea000.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-49680f39.c7eea000.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2088, 'chunk-4a6e0eaf.c1608caa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4a6e0eaf.c1608caa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2089, 'chunk-4acd4264.00236630.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4acd4264.00236630.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2090, 'chunk-4ada2d76.efcb433d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4ada2d76.efcb433d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2091, 'chunk-4b568c54.88dc3a51.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4b568c54.88dc3a51.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2092, 'chunk-4b6f0332.185c25ae.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4b6f0332.185c25ae.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2093, 'chunk-4bbbd790.7aaf1dd2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4bbbd790.7aaf1dd2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2094, 'chunk-4bbff9bb.b18711c3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4bbff9bb.b18711c3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2095, 'chunk-4bdab239.667c9c5f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4bdab239.667c9c5f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2096, 'chunk-4ca4f1ca.ed32b44e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4ca4f1ca.ed32b44e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2097, 'chunk-4d2be200.31525301.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4d2be200.31525301.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2098, 'chunk-4d2be200.67f965ee.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4d2be200.67f965ee.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2099, 'chunk-4de97dce.ffb297a5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4de97dce.ffb297a5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2100, 'chunk-4f2c2164.b78222a0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4f2c2164.b78222a0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2101, 'chunk-4fe8ea66.519d6baf.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4fe8ea66.519d6baf.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2102, 'chunk-4fec683e.e5fc0ca8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-4fec683e.e5fc0ca8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2103, 'chunk-50423a09.289c0469.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-50423a09.289c0469.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2104, 'chunk-51b5ba90.6fd91e79.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-51b5ba90.6fd91e79.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2105, 'chunk-524cca06.48c84691.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-524cca06.48c84691.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2106, 'chunk-526679c4.9730de24.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-526679c4.9730de24.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2107, 'chunk-526c110a.e8f62620.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-526c110a.e8f62620.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2108, 'chunk-526e87ea.cbb5de86.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-526e87ea.cbb5de86.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2109, 'chunk-52704a5a.1fe59204.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-52704a5a.1fe59204.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2110, 'chunk-53577b14.6d13609b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-53577b14.6d13609b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2111, 'chunk-53a4d7e3.e1dfb597.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-53a4d7e3.e1dfb597.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2112, 'chunk-540c9406.fe8ddea7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-540c9406.fe8ddea7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2113, 'chunk-54b54e02.a4a6f0cb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-54b54e02.a4a6f0cb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2114, 'chunk-54dd0fe8.f4e877ba.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-54dd0fe8.f4e877ba.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2115, 'chunk-55244c25.c4d1d431.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-55244c25.c4d1d431.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2116, 'chunk-55297486.0df14673.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-55297486.0df14673.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2117, 'chunk-55a83c65.e8b740ce.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-55a83c65.e8b740ce.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2118, 'chunk-55b0e5ff.90f7b214.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-55b0e5ff.90f7b214.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2119, 'chunk-55df0dc3.828e7e2f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-55df0dc3.828e7e2f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2120, 'chunk-56e0c136.a5d254ba.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-56e0c136.a5d254ba.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2121, 'chunk-571bcdb4.391e4cf8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-571bcdb4.391e4cf8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2122, 'chunk-58289673.04f444f6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-58289673.04f444f6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2123, 'chunk-58344a1a.ad46d122.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-58344a1a.ad46d122.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2124, 'chunk-5879d7c6.873a7670.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5879d7c6.873a7670.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2125, 'chunk-58a4433e.d88214ae.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-58a4433e.d88214ae.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2126, 'chunk-592dcdcb.9e612ddc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-592dcdcb.9e612ddc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2127, 'chunk-59aafa1f.7c863aa8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-59aafa1f.7c863aa8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2128, 'chunk-5a39e378.f77e899b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5a39e378.f77e899b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2129, 'chunk-5b2fd0b4.d14073cd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5b2fd0b4.d14073cd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2130, 'chunk-5be71a0e.99e89bd2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5be71a0e.99e89bd2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2131, 'chunk-5c905c73.4c6e2192.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5c905c73.4c6e2192.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2132, 'chunk-5d68fff0.1f4e183c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5d68fff0.1f4e183c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2133, 'chunk-5d9d7992.5b5cc339.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5d9d7992.5b5cc339.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2134, 'chunk-5dd705ca.f42bff80.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5dd705ca.f42bff80.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2135, 'chunk-5df7e78c.55379b38.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5df7e78c.55379b38.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2136, 'chunk-5e204c5f.17ea08bd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5e204c5f.17ea08bd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2137, 'chunk-5ebef968.614dcef9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5ebef968.614dcef9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2138, 'chunk-5ee0e49e.a3d8024e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5ee0e49e.a3d8024e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2139, 'chunk-5f37bdfc.323a9ec0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5f37bdfc.323a9ec0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2140, 'chunk-5f7068f0.018576a0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5f7068f0.018576a0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2141, 'chunk-5fdfd370.4d4400c8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-5fdfd370.4d4400c8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2142, 'chunk-604f7e5c.98c8f00e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-604f7e5c.98c8f00e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2143, 'chunk-60b63af9.49b2d71d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-60b63af9.49b2d71d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2144, 'chunk-60b63af9.72e0bd52.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-60b63af9.72e0bd52.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2145, 'chunk-61a03dec.fe013996.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-61a03dec.fe013996.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2146, 'chunk-61b424c6.6ba10e36.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-61b424c6.6ba10e36.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2147, 'chunk-6258450f.20fbd5c8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6258450f.20fbd5c8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2148, 'chunk-62acd4a6.daa4606c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-62acd4a6.daa4606c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2149, 'chunk-62b37966.95c5acf6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-62b37966.95c5acf6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2150, 'chunk-62e276d0.6fdb7e50.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-62e276d0.6fdb7e50.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2151, 'chunk-63fc945c.83986511.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-63fc945c.83986511.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2152, 'chunk-64cbd134.ec4d294a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-64cbd134.ec4d294a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2153, 'chunk-657d3466.60c16d23.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-657d3466.60c16d23.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2154, 'chunk-658a3236.da7a553b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-658a3236.da7a553b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2155, 'chunk-66021a94.23a6b859.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-66021a94.23a6b859.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2156, 'chunk-66021a94.57e82422.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-66021a94.57e82422.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2157, 'chunk-66426965.157643df.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-66426965.157643df.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2158, 'chunk-67cf1b80.af94fab5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-67cf1b80.af94fab5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2159, 'chunk-688e7f86.750de938.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-688e7f86.750de938.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2160, 'chunk-68b46b36.f1b1663d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-68b46b36.f1b1663d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2161, 'chunk-692a5f7e.3ff3f37c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-692a5f7e.3ff3f37c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2162, 'chunk-692a5f7e.b934bbb9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-692a5f7e.b934bbb9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2163, 'chunk-6a2fb179.195ceba7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6a2fb179.195ceba7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2164, 'chunk-6b1e6d40.a8e1c1b7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6b1e6d40.a8e1c1b7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2165, 'chunk-6b8f980e.a1ce0252.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6b8f980e.a1ce0252.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2166, 'chunk-6bc1b311.841d7fcb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6bc1b311.841d7fcb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2167, 'chunk-6bd151d1.95d6059b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6bd151d1.95d6059b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2168, 'chunk-6bdf096a.8e48f214.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6bdf096a.8e48f214.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2169, 'chunk-6d110ae8.cd391265.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6d110ae8.cd391265.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2170, 'chunk-6e83591c.5c4acd52.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6e83591c.5c4acd52.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2171, 'chunk-6e9f76a0.ab8a278f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6e9f76a0.ab8a278f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2172, 'chunk-6ea40d1c.721b9b50.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6ea40d1c.721b9b50.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2173, 'chunk-6f56b2e0.cffd40d1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6f56b2e0.cffd40d1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2174, 'chunk-6f84851e.f39464f7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-6f84851e.f39464f7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2175, 'chunk-705a2f42.78814428.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-705a2f42.78814428.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2176, 'chunk-706c43db.8f341f35.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-706c43db.8f341f35.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2177, 'chunk-70c1cdda.061cb6d3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-70c1cdda.061cb6d3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2178, 'chunk-71d55753.cc2e07a4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-71d55753.cc2e07a4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2179, 'chunk-72205bcc.18c3870d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-72205bcc.18c3870d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2180, 'chunk-72b8efee.a3d5c488.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-72b8efee.a3d5c488.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2181, 'chunk-72b8efee.e9fd49c3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-72b8efee.e9fd49c3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2182, 'chunk-731d0dcd.18a5f1aa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-731d0dcd.18a5f1aa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2183, 'chunk-73b6c47a.e0740171.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-73b6c47a.e0740171.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2184, 'chunk-7453b76c.5bb9763e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7453b76c.5bb9763e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2185, 'chunk-7459c510.5e0c6438.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7459c510.5e0c6438.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2186, 'chunk-745b9bfa.7dc43553.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-745b9bfa.7dc43553.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2187, 'chunk-746e09c3.2613ff8a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-746e09c3.2613ff8a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2188, 'chunk-7473f312.f3b407d7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7473f312.f3b407d7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2189, 'chunk-7532b3ea.91e7aa66.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7532b3ea.91e7aa66.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2190, 'chunk-754e64fb.834fb0a2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-754e64fb.834fb0a2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2191, 'chunk-75955b98.29ef39d2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-75955b98.29ef39d2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2192, 'chunk-76466ae2.f206ea38.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-76466ae2.f206ea38.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2193, 'chunk-76e67188.39c208f6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-76e67188.39c208f6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2194, 'chunk-77194a60.6eb2a8c9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-77194a60.6eb2a8c9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2195, 'chunk-771c8a96.337764f4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-771c8a96.337764f4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2196, 'chunk-772baf98.82115647.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-772baf98.82115647.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2197, 'chunk-7739374b.ee60fa7e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7739374b.ee60fa7e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2198, 'chunk-7773fc71.d26e78f6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7773fc71.d26e78f6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2199, 'chunk-779e3b9c.1d838624.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-779e3b9c.1d838624.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2200, 'chunk-77c8a796.959f651f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-77c8a796.959f651f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2201, 'chunk-77d9cfec.11b68d6a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-77d9cfec.11b68d6a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2202, 'chunk-77d9cfec.6bf48931.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-77d9cfec.6bf48931.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2203, 'chunk-78282f65.75d75d4b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-78282f65.75d75d4b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2204, 'chunk-78f28660.caa3c3bb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-78f28660.caa3c3bb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2205, 'chunk-7a3d9eb5.1ba2e796.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7a3d9eb5.1ba2e796.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2206, 'chunk-7a92e064.64e2f4aa.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7a92e064.64e2f4aa.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2207, 'chunk-7aa0e78c.c27ce2b4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7aa0e78c.c27ce2b4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2208, 'chunk-7aa0e78c.db178e19.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7aa0e78c.db178e19.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2209, 'chunk-7af22251.98215953.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7af22251.98215953.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2210, 'chunk-7b38ba8f.52e405cd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7b38ba8f.52e405cd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2211, 'chunk-7b831a91.20ec1238.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7b831a91.20ec1238.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2212, 'chunk-7bbdd5d4.7aa477a1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7bbdd5d4.7aa477a1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2213, 'chunk-7c140509.c358d6c7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7c140509.c358d6c7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2214, 'chunk-7c4d29dc.014c4f6c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7c4d29dc.014c4f6c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2215, 'chunk-7c6b689b.a88c3fec.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7c6b689b.a88c3fec.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2216, 'chunk-7ca413d5.9b4f08a3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7ca413d5.9b4f08a3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2217, 'chunk-7cf74c78.d705406d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7cf74c78.d705406d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2218, 'chunk-7d90b9a3.b47acfb1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7d90b9a3.b47acfb1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2219, 'chunk-7da9e4f8.5e548f96.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7da9e4f8.5e548f96.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2220, 'chunk-7df421ac.6dbe7939.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7df421ac.6dbe7939.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2221, 'chunk-7df421ac.c19d4964.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7df421ac.c19d4964.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2222, 'chunk-7e087517.48eb3dd6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7e087517.48eb3dd6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2223, 'chunk-7ee09251.db55ec11.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7ee09251.db55ec11.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2224, 'chunk-7f05d390.ca82407f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7f05d390.ca82407f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2225, 'chunk-7f6680c5.5609d066.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7f6680c5.5609d066.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2226, 'chunk-7f89f9ba.ad72a570.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7f89f9ba.ad72a570.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2227, 'chunk-7feba4f0.0f80d4c9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7feba4f0.0f80d4c9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2228, 'chunk-7feba4f0.64266151.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-7feba4f0.64266151.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2229, 'chunk-8088a85e.b5880d9c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8088a85e.b5880d9c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2230, 'chunk-829aa68e.be2e90d1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-829aa68e.be2e90d1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2231, 'chunk-82abb0a6.cd0eb80c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-82abb0a6.cd0eb80c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2232, 'chunk-82e13746.989a8e19.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-82e13746.989a8e19.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2233, 'chunk-83b449fc.2cf404a4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-83b449fc.2cf404a4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2234, 'chunk-83d2a766.0129e6d6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-83d2a766.0129e6d6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2235, 'chunk-884c56b8.0e6ae6f6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-884c56b8.0e6ae6f6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2236, 'chunk-8997cdd4.7e0f0229.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8997cdd4.7e0f0229.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2237, 'chunk-8af7aa2e.edf9488d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8af7aa2e.edf9488d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2238, 'chunk-8b43bd72.b3094f42.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8b43bd72.b3094f42.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2239, 'chunk-8c07836c.733668b4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8c07836c.733668b4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2240, 'chunk-8dd55324.afebb502.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8dd55324.afebb502.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2241, 'chunk-8eef0434.d07c5fe5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8eef0434.d07c5fe5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2242, 'chunk-8f26de76.c14753cc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-8f26de76.c14753cc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2243, 'chunk-926cafa6.9ba46962.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-926cafa6.9ba46962.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2244, 'chunk-9342bcb8.e586123d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9342bcb8.e586123d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2245, 'chunk-9368228a.b36d0a1f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9368228a.b36d0a1f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2246, 'chunk-93a67276.979b5c87.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-93a67276.979b5c87.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2247, 'chunk-93d69260.a5db2ec4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-93d69260.a5db2ec4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2248, 'chunk-94b63ad6.6c8505cb.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-94b63ad6.6c8505cb.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2249, 'chunk-95552848.a214ba7f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-95552848.a214ba7f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2250, 'chunk-95552848.d88ad931.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-95552848.d88ad931.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2251, 'chunk-9717edec.3aebb6f7.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9717edec.3aebb6f7.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2252, 'chunk-97554c44.3935759b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-97554c44.3935759b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2253, 'chunk-9818dcb0.b000af31.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9818dcb0.b000af31.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2254, 'chunk-98e705ee.b6d59051.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-98e705ee.b6d59051.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2255, 'chunk-9a4bce9c.4ec057e1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9a4bce9c.4ec057e1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2256, 'chunk-9a4bce9c.8c3b6ce9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9a4bce9c.8c3b6ce9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2257, 'chunk-9b49c2a6.bf3d201f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9b49c2a6.bf3d201f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2258, 'chunk-9cdff0ca.be51aff0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9cdff0ca.be51aff0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2259, 'chunk-9db35086.7694358b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-9db35086.7694358b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2260, 'chunk-a1b1ce8e.7f058687.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-a1b1ce8e.7f058687.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2261, 'chunk-a2142d04.9efcc4a1.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-a2142d04.9efcc4a1.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2262, 'chunk-a6a6c792.4c613afd.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-a6a6c792.4c613afd.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2263, 'chunk-a82e7358.a5114634.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-a82e7358.a5114634.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2264, 'chunk-a9bccc00.40e2ace9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-a9bccc00.40e2ace9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2265, 'chunk-ac14e078.e719295b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ac14e078.e719295b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2266, 'chunk-aceb5616.d5582916.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-aceb5616.d5582916.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2267, 'chunk-b030fc0a.8b7fd76e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b030fc0a.8b7fd76e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2268, 'chunk-b12df032.5dd38b51.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b12df032.5dd38b51.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2269, 'chunk-b19bdce0.831860f9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b19bdce0.831860f9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2270, 'chunk-b2498f9c.58d9fcd5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b2498f9c.58d9fcd5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2271, 'chunk-b2b9817c.3a3554be.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b2b9817c.3a3554be.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2272, 'chunk-b41662c0.a146deb9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b41662c0.a146deb9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2273, 'chunk-b85bf2f6.c8cd3ec3.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-b85bf2f6.c8cd3ec3.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2274, 'chunk-bbdf5830.2f96f354.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-bbdf5830.2f96f354.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2275, 'chunk-bc166014.1937a11f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-bc166014.1937a11f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2276, 'chunk-bc8ebd4c.417365a5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-bc8ebd4c.417365a5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2277, 'chunk-bd3916d4.81490e55.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-bd3916d4.81490e55.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2278, 'chunk-bd3916d4.e2c9c15a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-bd3916d4.e2c9c15a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2279, 'chunk-c380ac22.4bbaa27a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c380ac22.4bbaa27a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2280, 'chunk-c560f4be.ff40dd64.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c560f4be.ff40dd64.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2281, 'chunk-c582c15a.548e5409.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c582c15a.548e5409.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2282, 'chunk-c582c15a.6c5ddbf6.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c582c15a.6c5ddbf6.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2283, 'chunk-c7a98f84.91548c0b.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c7a98f84.91548c0b.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2284, 'chunk-c7b9a360.ca7a338f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c7b9a360.ca7a338f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2285, 'chunk-c914ed5c.459ba0a0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c914ed5c.459ba0a0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2286, 'chunk-c92068d8.f7a28736.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-c92068d8.f7a28736.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2287, 'chunk-cb1ada30.d6e0d352.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cb1ada30.d6e0d352.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2288, 'chunk-cc91cc7c.1ac8f76e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cc91cc7c.1ac8f76e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2289, 'chunk-cc93a18a.d7369fa2.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cc93a18a.d7369fa2.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2290, 'chunk-cd4d630e.2991fc37.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cd4d630e.2991fc37.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2291, 'chunk-cdbf138e.64cd804d.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cdbf138e.64cd804d.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2292, 'chunk-cdf197d8.607760a5.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cdf197d8.607760a5.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2293, 'chunk-ce74252a.fcf2f368.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ce74252a.fcf2f368.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2294, 'chunk-ce8ebbb4.321ecc58.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ce8ebbb4.321ecc58.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2295, 'chunk-ce8ebbb4.65a63dfe.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ce8ebbb4.65a63dfe.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2296, 'chunk-cf36bb2e.ff140905.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cf36bb2e.ff140905.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2297, 'chunk-cfcbc61a.bf37be35.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-cfcbc61a.bf37be35.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2298, 'chunk-d1664786.b295e060.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-d1664786.b295e060.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2299, 'chunk-d225cbf0.6c32e66a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-d225cbf0.6c32e66a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2300, 'chunk-d36740f2.7d875f1a.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-d36740f2.7d875f1a.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2301, 'chunk-d9959eb8.45488a20.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-d9959eb8.45488a20.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2302, 'chunk-dde0a81e.0facb029.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-dde0a81e.0facb029.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2303, 'chunk-de95e6f2.47483b56.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-de95e6f2.47483b56.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2304, 'chunk-df056abe.92e5c863.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-df056abe.92e5c863.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2305, 'chunk-e13e4362.219e65f4.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e13e4362.219e65f4.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2306, 'chunk-e27ab2e4.3d80c6ce.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e27ab2e4.3d80c6ce.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2307, 'chunk-e2ed07fc.809ad1dc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e2ed07fc.809ad1dc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2308, 'chunk-e5221e6a.ad17d1de.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e5221e6a.ad17d1de.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2309, 'chunk-e9603986.3c7dc79e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e9603986.3c7dc79e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2310, 'chunk-e9d423c8.91a22f2c.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-e9d423c8.91a22f2c.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2311, 'chunk-ea0991f4.2f5b03d0.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ea0991f4.2f5b03d0.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2312, 'chunk-ea0991f4.ef20f241.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-ea0991f4.ef20f241.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2313, 'chunk-efb7fe90.67d282ea.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-efb7fe90.67d282ea.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2314, 'chunk-f184d4f6.f55a2f5e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f184d4f6.f55a2f5e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2315, 'chunk-f1b3bf12.26984d20.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f1b3bf12.26984d20.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2316, 'chunk-f1fc9bde.7b00a009.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f1fc9bde.7b00a009.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2317, 'chunk-f23ecd5a.78ec67ba.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f23ecd5a.78ec67ba.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2318, 'chunk-f73ef548.907fa49e.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f73ef548.907fa49e.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2319, 'chunk-f91dca6a.3af44b96.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f91dca6a.3af44b96.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2320, 'chunk-f9d8c10a.6fa53d9f.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f9d8c10a.6fa53d9f.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2321, 'chunk-f9fb41f6.97e94359.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-f9fb41f6.97e94359.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2322, 'chunk-fbe95726.35851eff.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-fbe95726.35851eff.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2323, 'chunk-fd44b72c.8e84e7c8.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-fd44b72c.8e84e7c8.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2324, 'chunk-fd75d1da.66bf03ce.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-fd75d1da.66bf03ce.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2325, 'chunk-fde7c08a.243949a9.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-fde7c08a.243949a9.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2326, 'chunk-vendors.74327e05.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-vendors.74327e05.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2327, 'chunk-vendors.ff9cd6bc.js', '/public/admin/system_static/js', '/public/admin/system_static/js/chunk-vendors.ff9cd6bc.js', 'file', '2023-04-26 17:14:41', '2023-04-26 16:56:52', ''),
|
||
(2328, 'media', '/public/admin/system_static', '/public/admin/system_static/media', 'dir', '2023-04-26 17:14:41', '2023-04-26 17:14:41', ''),
|
||
(2329, 'newOrderAudioLink.71ee2b71.mp3', '/public/admin/system_static/media', '/public/admin/system_static/media/newOrderAudioLink.71ee2b71.mp3', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2330, 'notice.367f95a9.mp3', '/public/admin/system_static/media', '/public/admin/system_static/media/notice.367f95a9.mp3', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2331, 'notice.51a07ae7.wav', '/public/admin/system_static/media', '/public/admin/system_static/media/notice.51a07ae7.wav', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2332, 'ts.worker.js', '/public/admin', '/public/admin/ts.worker.js', 'file', '2023-04-26 17:14:41', '2023-04-26 17:08:38', ''),
|
||
(2333, '归档.zip', '/public/admin', '/public/admin/归档.zip', 'file', '2023-04-26 17:14:41', '2023-04-26 17:14:34', ''),
|
||
(2334, 'favicon.ico', '/public', '/public/favicon.ico', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '网站ICO图标'),
|
||
(2335, 'index.html', '/public', '/public/index.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2336, 'index.php', '/public', '/public/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '系统入口文件'),
|
||
(2337, 'install', '/public', '/public/install', 'dir', '2023-04-27 09:38:55', '2023-04-27 09:38:55', '系统安装目录'),
|
||
(2338, '.env', '/public/install', '/public/install/.env', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2339, 'crmeb.sql', '/public/install', '/public/install/crmeb.sql', 'file', '2023-04-27 09:38:55', '2023-04-27 09:38:55', ''),
|
||
(2340, 'css', '/public/install', '/public/install/css', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2341, 'install.css', '/public/install/css', '/public/install/css/install.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2342, 'step1.css', '/public/install/css', '/public/install/css/step1.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2343, 'step2.css', '/public/install/css', '/public/install/css/step2.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2344, 'step3.css', '/public/install/css', '/public/install/css/step3.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2345, 'step4.css', '/public/install/css', '/public/install/css/step4.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2346, 'step5.css', '/public/install/css', '/public/install/css/step5.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2347, 'theme-chalk.css', '/public/install/css', '/public/install/css/theme-chalk.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2348, 'images', '/public/install', '/public/install/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2349, 'install', '/public/install/images', '/public/install/images/install', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2350, 'bg.png', '/public/install/images/install', '/public/install/images/install/bg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2351, 'btn.png', '/public/install/images/install', '/public/install/images/install/btn.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2352, 'complete.png', '/public/install/images/install', '/public/install/images/install/complete.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2353, 'environment.png', '/public/install/images/install', '/public/install/images/install/environment.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2354, 'header.png', '/public/install/images/install', '/public/install/images/install/header.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2355, 'icon.png', '/public/install/images/install', '/public/install/images/install/icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2356, 'icon_install.png', '/public/install/images/install', '/public/install/images/install/icon_install.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2357, 'ignore.png', '/public/install/images/install', '/public/install/images/install/ignore.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2358, 'jurisdiction.png', '/public/install/images/install', '/public/install/images/install/jurisdiction.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2359, 'loading.gif', '/public/install/images/install', '/public/install/images/install/loading.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2360, 'logo-step1.png', '/public/install/images/install', '/public/install/images/install/logo-step1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2361, 'logo.png', '/public/install/images/install', '/public/install/images/install/logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2362, 'pop_loading.gif', '/public/install/images/install', '/public/install/images/install/pop_loading.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2363, 'shuaxin.png', '/public/install/images/install', '/public/install/images/install/shuaxin.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2364, 'solgen.png', '/public/install/images/install', '/public/install/images/install/solgen.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2365, 'step.png', '/public/install/images/install', '/public/install/images/install/step.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2366, 'success.png', '/public/install/images/install', '/public/install/images/install/success.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2367, 'sure.png', '/public/install/images/install', '/public/install/images/install/sure.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2368, 'tab.png', '/public/install/images/install', '/public/install/images/install/tab.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2369, 'tips_system.png', '/public/install/images/install', '/public/install/images/install/tips_system.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2370, 'trip-icon.png', '/public/install/images/install', '/public/install/images/install/trip-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2371, 'upload.png', '/public/install/images/install', '/public/install/images/install/upload.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2372, 'warring.png', '/public/install/images/install', '/public/install/images/install/warring.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2373, 'yes.png', '/public/install/images/install', '/public/install/images/install/yes.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2374, 'index.php', '/public/install', '/public/install/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2375, 'js', '/public/install', '/public/install/js', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2376, 'ajaxForm.js', '/public/install/js', '/public/install/js/ajaxForm.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2377, 'element-ui.js', '/public/install/js', '/public/install/js/element-ui.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2378, 'jquery.js', '/public/install/js', '/public/install/js/jquery.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2379, 'validate.js', '/public/install/js', '/public/install/js/validate.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2380, 'vue2.6.11.js', '/public/install/js', '/public/install/js/vue2.6.11.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2381, 'templates', '/public/install', '/public/install/templates', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2382, 'footer.php', '/public/install/templates', '/public/install/templates/footer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2383, 'header.php', '/public/install/templates', '/public/install/templates/header.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2384, 'step1.php', '/public/install/templates', '/public/install/templates/step1.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2385, 'step2.php', '/public/install/templates', '/public/install/templates/step2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2386, 'step3.php', '/public/install/templates', '/public/install/templates/step3.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2387, 'step4.php', '/public/install/templates', '/public/install/templates/step4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2388, 'step5.php', '/public/install/templates', '/public/install/templates/step5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2389, 'install.lock', '/public', '/public/install.lock', 'file', '2023-04-26 16:58:50', '2023-04-26 16:58:50', '系统安装识别文件'),
|
||
(2390, 'mobile.html', '/public', '/public/mobile.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2391, 'nginx.htaccess', '/public', '/public/nginx.htaccess', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2392, 'pages', '/public', '/public/pages', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '移动端页面目录'),
|
||
(2393, 'activity', '/public/pages', '/public/pages/activity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2394, 'static', '/public/pages/activity', '/public/pages/activity/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2395, 'bargainBg.jpg', '/public/pages/activity/static', '/public/pages/activity/static/bargainBg.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2396, 'buled.png', '/public/pages/activity/static', '/public/pages/activity/static/buled.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2397, 'bulet.jpg', '/public/pages/activity/static', '/public/pages/activity/static/bulet.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2398, 'couponBg.png', '/public/pages/activity/static', '/public/pages/activity/static/couponBg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2399, 'greend.png', '/public/pages/activity/static', '/public/pages/activity/static/greend.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2400, 'greent.jpg', '/public/pages/activity/static', '/public/pages/activity/static/greent.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2401, 'groupLine.png', '/public/pages/activity/static', '/public/pages/activity/static/groupLine.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2402, 'lightning.png', '/public/pages/activity/static', '/public/pages/activity/static/lightning.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2403, 'oranged.png', '/public/pages/activity/static', '/public/pages/activity/static/oranged.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2404, 'oranget.jpg', '/public/pages/activity/static', '/public/pages/activity/static/oranget.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2405, 'pinkd.png', '/public/pages/activity/static', '/public/pages/activity/static/pinkd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2406, 'pinkt.jpg', '/public/pages/activity/static', '/public/pages/activity/static/pinkt.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2407, 'posterBag.png', '/public/pages/activity/static', '/public/pages/activity/static/posterBag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2408, 'preBtnLeft.png', '/public/pages/activity/static', '/public/pages/activity/static/preBtnLeft.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2409, 'presell_text.png', '/public/pages/activity/static', '/public/pages/activity/static/presell_text.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2410, 'priceBg.png', '/public/pages/activity/static', '/public/pages/activity/static/priceBg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2411, 'priceTag.png', '/public/pages/activity/static', '/public/pages/activity/static/priceTag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2412, 'redd.png', '/public/pages/activity/static', '/public/pages/activity/static/redd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2413, 'redt.jpg', '/public/pages/activity/static', '/public/pages/activity/static/redt.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2414, 'vacancy.png', '/public/pages/activity/static', '/public/pages/activity/static/vacancy.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2415, 'admin', '/public/pages', '/public/pages/admin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2416, 'static', '/public/pages/admin', '/public/pages/admin/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2417, 'pricetitle.jpg', '/public/pages/admin/static', '/public/pages/admin/static/pricetitle.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2418, 'scan.gif', '/public/pages/admin/static', '/public/pages/admin/static/scan.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2419, 'annex', '/public/pages', '/public/pages/annex', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2420, 'static', '/public/pages/annex', '/public/pages/annex/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2421, 'error.png', '/public/pages/annex/static', '/public/pages/annex/static/error.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2422, 'img.jpg', '/public/pages/annex/static', '/public/pages/annex/static/img.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2423, 'offline-result.png', '/public/pages/annex/static', '/public/pages/annex/static/offline-result.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2424, 'settledSuccessful.svg', '/public/pages/annex/static', '/public/pages/annex/static/settledSuccessful.svg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2425, 'success.png', '/public/pages/annex/static', '/public/pages/annex/static/success.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2426, 'columnGoods', '/public/pages', '/public/pages/columnGoods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2427, 'static', '/public/pages/columnGoods', '/public/pages/columnGoods/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2428, 'feed-icon.png', '/public/pages/columnGoods/static', '/public/pages/columnGoods/static/feed-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2429, 'yhxy.html', '/public/pages/columnGoods/static', '/public/pages/columnGoods/static/yhxy.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2430, 'yszc.html', '/public/pages/columnGoods/static', '/public/pages/columnGoods/static/yszc.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2431, 'goods', '/public/pages', '/public/pages/goods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2432, 'static', '/public/pages/goods', '/public/pages/goods/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2433, 'address-aleart-header.png', '/public/pages/goods/static', '/public/pages/goods/static/address-aleart-header.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2434, 'font-left.png', '/public/pages/goods/static', '/public/pages/goods/static/font-left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2435, 'font-right.png', '/public/pages/goods/static', '/public/pages/goods/static/font-right.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2436, 'head-l-point.png', '/public/pages/goods/static', '/public/pages/goods/static/head-l-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2437, 'head-r-point.png', '/public/pages/goods/static', '/public/pages/goods/static/head-r-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2438, 'lottery-bag.png', '/public/pages/goods/static', '/public/pages/goods/static/lottery-bag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2439, 'lottery-click.png', '/public/pages/goods/static', '/public/pages/goods/static/lottery-click.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2440, 'orderTime.png', '/public/pages/goods/static', '/public/pages/goods/static/orderTime.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2441, 'pay-lottery-bag.png', '/public/pages/goods/static', '/public/pages/goods/static/pay-lottery-bag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2442, 'pay-lottery-l.png', '/public/pages/goods/static', '/public/pages/goods/static/pay-lottery-l.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2443, 'pay-lottery-r.png', '/public/pages/goods/static', '/public/pages/goods/static/pay-lottery-r.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2444, 'shuoming.png', '/public/pages/goods/static', '/public/pages/goods/static/shuoming.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2445, 'writeOff.jpg', '/public/pages/goods/static', '/public/pages/goods/static/writeOff.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2446, 'written.png', '/public/pages/goods/static', '/public/pages/goods/static/written.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2447, 'points_mall', '/public/pages', '/public/pages/points_mall', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2448, 'static', '/public/pages/points_mall', '/public/pages/points_mall/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2449, 'everyday.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/everyday.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2450, 'exchange.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/exchange.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2451, 'go-shoping.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/go-shoping.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2452, 'luck-draw.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/luck-draw.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2453, 'my-point.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/my-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2454, 'points-lottery.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/points-lottery.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2455, 'sign-in.png', '/public/pages/points_mall/static', '/public/pages/points_mall/static/sign-in.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2456, 'users', '/public/pages', '/public/pages/users', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2457, 'static', '/public/pages/users', '/public/pages/users/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2458, '1.png', '/public/pages/users/static', '/public/pages/users/static/1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2459, '2.png', '/public/pages/users/static', '/public/pages/users/static/2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2460, '3.png', '/public/pages/users/static', '/public/pages/users/static/3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2461, '4.png', '/public/pages/users/static', '/public/pages/users/static/4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2462, 'address.png', '/public/pages/users/static', '/public/pages/users/static/address.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2463, 'admin-msg.png', '/public/pages/users/static', '/public/pages/users/static/admin-msg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2464, 'code_1.png', '/public/pages/users/static', '/public/pages/users/static/code_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2465, 'code_2.png', '/public/pages/users/static', '/public/pages/users/static/code_2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2466, 'gift.png', '/public/pages/users/static', '/public/pages/users/static/gift.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2467, 'home.png', '/public/pages/users/static', '/public/pages/users/static/home.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2468, 'left.png', '/public/pages/users/static', '/public/pages/users/static/left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2469, 'lock.png', '/public/pages/users/static', '/public/pages/users/static/lock.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2470, 'logo2.png', '/public/pages/users/static', '/public/pages/users/static/logo2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2471, 'medal01.png', '/public/pages/users/static', '/public/pages/users/static/medal01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2472, 'medal02.png', '/public/pages/users/static', '/public/pages/users/static/medal02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2473, 'medal03.png', '/public/pages/users/static', '/public/pages/users/static/medal03.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2474, 'member-font.png', '/public/pages/users/static', '/public/pages/users/static/member-font.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2475, 'member-wang.png', '/public/pages/users/static', '/public/pages/users/static/member-wang.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2476, 'money.png', '/public/pages/users/static', '/public/pages/users/static/money.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2477, 'phone_1.png', '/public/pages/users/static', '/public/pages/users/static/phone_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2478, 'score.png', '/public/pages/users/static', '/public/pages/users/static/score.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2479, 'share-info2.png', '/public/pages/users/static', '/public/pages/users/static/share-info2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2480, 'signH.png', '/public/pages/users/static', '/public/pages/users/static/signH.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2481, 'sort1.png', '/public/pages/users/static', '/public/pages/users/static/sort1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2482, 'sort2.png', '/public/pages/users/static', '/public/pages/users/static/sort2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2483, 'sort3.png', '/public/pages/users/static', '/public/pages/users/static/sort3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2484, 'user-msg.png', '/public/pages/users/static', '/public/pages/users/static/user-msg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2485, 'value.jpg', '/public/pages/users/static', '/public/pages/users/static/value.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2486, 'vip.png', '/public/pages/users/static', '/public/pages/users/static/vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2487, 'vip01.png', '/public/pages/users/static', '/public/pages/users/static/vip01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2488, 'vip02.png', '/public/pages/users/static', '/public/pages/users/static/vip02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2489, 'vip03.png', '/public/pages/users/static', '/public/pages/users/static/vip03.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2490, 'vip04.png', '/public/pages/users/static', '/public/pages/users/static/vip04.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2491, 'vip05.png', '/public/pages/users/static', '/public/pages/users/static/vip05.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2492, 'wechat_login.png', '/public/pages/users/static', '/public/pages/users/static/wechat_login.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2493, 'robots.txt', '/public', '/public/robots.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '爬虫说明文件'),
|
||
(2494, 'router.php', '/public', '/public/router.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '系统路由文件'),
|
||
(2495, 'static', '/public', '/public/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', '全站静态资源目录'),
|
||
(2496, 'css', '/public/static', '/public/static/css', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2497, 'base.css', '/public/static/css', '/public/static/css/base.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2498, 'guildford.css', '/public/static/css', '/public/static/css/guildford.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2499, 'style.scss', '/public/static/css', '/public/static/css/style.scss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2500, 'easy-loadimage', '/public/static', '/public/static/easy-loadimage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2501, 'loadfail.png', '/public/static/easy-loadimage', '/public/static/easy-loadimage/loadfail.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2502, 'loading.png', '/public/static/easy-loadimage', '/public/static/easy-loadimage/loading.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2503, 'iconfont', '/public/static', '/public/static/iconfont', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2504, 'iconfont.css', '/public/static/iconfont', '/public/static/iconfont/iconfont.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2505, 'images', '/public/static', '/public/static/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2506, '1-001.png', '/public/static/images', '/public/static/images/1-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2507, '1-002.png', '/public/static/images', '/public/static/images/1-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2508, '2-001.png', '/public/static/images', '/public/static/images/2-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2509, '2-002.png', '/public/static/images', '/public/static/images/2-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2510, '3-001.png', '/public/static/images', '/public/static/images/3-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2511, '3-002.png', '/public/static/images', '/public/static/images/3-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2512, '4-001.png', '/public/static/images', '/public/static/images/4-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2513, '4-002.png', '/public/static/images', '/public/static/images/4-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2514, 'address.png', '/public/static/images', '/public/static/images/address.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2515, 'code-bg.png', '/public/static/images', '/public/static/images/code-bg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2516, 'contact.png', '/public/static/images', '/public/static/images/contact.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2517, 'def_avatar.png', '/public/static/images', '/public/static/images/def_avatar.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2518, 'down.png', '/public/static/images', '/public/static/images/down.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2519, 'edit.png', '/public/static/images', '/public/static/images/edit.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2520, 'f.png', '/public/static/images', '/public/static/images/f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2521, 'fvip.png', '/public/static/images', '/public/static/images/fvip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2522, 'group02.gif', '/public/static/images', '/public/static/images/group02.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2523, 'headwear.png', '/public/static/images', '/public/static/images/headwear.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2524, 'horn.png', '/public/static/images', '/public/static/images/horn.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2525, 'jf-head.png', '/public/static/images', '/public/static/images/jf-head.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2526, 'jvip.png', '/public/static/images', '/public/static/images/jvip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2527, 'left.png', '/public/static/images', '/public/static/images/left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2528, 'line.jpg', '/public/static/images', '/public/static/images/line.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2529, 'live-01.png', '/public/static/images', '/public/static/images/live-01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2530, 'live-02.png', '/public/static/images', '/public/static/images/live-02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2531, 'member.png', '/public/static/images', '/public/static/images/member.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2532, 'member01.png', '/public/static/images', '/public/static/images/member01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2533, 'menu.png', '/public/static/images', '/public/static/images/menu.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2534, 'mores.png', '/public/static/images', '/public/static/images/mores.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2535, 'one.png', '/public/static/images', '/public/static/images/one.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2536, 'poster-close.png', '/public/static/images', '/public/static/images/poster-close.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2537, 'posterbackgd.png', '/public/static/images', '/public/static/images/posterbackgd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2538, 'right-icon.png', '/public/static/images', '/public/static/images/right-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2539, 'sort-img.png', '/public/static/images', '/public/static/images/sort-img.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2540, 'spike-icon-002.gif', '/public/static/images', '/public/static/images/spike-icon-002.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2541, 'spot.png', '/public/static/images', '/public/static/images/spot.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2542, 'stop.png', '/public/static/images', '/public/static/images/stop.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2543, 'support.png', '/public/static/images', '/public/static/images/support.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2544, 'svip.gif', '/public/static/images', '/public/static/images/svip.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2545, 'svip.png', '/public/static/images', '/public/static/images/svip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2546, 'three.png', '/public/static/images', '/public/static/images/three.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2547, 'two.png', '/public/static/images', '/public/static/images/two.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2548, 'up.png', '/public/static/images', '/public/static/images/up.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2549, 'user01.png', '/public/static/images', '/public/static/images/user01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2550, 'user_vip.png', '/public/static/images', '/public/static/images/user_vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2551, 'vip.png', '/public/static/images', '/public/static/images/vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2552, 'img', '/public/static', '/public/static/img', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2553, '1.a4fb1eca.png', '/public/static/img', '/public/static/img/1.a4fb1eca.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2554, '2.7670768a.png', '/public/static/img', '/public/static/img/2.7670768a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2555, '3.f0d15b3a.png', '/public/static/img', '/public/static/img/3.f0d15b3a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2556, '4.8550f067.png', '/public/static/img', '/public/static/img/4.8550f067.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2557, 'address-aleart-header.cf1d5133.png', '/public/static/img', '/public/static/img/address-aleart-header.cf1d5133.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2558, 'address.571e6bfc.png', '/public/static/img', '/public/static/img/address.571e6bfc.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2559, 'error.8e4ea509.png', '/public/static/img', '/public/static/img/error.8e4ea509.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2560, 'gift.bde2a03c.png', '/public/static/img', '/public/static/img/gift.bde2a03c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2561, 'img.984e1a3f.jpg', '/public/static/img', '/public/static/img/img.984e1a3f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2562, 'img.beebfe54.png', '/public/static/img', '/public/static/img/img.beebfe54.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2563, 'line.05bf1c84.jpg', '/public/static/img', '/public/static/img/line.05bf1c84.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2564, 'logo2.bf4a7420.png', '/public/static/img', '/public/static/img/logo2.bf4a7420.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2565, 'lottery-bag.6d5aec85.png', '/public/static/img', '/public/static/img/lottery-bag.6d5aec85.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2566, 'lottery-click.4e1ddd26.png', '/public/static/img', '/public/static/img/lottery-click.4e1ddd26.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2567, 'luck-draw.ab861eb9.png', '/public/static/img', '/public/static/img/luck-draw.ab861eb9.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2568, 'member-wang.b831cc92.png', '/public/static/img', '/public/static/img/member-wang.b831cc92.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2569, 'member.daa234e6.png', '/public/static/img', '/public/static/img/member.daa234e6.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2570, 'money.136360a9.png', '/public/static/img', '/public/static/img/money.136360a9.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2571, 'my-point.8fb5c2ce.png', '/public/static/img', '/public/static/img/my-point.8fb5c2ce.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2572, 'offline-result.42cf447a.png', '/public/static/img', '/public/static/img/offline-result.42cf447a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2573, 'orderTime.144c69b9.png', '/public/static/img', '/public/static/img/orderTime.144c69b9.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2574, 'pay-lottery-bag.0a8c3de1.png', '/public/static/img', '/public/static/img/pay-lottery-bag.0a8c3de1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2575, 'priceTag.42c0f06d.png', '/public/static/img', '/public/static/img/priceTag.42c0f06d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2576, 'scan.2ca2147e.gif', '/public/static/img', '/public/static/img/scan.2ca2147e.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2577, 'score.45d3ca1b.png', '/public/static/img', '/public/static/img/score.45d3ca1b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2578, 'share-info2.06c85b52.png', '/public/static/img', '/public/static/img/share-info2.06c85b52.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2579, 'signH.dd92985d.png', '/public/static/img', '/public/static/img/signH.dd92985d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2580, 'stop.5a8e6dc1.png', '/public/static/img', '/public/static/img/stop.5a8e6dc1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2581, 'success.e4e7dd73.png', '/public/static/img', '/public/static/img/success.e4e7dd73.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2582, 'svip.bbb3b36a.gif', '/public/static/img', '/public/static/img/svip.bbb3b36a.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2583, 'user01.b5b5a68c.png', '/public/static/img', '/public/static/img/user01.b5b5a68c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2584, 'user_vip.2ad5cc06.png', '/public/static/img', '/public/static/img/user_vip.2ad5cc06.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2585, 'value.8017f149.jpg', '/public/static/img', '/public/static/img/value.8017f149.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2586, 'wechat_login.b276d0e9.png', '/public/static/img', '/public/static/img/wechat_login.b276d0e9.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2587, 'writeOff.e1bf8d03.jpg', '/public/static/img', '/public/static/img/writeOff.e1bf8d03.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2588, 'index.b0707a6a.css', '/public/static', '/public/static/index.b0707a6a.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2589, 'js', '/public/static', '/public/static/js', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2590, 'chunk-vendors.6d549041.js', '/public/static/js', '/public/static/js/chunk-vendors.6d549041.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2591, 'index.d412109b.js', '/public/static/js', '/public/static/js/index.d412109b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2592, 'pages-activity-bargain-index.7bf7d70a.js', '/public/static/js', '/public/static/js/pages-activity-bargain-index.7bf7d70a.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2593, 'pages-activity-goods_bargain-index.8a549836.js', '/public/static/js', '/public/static/js/pages-activity-goods_bargain-index.8a549836.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2594, 'pages-activity-goods_bargain_details-index.ad321702.js', '/public/static/js', '/public/static/js/pages-activity-goods_bargain_details-index.ad321702.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2595, 'pages-activity-goods_bargain_details-index~pages-activity-goods_combination_details-index~pages-acti~4093b5b6.4308947f.js', '/public/static/js', '/public/static/js/pages-activity-goods_bargain_details-index~pages-activity-goods_combination_details-index~pages-acti~4093b5b6.4308947f.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2596, 'pages-activity-goods_combination-index.034b8504.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination-index.034b8504.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2597, 'pages-activity-goods_combination_details-index.50dae960.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination_details-index.50dae960.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2598, 'pages-activity-goods_combination_details-index~pages-activity-goods_combination_status-index~pages-a~162f3e48.f454689c.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination_details-index~pages-activity-goods_combination_status-index~pages-a~162f3e48.f454689c.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2599, 'pages-activity-goods_combination_details-index~pages-activity-goods_seckill_details-index.86d1eead.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination_details-index~pages-activity-goods_seckill_details-index.86d1eead.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2600, 'pages-activity-goods_combination_details-index~pages-activity-goods_seckill_details-index~pages-good~4b5fa9d6.cc4c83ee.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination_details-index~pages-activity-goods_seckill_details-index~pages-good~4b5fa9d6.cc4c83ee.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2601, 'pages-activity-goods_combination_status-index.39baa551.js', '/public/static/js', '/public/static/js/pages-activity-goods_combination_status-index.39baa551.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2602, 'pages-activity-goods_seckill-index.d8212920.js', '/public/static/js', '/public/static/js/pages-activity-goods_seckill-index.d8212920.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2603, 'pages-activity-goods_seckill_details-index.01c5a9bf.js', '/public/static/js', '/public/static/js/pages-activity-goods_seckill_details-index.01c5a9bf.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2604, 'pages-activity-poster-poster-index.c8172bf3.js', '/public/static/js', '/public/static/js/pages-activity-poster-poster-index.c8172bf3.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2605, 'pages-activity-presell-index.2bf9c3af.js', '/public/static/js', '/public/static/js/pages-activity-presell-index.2bf9c3af.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2606, 'pages-admin-custom_date-index.bc63fbd9.js', '/public/static/js', '/public/static/js/pages-admin-custom_date-index.bc63fbd9.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2607, 'pages-admin-custom_date-index~pages-admin-statistics-index.d4d9dd39.js', '/public/static/js', '/public/static/js/pages-admin-custom_date-index~pages-admin-statistics-index.d4d9dd39.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2608, 'pages-admin-delivery-index.f2ef331d.js', '/public/static/js', '/public/static/js/pages-admin-delivery-index.f2ef331d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2609, 'pages-admin-order-index.5c1e381e.js', '/public/static/js', '/public/static/js/pages-admin-order-index.5c1e381e.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2610, 'pages-admin-orderDetail-index.24c3707f.js', '/public/static/js', '/public/static/js/pages-admin-orderDetail-index.24c3707f.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2611, 'pages-admin-orderDetail-index~pages-goods-goods_logistics-index~pages-goods-lottery-grids-record~pag~1782fff3.b0e87256.js', '/public/static/js', '/public/static/js/pages-admin-orderDetail-index~pages-goods-goods_logistics-index~pages-goods-lottery-grids-record~pag~1782fff3.b0e87256.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2612, 'pages-admin-orderList-index.9ea47e83.js', '/public/static/js', '/public/static/js/pages-admin-orderList-index.9ea47e83.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2613, 'pages-admin-order_cancellation-index.ca902d6f.js', '/public/static/js', '/public/static/js/pages-admin-order_cancellation-index.ca902d6f.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2614, 'pages-admin-statistics-index.159d0ea4.js', '/public/static/js', '/public/static/js/pages-admin-statistics-index.159d0ea4.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2615, 'pages-annex-offline_pay-index.8074c7db.js', '/public/static/js', '/public/static/js/pages-annex-offline_pay-index.8074c7db.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2616, 'pages-annex-offline_result-index.7433c30d.js', '/public/static/js', '/public/static/js/pages-annex-offline_result-index.7433c30d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2617, 'pages-annex-settled-index.0bdd9957.js', '/public/static/js', '/public/static/js/pages-annex-settled-index.0bdd9957.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2618, 'pages-annex-settled-index~pages-users-auth-index~pages-users-login-index~pages-users-user_phone-inde~94a5e64a.ca6e7c0b.js', '/public/static/js', '/public/static/js/pages-annex-settled-index~pages-users-auth-index~pages-users-login-index~pages-users-user_phone-inde~94a5e64a.ca6e7c0b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2619, 'pages-annex-special-index.92d44837.js', '/public/static/js', '/public/static/js/pages-annex-special-index.92d44837.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2620, 'pages-annex-special-index~pages-index-index.1c07f80a.js', '/public/static/js', '/public/static/js/pages-annex-special-index~pages-index-index.1c07f80a.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2621, 'pages-annex-vip_active-index.011bba16.js', '/public/static/js', '/public/static/js/pages-annex-vip_active-index.011bba16.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2622, 'pages-annex-vip_clause-index.f68672cc.js', '/public/static/js', '/public/static/js/pages-annex-vip_clause-index.f68672cc.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2623, 'pages-annex-vip_coupon-index.c1b61405.js', '/public/static/js', '/public/static/js/pages-annex-vip_coupon-index.c1b61405.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2624, 'pages-annex-vip_paid-index.9dd16dfa.js', '/public/static/js', '/public/static/js/pages-annex-vip_paid-index.9dd16dfa.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2625, 'pages-annex-web_view-index.6ef08ef8.js', '/public/static/js', '/public/static/js/pages-annex-web_view-index.6ef08ef8.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2626, 'pages-columnGoods-HotNewGoods-feedback.bd9da4ec.js', '/public/static/js', '/public/static/js/pages-columnGoods-HotNewGoods-feedback.bd9da4ec.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2627, 'pages-columnGoods-HotNewGoods-index.7bb89590.js', '/public/static/js', '/public/static/js/pages-columnGoods-HotNewGoods-index.7bb89590.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2628, 'pages-columnGoods-live_list-index.bcd41116.js', '/public/static/js', '/public/static/js/pages-columnGoods-live_list-index.bcd41116.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2629, 'pages-extension-customer_list-chat.9ff5adf0.js', '/public/static/js', '/public/static/js/pages-extension-customer_list-chat.9ff5adf0.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2630, 'pages-extension-news_details-index.8cfa6c6b.js', '/public/static/js', '/public/static/js/pages-extension-news_details-index.8cfa6c6b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2631, 'pages-extension-news_list-index.0692e093.js', '/public/static/js', '/public/static/js/pages-extension-news_list-index.0692e093.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2632, 'pages-goods-admin_order_detail-index.d4f7e937.js', '/public/static/js', '/public/static/js/pages-goods-admin_order_detail-index.d4f7e937.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2633, 'pages-goods-cashier-index.a905cbb2.js', '/public/static/js', '/public/static/js/pages-goods-cashier-index.a905cbb2.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2634, 'pages-goods-goods_comment_con-index.b5d3d506.js', '/public/static/js', '/public/static/js/pages-goods-goods_comment_con-index.b5d3d506.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2635, 'pages-goods-goods_comment_con-lottery_comment.f104ff24.js', '/public/static/js', '/public/static/js/pages-goods-goods_comment_con-lottery_comment.f104ff24.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2636, 'pages-goods-goods_comment_con-lottery_comment~pages-goods-lottery-grids-index~pages-goods-order_pay_~755b960b.3fac3e96.js', '/public/static/js', '/public/static/js/pages-goods-goods_comment_con-lottery_comment~pages-goods-lottery-grids-index~pages-goods-order_pay_~755b960b.3fac3e96.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2637, 'pages-goods-goods_comment_list-index.1815a8fe.js', '/public/static/js', '/public/static/js/pages-goods-goods_comment_list-index.1815a8fe.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2638, 'pages-goods-goods_details_store-index.b0a712bf.js', '/public/static/js', '/public/static/js/pages-goods-goods_details_store-index.b0a712bf.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2639, 'pages-goods-goods_list-index.7c9ccb19.js', '/public/static/js', '/public/static/js/pages-goods-goods_list-index.7c9ccb19.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2640, 'pages-goods-goods_list-index~pages-points_mall-integral_goods_list.7eb13aa5.js', '/public/static/js', '/public/static/js/pages-goods-goods_list-index~pages-points_mall-integral_goods_list.7eb13aa5.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2641, 'pages-goods-goods_logistics-index.bbebf53d.js', '/public/static/js', '/public/static/js/pages-goods-goods_logistics-index.bbebf53d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2642, 'pages-goods-goods_return-index.f848fcce.js', '/public/static/js', '/public/static/js/pages-goods-goods_return-index.f848fcce.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2643, 'pages-goods-goods_return_list-index.bec6fcd0.js', '/public/static/js', '/public/static/js/pages-goods-goods_return_list-index.bec6fcd0.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2644, 'pages-goods-goods_search-index.8ed0bdaf.js', '/public/static/js', '/public/static/js/pages-goods-goods_search-index.8ed0bdaf.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2645, 'pages-goods-lottery-grids-index.6347be0e.js', '/public/static/js', '/public/static/js/pages-goods-lottery-grids-index.6347be0e.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2646, 'pages-goods-lottery-grids-record.b2a34c01.js', '/public/static/js', '/public/static/js/pages-goods-lottery-grids-record.b2a34c01.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2647, 'pages-goods-order_confirm-index.5b3df756.js', '/public/static/js', '/public/static/js/pages-goods-order_confirm-index.5b3df756.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2648, 'pages-goods-order_confirm-index~pages-goods-order_details-index.2c9c5692.js', '/public/static/js', '/public/static/js/pages-goods-order_confirm-index~pages-goods-order_details-index.2c9c5692.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2649, 'pages-goods-order_confirm-index~pages-goods-order_details-index~pages-points_mall-integral_order~pag~4439065e.d8a54078.js', '/public/static/js', '/public/static/js/pages-goods-order_confirm-index~pages-goods-order_details-index~pages-points_mall-integral_order~pag~4439065e.d8a54078.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2650, 'pages-goods-order_confirm-index~pages-points_mall-integral_order.03fbfcec.js', '/public/static/js', '/public/static/js/pages-goods-order_confirm-index~pages-points_mall-integral_order.03fbfcec.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2651, 'pages-goods-order_details-index.dfbfa70d.js', '/public/static/js', '/public/static/js/pages-goods-order_details-index.dfbfa70d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2652, 'pages-goods-order_list-index.b17e0009.js', '/public/static/js', '/public/static/js/pages-goods-order_list-index.b17e0009.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2653, 'pages-goods-order_pay_status-index.e7f2b52d.js', '/public/static/js', '/public/static/js/pages-goods-order_pay_status-index.e7f2b52d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2654, 'pages-goods-order_refund_goods-index.a23a1a17.js', '/public/static/js', '/public/static/js/pages-goods-order_refund_goods-index.a23a1a17.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2655, 'pages-goods_cate-goods_cate.8fc37a60.js', '/public/static/js', '/public/static/js/pages-goods_cate-goods_cate.8fc37a60.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2656, 'pages-goods_cate-goods_cate~pages-index-index~pages-order_addcart-order_addcart~pages-user-index.1e60d7a2.js', '/public/static/js', '/public/static/js/pages-goods_cate-goods_cate~pages-index-index~pages-order_addcart-order_addcart~pages-user-index.1e60d7a2.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2657, 'pages-goods_details-index.d7f93915.js', '/public/static/js', '/public/static/js/pages-goods_details-index.d7f93915.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2658, 'pages-guide-index.f492ddfc.js', '/public/static/js', '/public/static/js/pages-guide-index.f492ddfc.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2659, 'pages-index-index.b9d45726.js', '/public/static/js', '/public/static/js/pages-index-index.b9d45726.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2660, 'pages-order_addcart-order_addcart.c91f3844.js', '/public/static/js', '/public/static/js/pages-order_addcart-order_addcart.c91f3844.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2661, 'pages-points_mall-exchange_record.de88e6b4.js', '/public/static/js', '/public/static/js/pages-points_mall-exchange_record.de88e6b4.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2662, 'pages-points_mall-index.07c06f2c.js', '/public/static/js', '/public/static/js/pages-points_mall-index.07c06f2c.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2663, 'pages-points_mall-integral_goods_details.4c876cf8.js', '/public/static/js', '/public/static/js/pages-points_mall-integral_goods_details.4c876cf8.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2664, 'pages-points_mall-integral_goods_list.b21b9e85.js', '/public/static/js', '/public/static/js/pages-points_mall-integral_goods_list.b21b9e85.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2665, 'pages-points_mall-integral_order.acb01ecf.js', '/public/static/js', '/public/static/js/pages-points_mall-integral_order.acb01ecf.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2666, 'pages-points_mall-integral_order_details.ca67015b.js', '/public/static/js', '/public/static/js/pages-points_mall-integral_order_details.ca67015b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2667, 'pages-points_mall-integral_order_status.1559a5e9.js', '/public/static/js', '/public/static/js/pages-points_mall-integral_order_status.1559a5e9.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2668, 'pages-points_mall-logistics_details.6608eb9b.js', '/public/static/js', '/public/static/js/pages-points_mall-logistics_details.6608eb9b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2669, 'pages-points_mall-user_address.d068af56.js', '/public/static/js', '/public/static/js/pages-points_mall-user_address.d068af56.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2670, 'pages-user-index.dc48a005.js', '/public/static/js', '/public/static/js/pages-user-index.dc48a005.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2671, 'pages-users-alipay_invoke-index.b4d1cb21.js', '/public/static/js', '/public/static/js/pages-users-alipay_invoke-index.b4d1cb21.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2672, 'pages-users-auth-index.74a4bcc8.js', '/public/static/js', '/public/static/js/pages-users-auth-index.74a4bcc8.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2673, 'pages-users-auth-index~pages-users-login-index~pages-users-user_phone-index~pages-users-user_pwd_edi~f209b905.524a176e.js', '/public/static/js', '/public/static/js/pages-users-auth-index~pages-users-login-index~pages-users-user_phone-index~pages-users-user_pwd_edi~f209b905.524a176e.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2674, 'pages-users-commission_rank-index.bd9e147b.js', '/public/static/js', '/public/static/js/pages-users-commission_rank-index.bd9e147b.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2675, 'pages-users-login-index.fddd0eca.js', '/public/static/js', '/public/static/js/pages-users-login-index.fddd0eca.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2676, 'pages-users-message_center-index.bcc3d0be.js', '/public/static/js', '/public/static/js/pages-users-message_center-index.bcc3d0be.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2677, 'pages-users-message_center-messageDetail.de579ea9.js', '/public/static/js', '/public/static/js/pages-users-message_center-messageDetail.de579ea9.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2678, 'pages-users-payment_on_behalf-index.00a4134d.js', '/public/static/js', '/public/static/js/pages-users-payment_on_behalf-index.00a4134d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2679, 'pages-users-payment_on_behalf-pay_status.95ebde2f.js', '/public/static/js', '/public/static/js/pages-users-payment_on_behalf-pay_status.95ebde2f.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2680, 'pages-users-privacy-index.3ea2c6ae.js', '/public/static/js', '/public/static/js/pages-users-privacy-index.3ea2c6ae.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2681, 'pages-users-promoter-list-index.b50885e7.js', '/public/static/js', '/public/static/js/pages-users-promoter-list-index.b50885e7.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2682, 'pages-users-promoter-order-index.fc8412d3.js', '/public/static/js', '/public/static/js/pages-users-promoter-order-index.fc8412d3.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2683, 'pages-users-promoter_rank-index.86ec6b66.js', '/public/static/js', '/public/static/js/pages-users-promoter_rank-index.86ec6b66.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2684, 'pages-users-retrievePassword-index.349a1103.js', '/public/static/js', '/public/static/js/pages-users-retrievePassword-index.349a1103.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2685, 'pages-users-scan_login-index.84c23ac4.js', '/public/static/js', '/public/static/js/pages-users-scan_login-index.84c23ac4.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2686, 'pages-users-staff_list-index.2a39ae99.js', '/public/static/js', '/public/static/js/pages-users-staff_list-index.2a39ae99.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2687, 'pages-users-user_address-index.1c627be4.js', '/public/static/js', '/public/static/js/pages-users-user_address-index.1c627be4.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2688, 'pages-users-user_address_list-index.23a130f2.js', '/public/static/js', '/public/static/js/pages-users-user_address_list-index.23a130f2.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2689, 'pages-users-user_bill-index.0d300d89.js', '/public/static/js', '/public/static/js/pages-users-user_bill-index.0d300d89.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2690, 'pages-users-user_cancellation-index.84cb31a6.js', '/public/static/js', '/public/static/js/pages-users-user_cancellation-index.84cb31a6.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2691, 'pages-users-user_cash-index.8fa18e0e.js', '/public/static/js', '/public/static/js/pages-users-user_cash-index.8fa18e0e.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2692, 'pages-users-user_coupon-index.259b2a75.js', '/public/static/js', '/public/static/js/pages-users-user_coupon-index.259b2a75.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2693, 'pages-users-user_distribution_level-index.07037e3a.js', '/public/static/js', '/public/static/js/pages-users-user_distribution_level-index.07037e3a.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2694, 'pages-users-user_get_coupon-index.6011e57c.js', '/public/static/js', '/public/static/js/pages-users-user_get_coupon-index.6011e57c.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2695, 'pages-users-user_goods_collection-index.bbb7a1eb.js', '/public/static/js', '/public/static/js/pages-users-user_goods_collection-index.bbb7a1eb.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2696, 'pages-users-user_info-index.37ca6df5.js', '/public/static/js', '/public/static/js/pages-users-user_info-index.37ca6df5.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2697, 'pages-users-user_integral-index.76ffb77f.js', '/public/static/js', '/public/static/js/pages-users-user_integral-index.76ffb77f.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2698, 'pages-users-user_invoice_form-index.3f23b4e4.js', '/public/static/js', '/public/static/js/pages-users-user_invoice_form-index.3f23b4e4.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2699, 'pages-users-user_invoice_list-index.db7d2ed3.js', '/public/static/js', '/public/static/js/pages-users-user_invoice_list-index.db7d2ed3.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2700, 'pages-users-user_invoice_order-index.28c6d57a.js', '/public/static/js', '/public/static/js/pages-users-user_invoice_order-index.28c6d57a.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2701, 'pages-users-user_money-index.2d9687eb.js', '/public/static/js', '/public/static/js/pages-users-user_money-index.2d9687eb.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2702, 'pages-users-user_payment-index.b5affb79.js', '/public/static/js', '/public/static/js/pages-users-user_payment-index.b5affb79.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2703, 'pages-users-user_phone-index.41463551.js', '/public/static/js', '/public/static/js/pages-users-user_phone-index.41463551.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2704, 'pages-users-user_pwd_edit-index.8fccb2e9.js', '/public/static/js', '/public/static/js/pages-users-user_pwd_edit-index.8fccb2e9.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2705, 'pages-users-user_return_list-index.c219cd87.js', '/public/static/js', '/public/static/js/pages-users-user_return_list-index.c219cd87.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2706, 'pages-users-user_sgin-index.986bbd6d.js', '/public/static/js', '/public/static/js/pages-users-user_sgin-index.986bbd6d.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2707, 'pages-users-user_sgin_list-index.08a547ae.js', '/public/static/js', '/public/static/js/pages-users-user_sgin_list-index.08a547ae.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2708, 'pages-users-user_spread_code-index.864b56cd.js', '/public/static/js', '/public/static/js/pages-users-user_spread_code-index.864b56cd.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2709, 'pages-users-user_spread_money-index.86ed6404.js', '/public/static/js', '/public/static/js/pages-users-user_spread_money-index.86ed6404.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2710, 'pages-users-user_spread_user-index.a5b3a9d5.js', '/public/static/js', '/public/static/js/pages-users-user_spread_user-index.a5b3a9d5.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2711, 'pages-users-user_vip-index.3882f122.js', '/public/static/js', '/public/static/js/pages-users-user_vip-index.3882f122.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2712, 'pages-users-user_vip_areer-index.1d4ff373.js', '/public/static/js', '/public/static/js/pages-users-user_vip_areer-index.1d4ff373.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2713, 'pages-users-visit_list-index.e18810f7.js', '/public/static/js', '/public/static/js/pages-users-visit_list-index.e18810f7.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2714, 'pages-users-wechat_login-index.24603613.js', '/public/static/js', '/public/static/js/pages-users-wechat_login-index.24603613.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2715, 'statics', '/public', '/public/statics', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', '移动端静态资源目录'),
|
||
(2716, 'exception.tpl', '/public/statics', '/public/statics/exception.tpl', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:52', ''),
|
||
(2717, 'font', '/public/statics', '/public/statics/font', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2718, 'Alibaba-PuHuiTi-Regular.otf', '/public/statics/font', '/public/statics/font/Alibaba-PuHuiTi-Regular.otf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2719, 'simsunb.ttf', '/public/statics/font', '/public/statics/font/simsunb.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2720, 'images', '/public/statics', '/public/statics/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2721, 'check1.jpg', '/public/statics/images', '/public/statics/images/check1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2722, 'check2.jpg', '/public/statics/images', '/public/statics/images/check2.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2723, 'check3.jpg', '/public/statics/images', '/public/statics/images/check3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2724, 'check4.jpg', '/public/statics/images', '/public/statics/images/check4.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2725, 'close.gif', '/public/statics/images', '/public/statics/images/close.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2726, 'co-bag.png', '/public/statics/images', '/public/statics/images/co-bag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2727, 'empty-box.png', '/public/statics/images', '/public/statics/images/empty-box.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2728, 'error-network.png', '/public/statics/images', '/public/statics/images/error-network.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2729, 'look.png', '/public/statics/images', '/public/statics/images/look.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2730, 'no-thing.png', '/public/statics/images', '/public/statics/images/no-thing.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2731, 'noAddress.png', '/public/statics/images', '/public/statics/images/noAddress.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2732, 'noCollection.png', '/public/statics/images', '/public/statics/images/noCollection.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2733, 'noCoupon.png', '/public/statics/images', '/public/statics/images/noCoupon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2734, 'noInvoice.png', '/public/statics/images', '/public/statics/images/noInvoice.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2735, 'noMessage.png', '/public/statics/images', '/public/statics/images/noMessage.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2736, 'noSearch.png', '/public/statics/images', '/public/statics/images/noSearch.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2737, 'open.gif', '/public/statics/images', '/public/statics/images/open.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2738, 'red-packets.png', '/public/statics/images', '/public/statics/images/red-packets.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2739, 'share-info.png', '/public/statics/images', '/public/statics/images/share-info.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2740, 'mp_view', '/public/statics', '/public/statics/mp_view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2741, 'app.js', '/public/statics/mp_view', '/public/statics/mp_view/app.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2742, 'app.json', '/public/statics/mp_view', '/public/statics/mp_view/app.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2743, 'app.wxss', '/public/statics/mp_view', '/public/statics/mp_view/app.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2744, 'common', '/public/statics/mp_view', '/public/statics/mp_view/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2745, 'main.js', '/public/statics/mp_view/common', '/public/statics/mp_view/common/main.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2746, 'main.wxss', '/public/statics/mp_view/common', '/public/statics/mp_view/common/main.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2747, 'runtime.js', '/public/statics/mp_view/common', '/public/statics/mp_view/common/runtime.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2748, 'vendor.js', '/public/statics/mp_view/common', '/public/statics/mp_view/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2749, 'components', '/public/statics/mp_view', '/public/statics/mp_view/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2750, 'Authorize.js', '/public/statics/mp_view/components', '/public/statics/mp_view/components/Authorize.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2751, 'Authorize.json', '/public/statics/mp_view/components', '/public/statics/mp_view/components/Authorize.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2752, 'Authorize.wxml', '/public/statics/mp_view/components', '/public/statics/mp_view/components/Authorize.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2753, 'Authorize.wxss', '/public/statics/mp_view/components', '/public/statics/mp_view/components/Authorize.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2754, 'Loading', '/public/statics/mp_view/components', '/public/statics/mp_view/components/Loading', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2755, 'index.js', '/public/statics/mp_view/components/Loading', '/public/statics/mp_view/components/Loading/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2756, 'index.json', '/public/statics/mp_view/components/Loading', '/public/statics/mp_view/components/Loading/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2757, 'index.wxml', '/public/statics/mp_view/components/Loading', '/public/statics/mp_view/components/Loading/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2758, 'index.wxss', '/public/statics/mp_view/components/Loading', '/public/statics/mp_view/components/Loading/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2759, 'addressWindow', '/public/statics/mp_view/components', '/public/statics/mp_view/components/addressWindow', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2760, 'index.js', '/public/statics/mp_view/components/addressWindow', '/public/statics/mp_view/components/addressWindow/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2761, 'index.json', '/public/statics/mp_view/components/addressWindow', '/public/statics/mp_view/components/addressWindow/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2762, 'index.wxml', '/public/statics/mp_view/components/addressWindow', '/public/statics/mp_view/components/addressWindow/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2763, 'index.wxss', '/public/statics/mp_view/components/addressWindow', '/public/statics/mp_view/components/addressWindow/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2764, 'cartList', '/public/statics/mp_view/components', '/public/statics/mp_view/components/cartList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2765, 'index.js', '/public/statics/mp_view/components/cartList', '/public/statics/mp_view/components/cartList/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2766, 'index.json', '/public/statics/mp_view/components/cartList', '/public/statics/mp_view/components/cartList/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2767, 'index.wxml', '/public/statics/mp_view/components/cartList', '/public/statics/mp_view/components/cartList/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2768, 'index.wxss', '/public/statics/mp_view/components/cartList', '/public/statics/mp_view/components/cartList/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2769, 'countDown', '/public/statics/mp_view/components', '/public/statics/mp_view/components/countDown', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2770, 'index.js', '/public/statics/mp_view/components/countDown', '/public/statics/mp_view/components/countDown/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2771, 'index.json', '/public/statics/mp_view/components/countDown', '/public/statics/mp_view/components/countDown/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2772, 'index.wxml', '/public/statics/mp_view/components/countDown', '/public/statics/mp_view/components/countDown/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2773, 'index.wxss', '/public/statics/mp_view/components/countDown', '/public/statics/mp_view/components/countDown/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2774, 'couponListWindow', '/public/statics/mp_view/components', '/public/statics/mp_view/components/couponListWindow', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2775, 'index.js', '/public/statics/mp_view/components/couponListWindow', '/public/statics/mp_view/components/couponListWindow/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2776, 'index.json', '/public/statics/mp_view/components/couponListWindow', '/public/statics/mp_view/components/couponListWindow/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2777, 'index.wxml', '/public/statics/mp_view/components/couponListWindow', '/public/statics/mp_view/components/couponListWindow/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2778, 'index.wxss', '/public/statics/mp_view/components/couponListWindow', '/public/statics/mp_view/components/couponListWindow/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2779, 'couponWindow', '/public/statics/mp_view/components', '/public/statics/mp_view/components/couponWindow', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2780, 'index.js', '/public/statics/mp_view/components/couponWindow', '/public/statics/mp_view/components/couponWindow/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2781, 'index.json', '/public/statics/mp_view/components/couponWindow', '/public/statics/mp_view/components/couponWindow/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2782, 'index.wxml', '/public/statics/mp_view/components/couponWindow', '/public/statics/mp_view/components/couponWindow/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2783, 'index.wxss', '/public/statics/mp_view/components/couponWindow', '/public/statics/mp_view/components/couponWindow/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2784, 'cusPreviewImg', '/public/statics/mp_view/components', '/public/statics/mp_view/components/cusPreviewImg', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2785, 'index.js', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2786, 'index.json', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2787, 'index.wxml', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2788, 'index.wxss', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2789, 'swiperPrevie.js', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/swiperPrevie.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2790, 'swiperPrevie.json', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/swiperPrevie.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2791, 'swiperPrevie.wxml', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/swiperPrevie.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2792, 'swiperPrevie.wxss', '/public/statics/mp_view/components/cusPreviewImg', '/public/statics/mp_view/components/cusPreviewImg/swiperPrevie.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2793, 'd_goodList', '/public/statics/mp_view/components', '/public/statics/mp_view/components/d_goodList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2794, 'index.js', '/public/statics/mp_view/components/d_goodList', '/public/statics/mp_view/components/d_goodList/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2795, 'index.json', '/public/statics/mp_view/components/d_goodList', '/public/statics/mp_view/components/d_goodList/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2796, 'index.wxml', '/public/statics/mp_view/components/d_goodList', '/public/statics/mp_view/components/d_goodList/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2797, 'index.wxss', '/public/statics/mp_view/components/d_goodList', '/public/statics/mp_view/components/d_goodList/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2798, 'easy-loadimage', '/public/statics/mp_view/components', '/public/statics/mp_view/components/easy-loadimage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2799, 'easy-loadimage.js', '/public/statics/mp_view/components/easy-loadimage', '/public/statics/mp_view/components/easy-loadimage/easy-loadimage.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2800, 'easy-loadimage.json', '/public/statics/mp_view/components/easy-loadimage', '/public/statics/mp_view/components/easy-loadimage/easy-loadimage.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2801, 'easy-loadimage.wxml', '/public/statics/mp_view/components/easy-loadimage', '/public/statics/mp_view/components/easy-loadimage/easy-loadimage.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2802, 'easy-loadimage.wxss', '/public/statics/mp_view/components/easy-loadimage', '/public/statics/mp_view/components/easy-loadimage/easy-loadimage.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2803, 'eidtUserModal', '/public/statics/mp_view/components', '/public/statics/mp_view/components/eidtUserModal', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2804, 'index.js', '/public/statics/mp_view/components/eidtUserModal', '/public/statics/mp_view/components/eidtUserModal/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2805, 'index.json', '/public/statics/mp_view/components/eidtUserModal', '/public/statics/mp_view/components/eidtUserModal/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2806, 'index.wxml', '/public/statics/mp_view/components/eidtUserModal', '/public/statics/mp_view/components/eidtUserModal/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2807, 'index.wxss', '/public/statics/mp_view/components/eidtUserModal', '/public/statics/mp_view/components/eidtUserModal/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2808, 'emptyPage.js', '/public/statics/mp_view/components', '/public/statics/mp_view/components/emptyPage.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2809, 'emptyPage.json', '/public/statics/mp_view/components', '/public/statics/mp_view/components/emptyPage.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2810, 'emptyPage.wxml', '/public/statics/mp_view/components', '/public/statics/mp_view/components/emptyPage.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2811, 'emptyPage.wxss', '/public/statics/mp_view/components', '/public/statics/mp_view/components/emptyPage.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2812, 'goodClass', '/public/statics/mp_view/components', '/public/statics/mp_view/components/goodClass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2813, 'index.js', '/public/statics/mp_view/components/goodClass', '/public/statics/mp_view/components/goodClass/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2814, 'index.json', '/public/statics/mp_view/components/goodClass', '/public/statics/mp_view/components/goodClass/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2815, 'index.wxml', '/public/statics/mp_view/components/goodClass', '/public/statics/mp_view/components/goodClass/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2816, 'index.wxss', '/public/statics/mp_view/components/goodClass', '/public/statics/mp_view/components/goodClass/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2817, 'goodList', '/public/statics/mp_view/components', '/public/statics/mp_view/components/goodList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2818, 'index.js', '/public/statics/mp_view/components/goodList', '/public/statics/mp_view/components/goodList/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2819, 'index.json', '/public/statics/mp_view/components/goodList', '/public/statics/mp_view/components/goodList/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2820, 'index.wxml', '/public/statics/mp_view/components/goodList', '/public/statics/mp_view/components/goodList/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2821, 'index.wxss', '/public/statics/mp_view/components/goodList', '/public/statics/mp_view/components/goodList/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2822, 'guide', '/public/statics/mp_view/components', '/public/statics/mp_view/components/guide', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2823, 'index.js', '/public/statics/mp_view/components/guide', '/public/statics/mp_view/components/guide/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2824, 'index.json', '/public/statics/mp_view/components/guide', '/public/statics/mp_view/components/guide/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2825, 'index.wxml', '/public/statics/mp_view/components/guide', '/public/statics/mp_view/components/guide/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2826, 'index.wxss', '/public/statics/mp_view/components/guide', '/public/statics/mp_view/components/guide/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2827, 'home', '/public/statics/mp_view/components', '/public/statics/mp_view/components/home', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2828, 'index.js', '/public/statics/mp_view/components/home', '/public/statics/mp_view/components/home/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2829, 'index.json', '/public/statics/mp_view/components/home', '/public/statics/mp_view/components/home/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2830, 'index.wxml', '/public/statics/mp_view/components/home', '/public/statics/mp_view/components/home/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2831, 'index.wxss', '/public/statics/mp_view/components/home', '/public/statics/mp_view/components/home/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2832, 'homeList', '/public/statics/mp_view/components', '/public/statics/mp_view/components/homeList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2833, 'index.js', '/public/statics/mp_view/components/homeList', '/public/statics/mp_view/components/homeList/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2834, 'index.json', '/public/statics/mp_view/components/homeList', '/public/statics/mp_view/components/homeList/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2835, 'index.wxml', '/public/statics/mp_view/components/homeList', '/public/statics/mp_view/components/homeList/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2836, 'index.wxss', '/public/statics/mp_view/components/homeList', '/public/statics/mp_view/components/homeList/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2837, 'indexGoods', '/public/statics/mp_view/components', '/public/statics/mp_view/components/indexGoods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2838, 'index.js', '/public/statics/mp_view/components/indexGoods', '/public/statics/mp_view/components/indexGoods/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2839, 'index.json', '/public/statics/mp_view/components/indexGoods', '/public/statics/mp_view/components/indexGoods/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2840, 'index.wxml', '/public/statics/mp_view/components/indexGoods', '/public/statics/mp_view/components/indexGoods/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2841, 'index.wxss', '/public/statics/mp_view/components/indexGoods', '/public/statics/mp_view/components/indexGoods/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2842, 'jyf-parser', '/public/statics/mp_view/components', '/public/statics/mp_view/components/jyf-parser', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2843, 'jyf-parser.js', '/public/statics/mp_view/components/jyf-parser', '/public/statics/mp_view/components/jyf-parser/jyf-parser.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2844, 'jyf-parser.json', '/public/statics/mp_view/components/jyf-parser', '/public/statics/mp_view/components/jyf-parser/jyf-parser.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2845, 'jyf-parser.wxml', '/public/statics/mp_view/components/jyf-parser', '/public/statics/mp_view/components/jyf-parser/jyf-parser.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2846, 'jyf-parser.wxss', '/public/statics/mp_view/components/jyf-parser', '/public/statics/mp_view/components/jyf-parser/jyf-parser.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2847, 'libs', '/public/statics/mp_view/components/jyf-parser', '/public/statics/mp_view/components/jyf-parser/libs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2848, 'handler.wxs', '/public/statics/mp_view/components/jyf-parser/libs', '/public/statics/mp_view/components/jyf-parser/libs/handler.wxs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2849, 'trees.js', '/public/statics/mp_view/components/jyf-parser/libs', '/public/statics/mp_view/components/jyf-parser/libs/trees.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2850, 'trees.json', '/public/statics/mp_view/components/jyf-parser/libs', '/public/statics/mp_view/components/jyf-parser/libs/trees.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2851, 'trees.wxml', '/public/statics/mp_view/components/jyf-parser/libs', '/public/statics/mp_view/components/jyf-parser/libs/trees.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2852, 'trees.wxss', '/public/statics/mp_view/components/jyf-parser/libs', '/public/statics/mp_view/components/jyf-parser/libs/trees.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2853, 'kefuIcon', '/public/statics/mp_view/components', '/public/statics/mp_view/components/kefuIcon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2854, 'index.js', '/public/statics/mp_view/components/kefuIcon', '/public/statics/mp_view/components/kefuIcon/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2855, 'index.json', '/public/statics/mp_view/components/kefuIcon', '/public/statics/mp_view/components/kefuIcon/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2856, 'index.wxml', '/public/statics/mp_view/components/kefuIcon', '/public/statics/mp_view/components/kefuIcon/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2857, 'index.wxss', '/public/statics/mp_view/components/kefuIcon', '/public/statics/mp_view/components/kefuIcon/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2858, 'menuIcon.js', '/public/statics/mp_view/components', '/public/statics/mp_view/components/menuIcon.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2859, 'menuIcon.json', '/public/statics/mp_view/components', '/public/statics/mp_view/components/menuIcon.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2860, 'menuIcon.wxml', '/public/statics/mp_view/components', '/public/statics/mp_view/components/menuIcon.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2861, 'menuIcon.wxss', '/public/statics/mp_view/components', '/public/statics/mp_view/components/menuIcon.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2862, 'numberScroll.js', '/public/statics/mp_view/components', '/public/statics/mp_view/components/numberScroll.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2863, 'numberScroll.json', '/public/statics/mp_view/components', '/public/statics/mp_view/components/numberScroll.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2864, 'numberScroll.wxml', '/public/statics/mp_view/components', '/public/statics/mp_view/components/numberScroll.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2865, 'numberScroll.wxss', '/public/statics/mp_view/components', '/public/statics/mp_view/components/numberScroll.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2866, 'orderGoods', '/public/statics/mp_view/components', '/public/statics/mp_view/components/orderGoods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2867, 'index.js', '/public/statics/mp_view/components/orderGoods', '/public/statics/mp_view/components/orderGoods/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2868, 'index.json', '/public/statics/mp_view/components/orderGoods', '/public/statics/mp_view/components/orderGoods/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2869, 'index.wxml', '/public/statics/mp_view/components/orderGoods', '/public/statics/mp_view/components/orderGoods/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2870, 'index.wxss', '/public/statics/mp_view/components/orderGoods', '/public/statics/mp_view/components/orderGoods/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2871, 'pageFooter', '/public/statics/mp_view/components', '/public/statics/mp_view/components/pageFooter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2872, 'index.js', '/public/statics/mp_view/components/pageFooter', '/public/statics/mp_view/components/pageFooter/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2873, 'index.json', '/public/statics/mp_view/components/pageFooter', '/public/statics/mp_view/components/pageFooter/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2874, 'index.wxml', '/public/statics/mp_view/components/pageFooter', '/public/statics/mp_view/components/pageFooter/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2875, 'index.wxss', '/public/statics/mp_view/components/pageFooter', '/public/statics/mp_view/components/pageFooter/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2876, 'pageLoading.js', '/public/statics/mp_view/components', '/public/statics/mp_view/components/pageLoading.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2877, 'pageLoading.json', '/public/statics/mp_view/components', '/public/statics/mp_view/components/pageLoading.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2878, 'pageLoading.wxml', '/public/statics/mp_view/components', '/public/statics/mp_view/components/pageLoading.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2879, 'pageLoading.wxss', '/public/statics/mp_view/components', '/public/statics/mp_view/components/pageLoading.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2880, 'parabolaBall', '/public/statics/mp_view/components', '/public/statics/mp_view/components/parabolaBall', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2881, 'ParabolaBall.js', '/public/statics/mp_view/components/parabolaBall', '/public/statics/mp_view/components/parabolaBall/ParabolaBall.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2882, 'ParabolaBall.json', '/public/statics/mp_view/components/parabolaBall', '/public/statics/mp_view/components/parabolaBall/ParabolaBall.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2883, 'ParabolaBall.wxml', '/public/statics/mp_view/components/parabolaBall', '/public/statics/mp_view/components/parabolaBall/ParabolaBall.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2884, 'payment', '/public/statics/mp_view/components', '/public/statics/mp_view/components/payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2885, 'index.js', '/public/statics/mp_view/components/payment', '/public/statics/mp_view/components/payment/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2886, 'index.json', '/public/statics/mp_view/components/payment', '/public/statics/mp_view/components/payment/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2887, 'index.wxml', '/public/statics/mp_view/components/payment', '/public/statics/mp_view/components/payment/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2888, 'index.wxss', '/public/statics/mp_view/components/payment', '/public/statics/mp_view/components/payment/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2889, 'productConSwiper', '/public/statics/mp_view/components', '/public/statics/mp_view/components/productConSwiper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2890, 'index.js', '/public/statics/mp_view/components/productConSwiper', '/public/statics/mp_view/components/productConSwiper/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2891, 'index.json', '/public/statics/mp_view/components/productConSwiper', '/public/statics/mp_view/components/productConSwiper/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2892, 'index.wxml', '/public/statics/mp_view/components/productConSwiper', '/public/statics/mp_view/components/productConSwiper/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2893, 'index.wxss', '/public/statics/mp_view/components/productConSwiper', '/public/statics/mp_view/components/productConSwiper/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2894, 'productWindow', '/public/statics/mp_view/components', '/public/statics/mp_view/components/productWindow', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2895, 'index.js', '/public/statics/mp_view/components/productWindow', '/public/statics/mp_view/components/productWindow/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2896, 'index.json', '/public/statics/mp_view/components/productWindow', '/public/statics/mp_view/components/productWindow/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2897, 'index.wxml', '/public/statics/mp_view/components/productWindow', '/public/statics/mp_view/components/productWindow/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2898, 'index.wxss', '/public/statics/mp_view/components/productWindow', '/public/statics/mp_view/components/productWindow/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2899, 'promotionGood', '/public/statics/mp_view/components', '/public/statics/mp_view/components/promotionGood', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2900, 'index.js', '/public/statics/mp_view/components/promotionGood', '/public/statics/mp_view/components/promotionGood/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2901, 'index.json', '/public/statics/mp_view/components/promotionGood', '/public/statics/mp_view/components/promotionGood/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2902, 'index.wxml', '/public/statics/mp_view/components/promotionGood', '/public/statics/mp_view/components/promotionGood/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2903, 'index.wxss', '/public/statics/mp_view/components/promotionGood', '/public/statics/mp_view/components/promotionGood/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2904, 'recommend', '/public/statics/mp_view/components', '/public/statics/mp_view/components/recommend', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2905, 'index.js', '/public/statics/mp_view/components/recommend', '/public/statics/mp_view/components/recommend/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2906, 'index.json', '/public/statics/mp_view/components/recommend', '/public/statics/mp_view/components/recommend/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2907, 'index.wxml', '/public/statics/mp_view/components/recommend', '/public/statics/mp_view/components/recommend/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2908, 'index.wxss', '/public/statics/mp_view/components/recommend', '/public/statics/mp_view/components/recommend/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2909, 'shareRedPackets', '/public/statics/mp_view/components', '/public/statics/mp_view/components/shareRedPackets', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2910, 'index.js', '/public/statics/mp_view/components/shareRedPackets', '/public/statics/mp_view/components/shareRedPackets/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2911, 'index.json', '/public/statics/mp_view/components/shareRedPackets', '/public/statics/mp_view/components/shareRedPackets/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2912, 'index.wxml', '/public/statics/mp_view/components/shareRedPackets', '/public/statics/mp_view/components/shareRedPackets/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2913, 'index.wxss', '/public/statics/mp_view/components/shareRedPackets', '/public/statics/mp_view/components/shareRedPackets/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2914, 'skeleton', '/public/statics/mp_view/components', '/public/statics/mp_view/components/skeleton', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2915, 'index.js', '/public/statics/mp_view/components/skeleton', '/public/statics/mp_view/components/skeleton/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2916, 'index.json', '/public/statics/mp_view/components/skeleton', '/public/statics/mp_view/components/skeleton/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2917, 'index.wxml', '/public/statics/mp_view/components/skeleton', '/public/statics/mp_view/components/skeleton/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2918, 'index.wxss', '/public/statics/mp_view/components/skeleton', '/public/statics/mp_view/components/skeleton/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2919, 'tuiDrawer', '/public/statics/mp_view/components', '/public/statics/mp_view/components/tuiDrawer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2920, 'index.js', '/public/statics/mp_view/components/tuiDrawer', '/public/statics/mp_view/components/tuiDrawer/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2921, 'index.json', '/public/statics/mp_view/components/tuiDrawer', '/public/statics/mp_view/components/tuiDrawer/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2922, 'index.wxml', '/public/statics/mp_view/components/tuiDrawer', '/public/statics/mp_view/components/tuiDrawer/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2923, 'index.wxss', '/public/statics/mp_view/components/tuiDrawer', '/public/statics/mp_view/components/tuiDrawer/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2924, 'update', '/public/statics/mp_view/components', '/public/statics/mp_view/components/update', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2925, 'app-update.js', '/public/statics/mp_view/components/update', '/public/statics/mp_view/components/update/app-update.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2926, 'app-update.json', '/public/statics/mp_view/components/update', '/public/statics/mp_view/components/update/app-update.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2927, 'app-update.wxml', '/public/statics/mp_view/components/update', '/public/statics/mp_view/components/update/app-update.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2928, 'app-update.wxss', '/public/statics/mp_view/components/update', '/public/statics/mp_view/components/update/app-update.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2929, 'userEvaluation', '/public/statics/mp_view/components', '/public/statics/mp_view/components/userEvaluation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2930, 'index.js', '/public/statics/mp_view/components/userEvaluation', '/public/statics/mp_view/components/userEvaluation/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2931, 'index.json', '/public/statics/mp_view/components/userEvaluation', '/public/statics/mp_view/components/userEvaluation/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2932, 'index.wxml', '/public/statics/mp_view/components/userEvaluation', '/public/statics/mp_view/components/userEvaluation/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2933, 'index.wxss', '/public/statics/mp_view/components/userEvaluation', '/public/statics/mp_view/components/userEvaluation/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2934, 'zb-code', '/public/statics/mp_view/components', '/public/statics/mp_view/components/zb-code', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2935, 'zb-code.js', '/public/statics/mp_view/components/zb-code', '/public/statics/mp_view/components/zb-code/zb-code.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2936, 'zb-code.json', '/public/statics/mp_view/components/zb-code', '/public/statics/mp_view/components/zb-code/zb-code.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2937, 'zb-code.wxml', '/public/statics/mp_view/components/zb-code', '/public/statics/mp_view/components/zb-code/zb-code.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2938, 'zb-code.wxss', '/public/statics/mp_view/components/zb-code', '/public/statics/mp_view/components/zb-code/zb-code.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2939, 'pages', '/public/statics/mp_view', '/public/statics/mp_view/pages', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2940, 'activity', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/activity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2941, 'bargain', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/bargain', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2942, 'index.js', '/public/statics/mp_view/pages/activity/bargain', '/public/statics/mp_view/pages/activity/bargain/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2943, 'index.json', '/public/statics/mp_view/pages/activity/bargain', '/public/statics/mp_view/pages/activity/bargain/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2944, 'index.wxml', '/public/statics/mp_view/pages/activity/bargain', '/public/statics/mp_view/pages/activity/bargain/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2945, 'index.wxss', '/public/statics/mp_view/pages/activity/bargain', '/public/statics/mp_view/pages/activity/bargain/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2946, 'goods_bargain', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_bargain', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2947, 'index.js', '/public/statics/mp_view/pages/activity/goods_bargain', '/public/statics/mp_view/pages/activity/goods_bargain/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2948, 'index.json', '/public/statics/mp_view/pages/activity/goods_bargain', '/public/statics/mp_view/pages/activity/goods_bargain/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2949, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_bargain', '/public/statics/mp_view/pages/activity/goods_bargain/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2950, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_bargain', '/public/statics/mp_view/pages/activity/goods_bargain/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2951, 'goods_bargain_details', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_bargain_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2952, 'index.js', '/public/statics/mp_view/pages/activity/goods_bargain_details', '/public/statics/mp_view/pages/activity/goods_bargain_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2953, 'index.json', '/public/statics/mp_view/pages/activity/goods_bargain_details', '/public/statics/mp_view/pages/activity/goods_bargain_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2954, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_bargain_details', '/public/statics/mp_view/pages/activity/goods_bargain_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2955, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_bargain_details', '/public/statics/mp_view/pages/activity/goods_bargain_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2956, 'goods_combination', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_combination', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2957, 'index.js', '/public/statics/mp_view/pages/activity/goods_combination', '/public/statics/mp_view/pages/activity/goods_combination/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2958, 'index.json', '/public/statics/mp_view/pages/activity/goods_combination', '/public/statics/mp_view/pages/activity/goods_combination/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2959, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_combination', '/public/statics/mp_view/pages/activity/goods_combination/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2960, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_combination', '/public/statics/mp_view/pages/activity/goods_combination/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2961, 'goods_combination_details', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_combination_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2962, 'index.js', '/public/statics/mp_view/pages/activity/goods_combination_details', '/public/statics/mp_view/pages/activity/goods_combination_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2963, 'index.json', '/public/statics/mp_view/pages/activity/goods_combination_details', '/public/statics/mp_view/pages/activity/goods_combination_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2964, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_combination_details', '/public/statics/mp_view/pages/activity/goods_combination_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2965, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_combination_details', '/public/statics/mp_view/pages/activity/goods_combination_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2966, 'goods_combination_status', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_combination_status', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2967, 'index.js', '/public/statics/mp_view/pages/activity/goods_combination_status', '/public/statics/mp_view/pages/activity/goods_combination_status/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2968, 'index.json', '/public/statics/mp_view/pages/activity/goods_combination_status', '/public/statics/mp_view/pages/activity/goods_combination_status/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2969, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_combination_status', '/public/statics/mp_view/pages/activity/goods_combination_status/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2970, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_combination_status', '/public/statics/mp_view/pages/activity/goods_combination_status/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2971, 'goods_seckill', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_seckill', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2972, 'index.js', '/public/statics/mp_view/pages/activity/goods_seckill', '/public/statics/mp_view/pages/activity/goods_seckill/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2973, 'index.json', '/public/statics/mp_view/pages/activity/goods_seckill', '/public/statics/mp_view/pages/activity/goods_seckill/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2974, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_seckill', '/public/statics/mp_view/pages/activity/goods_seckill/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2975, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_seckill', '/public/statics/mp_view/pages/activity/goods_seckill/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2976, 'goods_seckill_details', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/goods_seckill_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2977, 'index.js', '/public/statics/mp_view/pages/activity/goods_seckill_details', '/public/statics/mp_view/pages/activity/goods_seckill_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2978, 'index.json', '/public/statics/mp_view/pages/activity/goods_seckill_details', '/public/statics/mp_view/pages/activity/goods_seckill_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2979, 'index.wxml', '/public/statics/mp_view/pages/activity/goods_seckill_details', '/public/statics/mp_view/pages/activity/goods_seckill_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2980, 'index.wxss', '/public/statics/mp_view/pages/activity/goods_seckill_details', '/public/statics/mp_view/pages/activity/goods_seckill_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2981, 'poster-poster', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/poster-poster', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2982, 'index.js', '/public/statics/mp_view/pages/activity/poster-poster', '/public/statics/mp_view/pages/activity/poster-poster/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2983, 'index.json', '/public/statics/mp_view/pages/activity/poster-poster', '/public/statics/mp_view/pages/activity/poster-poster/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2984, 'index.wxml', '/public/statics/mp_view/pages/activity/poster-poster', '/public/statics/mp_view/pages/activity/poster-poster/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2985, 'index.wxss', '/public/statics/mp_view/pages/activity/poster-poster', '/public/statics/mp_view/pages/activity/poster-poster/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2986, 'presell', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/presell', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2987, 'index.js', '/public/statics/mp_view/pages/activity/presell', '/public/statics/mp_view/pages/activity/presell/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2988, 'index.json', '/public/statics/mp_view/pages/activity/presell', '/public/statics/mp_view/pages/activity/presell/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2989, 'index.wxml', '/public/statics/mp_view/pages/activity/presell', '/public/statics/mp_view/pages/activity/presell/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2990, 'index.wxss', '/public/statics/mp_view/pages/activity/presell', '/public/statics/mp_view/pages/activity/presell/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2991, 'static', '/public/statics/mp_view/pages/activity', '/public/statics/mp_view/pages/activity/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2992, 'bargainBg.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/bargainBg.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2993, 'buled.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/buled.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2994, 'bulet.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/bulet.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2995, 'couponBg.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/couponBg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2996, 'greend.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/greend.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2997, 'greent.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/greent.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2998, 'groupLine.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/groupLine.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(2999, 'lightning.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/lightning.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3000, 'oranged.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/oranged.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3001, 'oranget.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/oranget.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3002, 'pinkd.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/pinkd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3003, 'pinkt.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/pinkt.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3004, 'posterBag.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/posterBag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3005, 'preBtnLeft.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/preBtnLeft.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3006, 'presell_text.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/presell_text.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3007, 'priceBg.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/priceBg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3008, 'priceTag.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/priceTag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3009, 'redd.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/redd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3010, 'redt.jpg', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/redt.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3011, 'vacancy.png', '/public/statics/mp_view/pages/activity/static', '/public/statics/mp_view/pages/activity/static/vacancy.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3012, 'admin', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/admin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3013, 'common', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3014, 'vendor.js', '/public/statics/mp_view/pages/admin/common', '/public/statics/mp_view/pages/admin/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3015, 'components', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3016, 'PriceChange', '/public/statics/mp_view/pages/admin/components', '/public/statics/mp_view/pages/admin/components/PriceChange', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3017, 'index.js', '/public/statics/mp_view/pages/admin/components/PriceChange', '/public/statics/mp_view/pages/admin/components/PriceChange/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3018, 'index.json', '/public/statics/mp_view/pages/admin/components/PriceChange', '/public/statics/mp_view/pages/admin/components/PriceChange/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3019, 'index.wxml', '/public/statics/mp_view/pages/admin/components/PriceChange', '/public/statics/mp_view/pages/admin/components/PriceChange/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3020, 'index.wxss', '/public/statics/mp_view/pages/admin/components/PriceChange', '/public/statics/mp_view/pages/admin/components/PriceChange/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3021, 'uni-calendar', '/public/statics/mp_view/pages/admin/components', '/public/statics/mp_view/pages/admin/components/uni-calendar', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3022, 'uni-calendar-item.js', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar-item.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3023, 'uni-calendar-item.json', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar-item.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3024, 'uni-calendar-item.wxml', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar-item.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3025, 'uni-calendar-item.wxss', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar-item.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3026, 'uni-calendar.js', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3027, 'uni-calendar.json', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3028, 'uni-calendar.wxml', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3029, 'uni-calendar.wxss', '/public/statics/mp_view/pages/admin/components/uni-calendar', '/public/statics/mp_view/pages/admin/components/uni-calendar/uni-calendar.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3030, 'custom_date', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/custom_date', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3031, 'index.js', '/public/statics/mp_view/pages/admin/custom_date', '/public/statics/mp_view/pages/admin/custom_date/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3032, 'index.json', '/public/statics/mp_view/pages/admin/custom_date', '/public/statics/mp_view/pages/admin/custom_date/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3033, 'index.wxml', '/public/statics/mp_view/pages/admin/custom_date', '/public/statics/mp_view/pages/admin/custom_date/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3034, 'index.wxss', '/public/statics/mp_view/pages/admin/custom_date', '/public/statics/mp_view/pages/admin/custom_date/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3035, 'delivery', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/delivery', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3036, 'index.js', '/public/statics/mp_view/pages/admin/delivery', '/public/statics/mp_view/pages/admin/delivery/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3037, 'index.json', '/public/statics/mp_view/pages/admin/delivery', '/public/statics/mp_view/pages/admin/delivery/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3038, 'index.wxml', '/public/statics/mp_view/pages/admin/delivery', '/public/statics/mp_view/pages/admin/delivery/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3039, 'index.wxss', '/public/statics/mp_view/pages/admin/delivery', '/public/statics/mp_view/pages/admin/delivery/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3040, 'order', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/order', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3041, 'index.js', '/public/statics/mp_view/pages/admin/order', '/public/statics/mp_view/pages/admin/order/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3042, 'index.json', '/public/statics/mp_view/pages/admin/order', '/public/statics/mp_view/pages/admin/order/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3043, 'index.wxml', '/public/statics/mp_view/pages/admin/order', '/public/statics/mp_view/pages/admin/order/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3044, 'index.wxss', '/public/statics/mp_view/pages/admin/order', '/public/statics/mp_view/pages/admin/order/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3045, 'orderDetail', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/orderDetail', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3046, 'index.js', '/public/statics/mp_view/pages/admin/orderDetail', '/public/statics/mp_view/pages/admin/orderDetail/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3047, 'index.json', '/public/statics/mp_view/pages/admin/orderDetail', '/public/statics/mp_view/pages/admin/orderDetail/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3048, 'index.wxml', '/public/statics/mp_view/pages/admin/orderDetail', '/public/statics/mp_view/pages/admin/orderDetail/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3049, 'index.wxss', '/public/statics/mp_view/pages/admin/orderDetail', '/public/statics/mp_view/pages/admin/orderDetail/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3050, 'orderList', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/orderList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3051, 'index.js', '/public/statics/mp_view/pages/admin/orderList', '/public/statics/mp_view/pages/admin/orderList/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3052, 'index.json', '/public/statics/mp_view/pages/admin/orderList', '/public/statics/mp_view/pages/admin/orderList/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3053, 'index.wxml', '/public/statics/mp_view/pages/admin/orderList', '/public/statics/mp_view/pages/admin/orderList/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3054, 'index.wxss', '/public/statics/mp_view/pages/admin/orderList', '/public/statics/mp_view/pages/admin/orderList/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3055, 'order_cancellation', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/order_cancellation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3056, 'index.js', '/public/statics/mp_view/pages/admin/order_cancellation', '/public/statics/mp_view/pages/admin/order_cancellation/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3057, 'index.json', '/public/statics/mp_view/pages/admin/order_cancellation', '/public/statics/mp_view/pages/admin/order_cancellation/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3058, 'index.wxml', '/public/statics/mp_view/pages/admin/order_cancellation', '/public/statics/mp_view/pages/admin/order_cancellation/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3059, 'index.wxss', '/public/statics/mp_view/pages/admin/order_cancellation', '/public/statics/mp_view/pages/admin/order_cancellation/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3060, 'static', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3061, 'pricetitle.jpg', '/public/statics/mp_view/pages/admin/static', '/public/statics/mp_view/pages/admin/static/pricetitle.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3062, 'scan.gif', '/public/statics/mp_view/pages/admin/static', '/public/statics/mp_view/pages/admin/static/scan.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3063, 'statistics', '/public/statics/mp_view/pages/admin', '/public/statics/mp_view/pages/admin/statistics', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3064, 'index.js', '/public/statics/mp_view/pages/admin/statistics', '/public/statics/mp_view/pages/admin/statistics/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3065, 'index.json', '/public/statics/mp_view/pages/admin/statistics', '/public/statics/mp_view/pages/admin/statistics/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3066, 'index.wxml', '/public/statics/mp_view/pages/admin/statistics', '/public/statics/mp_view/pages/admin/statistics/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3067, 'index.wxss', '/public/statics/mp_view/pages/admin/statistics', '/public/statics/mp_view/pages/admin/statistics/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3068, 'annex', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/annex', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3069, 'common', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3070, 'vendor.js', '/public/statics/mp_view/pages/annex/common', '/public/statics/mp_view/pages/annex/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3071, 'components', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3072, 'verify', '/public/statics/mp_view/pages/annex/components', '/public/statics/mp_view/pages/annex/components/verify', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3073, 'verify.js', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verify.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3074, 'verify.json', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verify.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3075, 'verify.wxml', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verify.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3076, 'verify.wxss', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verify.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3077, 'verifyPoint', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3078, 'verifyPoint.js', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint/verifyPoint.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3079, 'verifyPoint.json', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint/verifyPoint.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3080, 'verifyPoint.wxml', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint/verifyPoint.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3081, 'verifyPoint.wxss', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint', '/public/statics/mp_view/pages/annex/components/verify/verifyPoint/verifyPoint.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3082, 'verifySlider', '/public/statics/mp_view/pages/annex/components/verify', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3083, 'verifySlider.js', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySlider.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3084, 'verifySlider.json', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySlider.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3085, 'verifySlider.wxml', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySlider.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3086, 'verifySlider.wxss', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySlider.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3087, 'verifySliderPc.js', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySliderPc.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3088, 'verifySliderPc.json', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySliderPc.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3089, 'verifySliderPc.wxml', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySliderPc.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3090, 'verifySliderPc.wxss', '/public/statics/mp_view/pages/annex/components/verify/verifySlider', '/public/statics/mp_view/pages/annex/components/verify/verifySlider/verifySliderPc.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3091, 'offline_pay', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/offline_pay', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3092, 'index.js', '/public/statics/mp_view/pages/annex/offline_pay', '/public/statics/mp_view/pages/annex/offline_pay/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3093, 'index.json', '/public/statics/mp_view/pages/annex/offline_pay', '/public/statics/mp_view/pages/annex/offline_pay/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3094, 'index.wxml', '/public/statics/mp_view/pages/annex/offline_pay', '/public/statics/mp_view/pages/annex/offline_pay/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3095, 'index.wxss', '/public/statics/mp_view/pages/annex/offline_pay', '/public/statics/mp_view/pages/annex/offline_pay/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3096, 'offline_result', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/offline_result', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3097, 'index.js', '/public/statics/mp_view/pages/annex/offline_result', '/public/statics/mp_view/pages/annex/offline_result/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3098, 'index.json', '/public/statics/mp_view/pages/annex/offline_result', '/public/statics/mp_view/pages/annex/offline_result/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3099, 'index.wxml', '/public/statics/mp_view/pages/annex/offline_result', '/public/statics/mp_view/pages/annex/offline_result/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3100, 'index.wxss', '/public/statics/mp_view/pages/annex/offline_result', '/public/statics/mp_view/pages/annex/offline_result/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3101, 'settled', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/settled', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3102, 'index.js', '/public/statics/mp_view/pages/annex/settled', '/public/statics/mp_view/pages/annex/settled/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3103, 'index.json', '/public/statics/mp_view/pages/annex/settled', '/public/statics/mp_view/pages/annex/settled/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3104, 'index.wxml', '/public/statics/mp_view/pages/annex/settled', '/public/statics/mp_view/pages/annex/settled/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3105, 'index.wxss', '/public/statics/mp_view/pages/annex/settled', '/public/statics/mp_view/pages/annex/settled/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3106, 'special', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/special', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3107, 'index.js', '/public/statics/mp_view/pages/annex/special', '/public/statics/mp_view/pages/annex/special/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3108, 'index.json', '/public/statics/mp_view/pages/annex/special', '/public/statics/mp_view/pages/annex/special/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3109, 'index.wxml', '/public/statics/mp_view/pages/annex/special', '/public/statics/mp_view/pages/annex/special/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3110, 'index.wxss', '/public/statics/mp_view/pages/annex/special', '/public/statics/mp_view/pages/annex/special/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3111, 'static', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3112, 'error.png', '/public/statics/mp_view/pages/annex/static', '/public/statics/mp_view/pages/annex/static/error.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3113, 'img.jpg', '/public/statics/mp_view/pages/annex/static', '/public/statics/mp_view/pages/annex/static/img.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3114, 'offline-result.png', '/public/statics/mp_view/pages/annex/static', '/public/statics/mp_view/pages/annex/static/offline-result.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3115, 'settledSuccessful.svg', '/public/statics/mp_view/pages/annex/static', '/public/statics/mp_view/pages/annex/static/settledSuccessful.svg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3116, 'success.png', '/public/statics/mp_view/pages/annex/static', '/public/statics/mp_view/pages/annex/static/success.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3117, 'vip_active', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/vip_active', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3118, 'index.js', '/public/statics/mp_view/pages/annex/vip_active', '/public/statics/mp_view/pages/annex/vip_active/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3119, 'index.json', '/public/statics/mp_view/pages/annex/vip_active', '/public/statics/mp_view/pages/annex/vip_active/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3120, 'index.wxml', '/public/statics/mp_view/pages/annex/vip_active', '/public/statics/mp_view/pages/annex/vip_active/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3121, 'index.wxss', '/public/statics/mp_view/pages/annex/vip_active', '/public/statics/mp_view/pages/annex/vip_active/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3122, 'vip_clause', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/vip_clause', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3123, 'index.js', '/public/statics/mp_view/pages/annex/vip_clause', '/public/statics/mp_view/pages/annex/vip_clause/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3124, 'index.json', '/public/statics/mp_view/pages/annex/vip_clause', '/public/statics/mp_view/pages/annex/vip_clause/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3125, 'index.wxml', '/public/statics/mp_view/pages/annex/vip_clause', '/public/statics/mp_view/pages/annex/vip_clause/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3126, 'index.wxss', '/public/statics/mp_view/pages/annex/vip_clause', '/public/statics/mp_view/pages/annex/vip_clause/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3127, 'vip_coupon', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/vip_coupon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3128, 'index.js', '/public/statics/mp_view/pages/annex/vip_coupon', '/public/statics/mp_view/pages/annex/vip_coupon/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3129, 'index.json', '/public/statics/mp_view/pages/annex/vip_coupon', '/public/statics/mp_view/pages/annex/vip_coupon/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3130, 'index.wxml', '/public/statics/mp_view/pages/annex/vip_coupon', '/public/statics/mp_view/pages/annex/vip_coupon/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3131, 'index.wxss', '/public/statics/mp_view/pages/annex/vip_coupon', '/public/statics/mp_view/pages/annex/vip_coupon/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3132, 'vip_paid', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/vip_paid', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3133, 'index.js', '/public/statics/mp_view/pages/annex/vip_paid', '/public/statics/mp_view/pages/annex/vip_paid/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3134, 'index.json', '/public/statics/mp_view/pages/annex/vip_paid', '/public/statics/mp_view/pages/annex/vip_paid/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3135, 'index.wxml', '/public/statics/mp_view/pages/annex/vip_paid', '/public/statics/mp_view/pages/annex/vip_paid/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3136, 'index.wxss', '/public/statics/mp_view/pages/annex/vip_paid', '/public/statics/mp_view/pages/annex/vip_paid/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3137, 'web_view', '/public/statics/mp_view/pages/annex', '/public/statics/mp_view/pages/annex/web_view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3138, 'index.js', '/public/statics/mp_view/pages/annex/web_view', '/public/statics/mp_view/pages/annex/web_view/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3139, 'index.json', '/public/statics/mp_view/pages/annex/web_view', '/public/statics/mp_view/pages/annex/web_view/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3140, 'index.wxml', '/public/statics/mp_view/pages/annex/web_view', '/public/statics/mp_view/pages/annex/web_view/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3141, 'columnGoods', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/columnGoods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3142, 'HotNewGoods', '/public/statics/mp_view/pages/columnGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3143, 'feedback.js', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/feedback.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3144, 'feedback.json', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/feedback.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3145, 'feedback.wxml', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/feedback.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3146, 'feedback.wxss', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/feedback.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3147, 'index.js', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3148, 'index.json', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3149, 'index.wxml', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3150, 'index.wxss', '/public/statics/mp_view/pages/columnGoods/HotNewGoods', '/public/statics/mp_view/pages/columnGoods/HotNewGoods/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3151, 'live_list', '/public/statics/mp_view/pages/columnGoods', '/public/statics/mp_view/pages/columnGoods/live_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3152, 'index.js', '/public/statics/mp_view/pages/columnGoods/live_list', '/public/statics/mp_view/pages/columnGoods/live_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3153, 'index.json', '/public/statics/mp_view/pages/columnGoods/live_list', '/public/statics/mp_view/pages/columnGoods/live_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3154, 'index.wxml', '/public/statics/mp_view/pages/columnGoods/live_list', '/public/statics/mp_view/pages/columnGoods/live_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3155, 'index.wxss', '/public/statics/mp_view/pages/columnGoods/live_list', '/public/statics/mp_view/pages/columnGoods/live_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3156, 'static', '/public/statics/mp_view/pages/columnGoods', '/public/statics/mp_view/pages/columnGoods/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3157, 'feed-icon.png', '/public/statics/mp_view/pages/columnGoods/static', '/public/statics/mp_view/pages/columnGoods/static/feed-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3158, 'yhxy.html', '/public/statics/mp_view/pages/columnGoods/static', '/public/statics/mp_view/pages/columnGoods/static/yhxy.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3159, 'yszc.html', '/public/statics/mp_view/pages/columnGoods/static', '/public/statics/mp_view/pages/columnGoods/static/yszc.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3160, 'extension', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/extension', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3161, 'common', '/public/statics/mp_view/pages/extension', '/public/statics/mp_view/pages/extension/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3162, 'vendor.js', '/public/statics/mp_view/pages/extension/common', '/public/statics/mp_view/pages/extension/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3163, 'components', '/public/statics/mp_view/pages/extension', '/public/statics/mp_view/pages/extension/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3164, 'shareInfo', '/public/statics/mp_view/pages/extension/components', '/public/statics/mp_view/pages/extension/components/shareInfo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3165, 'index.js', '/public/statics/mp_view/pages/extension/components/shareInfo', '/public/statics/mp_view/pages/extension/components/shareInfo/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3166, 'index.json', '/public/statics/mp_view/pages/extension/components/shareInfo', '/public/statics/mp_view/pages/extension/components/shareInfo/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3167, 'index.wxml', '/public/statics/mp_view/pages/extension/components/shareInfo', '/public/statics/mp_view/pages/extension/components/shareInfo/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3168, 'index.wxss', '/public/statics/mp_view/pages/extension/components/shareInfo', '/public/statics/mp_view/pages/extension/components/shareInfo/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3169, 'customer_list', '/public/statics/mp_view/pages/extension', '/public/statics/mp_view/pages/extension/customer_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3170, 'chat.js', '/public/statics/mp_view/pages/extension/customer_list', '/public/statics/mp_view/pages/extension/customer_list/chat.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3171, 'chat.json', '/public/statics/mp_view/pages/extension/customer_list', '/public/statics/mp_view/pages/extension/customer_list/chat.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3172, 'chat.wxml', '/public/statics/mp_view/pages/extension/customer_list', '/public/statics/mp_view/pages/extension/customer_list/chat.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3173, 'chat.wxss', '/public/statics/mp_view/pages/extension/customer_list', '/public/statics/mp_view/pages/extension/customer_list/chat.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3174, 'news_details', '/public/statics/mp_view/pages/extension', '/public/statics/mp_view/pages/extension/news_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3175, 'index.js', '/public/statics/mp_view/pages/extension/news_details', '/public/statics/mp_view/pages/extension/news_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3176, 'index.json', '/public/statics/mp_view/pages/extension/news_details', '/public/statics/mp_view/pages/extension/news_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3177, 'index.wxml', '/public/statics/mp_view/pages/extension/news_details', '/public/statics/mp_view/pages/extension/news_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3178, 'index.wxss', '/public/statics/mp_view/pages/extension/news_details', '/public/statics/mp_view/pages/extension/news_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3179, 'news_list', '/public/statics/mp_view/pages/extension', '/public/statics/mp_view/pages/extension/news_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3180, 'index.js', '/public/statics/mp_view/pages/extension/news_list', '/public/statics/mp_view/pages/extension/news_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3181, 'index.json', '/public/statics/mp_view/pages/extension/news_list', '/public/statics/mp_view/pages/extension/news_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3182, 'index.wxml', '/public/statics/mp_view/pages/extension/news_list', '/public/statics/mp_view/pages/extension/news_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3183, 'index.wxss', '/public/statics/mp_view/pages/extension/news_list', '/public/statics/mp_view/pages/extension/news_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3184, 'goods', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/goods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3185, 'admin_order_detail', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/admin_order_detail', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3186, 'index.js', '/public/statics/mp_view/pages/goods/admin_order_detail', '/public/statics/mp_view/pages/goods/admin_order_detail/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3187, 'index.json', '/public/statics/mp_view/pages/goods/admin_order_detail', '/public/statics/mp_view/pages/goods/admin_order_detail/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3188, 'index.wxml', '/public/statics/mp_view/pages/goods/admin_order_detail', '/public/statics/mp_view/pages/goods/admin_order_detail/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3189, 'index.wxss', '/public/statics/mp_view/pages/goods/admin_order_detail', '/public/statics/mp_view/pages/goods/admin_order_detail/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3190, 'cashier', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/cashier', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3191, 'index.js', '/public/statics/mp_view/pages/goods/cashier', '/public/statics/mp_view/pages/goods/cashier/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3192, 'index.json', '/public/statics/mp_view/pages/goods/cashier', '/public/statics/mp_view/pages/goods/cashier/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3193, 'index.wxml', '/public/statics/mp_view/pages/goods/cashier', '/public/statics/mp_view/pages/goods/cashier/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3194, 'index.wxss', '/public/statics/mp_view/pages/goods/cashier', '/public/statics/mp_view/pages/goods/cashier/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3195, 'common', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3196, 'vendor.js', '/public/statics/mp_view/pages/goods/common', '/public/statics/mp_view/pages/goods/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3197, 'components', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3198, 'invoiceModal', '/public/statics/mp_view/pages/goods/components', '/public/statics/mp_view/pages/goods/components/invoiceModal', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3199, 'index.js', '/public/statics/mp_view/pages/goods/components/invoiceModal', '/public/statics/mp_view/pages/goods/components/invoiceModal/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3200, 'index.json', '/public/statics/mp_view/pages/goods/components/invoiceModal', '/public/statics/mp_view/pages/goods/components/invoiceModal/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3201, 'index.wxml', '/public/statics/mp_view/pages/goods/components/invoiceModal', '/public/statics/mp_view/pages/goods/components/invoiceModal/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3202, 'index.wxss', '/public/statics/mp_view/pages/goods/components/invoiceModal', '/public/statics/mp_view/pages/goods/components/invoiceModal/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3203, 'invoicePicker', '/public/statics/mp_view/pages/goods/components', '/public/statics/mp_view/pages/goods/components/invoicePicker', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3204, 'index.js', '/public/statics/mp_view/pages/goods/components/invoicePicker', '/public/statics/mp_view/pages/goods/components/invoicePicker/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3205, 'index.json', '/public/statics/mp_view/pages/goods/components/invoicePicker', '/public/statics/mp_view/pages/goods/components/invoicePicker/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3206, 'index.wxml', '/public/statics/mp_view/pages/goods/components/invoicePicker', '/public/statics/mp_view/pages/goods/components/invoicePicker/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3207, 'index.wxss', '/public/statics/mp_view/pages/goods/components/invoicePicker', '/public/statics/mp_view/pages/goods/components/invoicePicker/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3208, 'lottery', '/public/statics/mp_view/pages/goods/components', '/public/statics/mp_view/pages/goods/components/lottery', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3209, 'index.js', '/public/statics/mp_view/pages/goods/components/lottery', '/public/statics/mp_view/pages/goods/components/lottery/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3210, 'index.json', '/public/statics/mp_view/pages/goods/components/lottery', '/public/statics/mp_view/pages/goods/components/lottery/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3211, 'index.wxml', '/public/statics/mp_view/pages/goods/components/lottery', '/public/statics/mp_view/pages/goods/components/lottery/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3212, 'index.wxss', '/public/statics/mp_view/pages/goods/components/lottery', '/public/statics/mp_view/pages/goods/components/lottery/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3213, 'splitOrder', '/public/statics/mp_view/pages/goods/components', '/public/statics/mp_view/pages/goods/components/splitOrder', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3214, 'index.js', '/public/statics/mp_view/pages/goods/components/splitOrder', '/public/statics/mp_view/pages/goods/components/splitOrder/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3215, 'index.json', '/public/statics/mp_view/pages/goods/components/splitOrder', '/public/statics/mp_view/pages/goods/components/splitOrder/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3216, 'index.wxml', '/public/statics/mp_view/pages/goods/components/splitOrder', '/public/statics/mp_view/pages/goods/components/splitOrder/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3217, 'index.wxss', '/public/statics/mp_view/pages/goods/components/splitOrder', '/public/statics/mp_view/pages/goods/components/splitOrder/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3218, 'goods_comment_con', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_comment_con', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3219, 'components', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3220, 'lotteryAleart.js', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/lotteryAleart.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3221, 'lotteryAleart.json', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/lotteryAleart.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3222, 'lotteryAleart.wxml', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/lotteryAleart.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3223, 'lotteryAleart.wxss', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/lotteryAleart.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3224, 'userAddress.js', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/userAddress.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3225, 'userAddress.json', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/userAddress.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3226, 'userAddress.wxml', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/userAddress.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3227, 'userAddress.wxss', '/public/statics/mp_view/pages/goods/goods_comment_con/components', '/public/statics/mp_view/pages/goods/goods_comment_con/components/userAddress.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3228, 'index.js', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3229, 'index.json', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3230, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3231, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3232, 'lottery_comment.js', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/lottery_comment.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3233, 'lottery_comment.json', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/lottery_comment.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3234, 'lottery_comment.wxml', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/lottery_comment.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3235, 'lottery_comment.wxss', '/public/statics/mp_view/pages/goods/goods_comment_con', '/public/statics/mp_view/pages/goods/goods_comment_con/lottery_comment.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3236, 'goods_comment_list', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_comment_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3237, 'index.js', '/public/statics/mp_view/pages/goods/goods_comment_list', '/public/statics/mp_view/pages/goods/goods_comment_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3238, 'index.json', '/public/statics/mp_view/pages/goods/goods_comment_list', '/public/statics/mp_view/pages/goods/goods_comment_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3239, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_comment_list', '/public/statics/mp_view/pages/goods/goods_comment_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3240, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_comment_list', '/public/statics/mp_view/pages/goods/goods_comment_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3241, 'goods_details_store', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_details_store', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3242, 'index.js', '/public/statics/mp_view/pages/goods/goods_details_store', '/public/statics/mp_view/pages/goods/goods_details_store/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3243, 'index.json', '/public/statics/mp_view/pages/goods/goods_details_store', '/public/statics/mp_view/pages/goods/goods_details_store/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3244, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_details_store', '/public/statics/mp_view/pages/goods/goods_details_store/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3245, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_details_store', '/public/statics/mp_view/pages/goods/goods_details_store/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3246, 'goods_list', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3247, 'index.js', '/public/statics/mp_view/pages/goods/goods_list', '/public/statics/mp_view/pages/goods/goods_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3248, 'index.json', '/public/statics/mp_view/pages/goods/goods_list', '/public/statics/mp_view/pages/goods/goods_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3249, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_list', '/public/statics/mp_view/pages/goods/goods_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3250, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_list', '/public/statics/mp_view/pages/goods/goods_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3251, 'goods_logistics', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_logistics', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3252, 'index.js', '/public/statics/mp_view/pages/goods/goods_logistics', '/public/statics/mp_view/pages/goods/goods_logistics/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3253, 'index.json', '/public/statics/mp_view/pages/goods/goods_logistics', '/public/statics/mp_view/pages/goods/goods_logistics/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3254, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_logistics', '/public/statics/mp_view/pages/goods/goods_logistics/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3255, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_logistics', '/public/statics/mp_view/pages/goods/goods_logistics/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3256, 'goods_return', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_return', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3257, 'index.js', '/public/statics/mp_view/pages/goods/goods_return', '/public/statics/mp_view/pages/goods/goods_return/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3258, 'index.json', '/public/statics/mp_view/pages/goods/goods_return', '/public/statics/mp_view/pages/goods/goods_return/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3259, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_return', '/public/statics/mp_view/pages/goods/goods_return/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3260, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_return', '/public/statics/mp_view/pages/goods/goods_return/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3261, 'goods_return_list', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_return_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3262, 'index.js', '/public/statics/mp_view/pages/goods/goods_return_list', '/public/statics/mp_view/pages/goods/goods_return_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3263, 'index.json', '/public/statics/mp_view/pages/goods/goods_return_list', '/public/statics/mp_view/pages/goods/goods_return_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3264, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_return_list', '/public/statics/mp_view/pages/goods/goods_return_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3265, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_return_list', '/public/statics/mp_view/pages/goods/goods_return_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3266, 'goods_search', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/goods_search', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3267, 'index.js', '/public/statics/mp_view/pages/goods/goods_search', '/public/statics/mp_view/pages/goods/goods_search/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3268, 'index.json', '/public/statics/mp_view/pages/goods/goods_search', '/public/statics/mp_view/pages/goods/goods_search/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3269, 'index.wxml', '/public/statics/mp_view/pages/goods/goods_search', '/public/statics/mp_view/pages/goods/goods_search/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3270, 'index.wxss', '/public/statics/mp_view/pages/goods/goods_search', '/public/statics/mp_view/pages/goods/goods_search/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3271, 'lottery', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/lottery', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3272, 'components', '/public/statics/mp_view/pages/goods/lottery', '/public/statics/mp_view/pages/goods/lottery/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3273, 'lotteryAleart.js', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/lotteryAleart.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3274, 'lotteryAleart.json', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/lotteryAleart.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3275, 'lotteryAleart.wxml', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/lotteryAleart.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3276, 'lotteryAleart.wxss', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/lotteryAleart.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3277, 'noticeBar.js', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/noticeBar.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3278, 'noticeBar.json', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/noticeBar.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3279, 'noticeBar.wxml', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/noticeBar.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3280, 'noticeBar.wxss', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/noticeBar.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3281, 'showbox.js', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/showbox.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3282, 'showbox.json', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/showbox.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3283, 'showbox.wxml', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/showbox.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3284, 'showbox.wxss', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/showbox.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3285, 'userAddress.js', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/userAddress.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3286, 'userAddress.json', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/userAddress.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3287, 'userAddress.wxml', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/userAddress.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3288, 'userAddress.wxss', '/public/statics/mp_view/pages/goods/lottery/components', '/public/statics/mp_view/pages/goods/lottery/components/userAddress.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3289, 'grids', '/public/statics/mp_view/pages/goods/lottery', '/public/statics/mp_view/pages/goods/lottery/grids', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3290, 'index.js', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3291, 'index.json', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3292, 'index.wxml', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3293, 'index.wxss', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3294, 'record.js', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/record.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3295, 'record.json', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/record.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3296, 'record.wxml', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/record.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3297, 'record.wxss', '/public/statics/mp_view/pages/goods/lottery/grids', '/public/statics/mp_view/pages/goods/lottery/grids/record.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3298, 'order_confirm', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/order_confirm', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3299, 'index.js', '/public/statics/mp_view/pages/goods/order_confirm', '/public/statics/mp_view/pages/goods/order_confirm/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3300, 'index.json', '/public/statics/mp_view/pages/goods/order_confirm', '/public/statics/mp_view/pages/goods/order_confirm/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3301, 'index.wxml', '/public/statics/mp_view/pages/goods/order_confirm', '/public/statics/mp_view/pages/goods/order_confirm/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3302, 'index.wxss', '/public/statics/mp_view/pages/goods/order_confirm', '/public/statics/mp_view/pages/goods/order_confirm/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3303, 'order_details', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/order_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3304, 'index.js', '/public/statics/mp_view/pages/goods/order_details', '/public/statics/mp_view/pages/goods/order_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3305, 'index.json', '/public/statics/mp_view/pages/goods/order_details', '/public/statics/mp_view/pages/goods/order_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3306, 'index.wxml', '/public/statics/mp_view/pages/goods/order_details', '/public/statics/mp_view/pages/goods/order_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3307, 'index.wxss', '/public/statics/mp_view/pages/goods/order_details', '/public/statics/mp_view/pages/goods/order_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3308, 'order_list', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/order_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3309, 'index.js', '/public/statics/mp_view/pages/goods/order_list', '/public/statics/mp_view/pages/goods/order_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3310, 'index.json', '/public/statics/mp_view/pages/goods/order_list', '/public/statics/mp_view/pages/goods/order_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3311, 'index.wxml', '/public/statics/mp_view/pages/goods/order_list', '/public/statics/mp_view/pages/goods/order_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3312, 'index.wxss', '/public/statics/mp_view/pages/goods/order_list', '/public/statics/mp_view/pages/goods/order_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3313, 'order_pay_status', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/order_pay_status', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3314, 'components', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3315, 'lotteryAleart.js', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/lotteryAleart.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3316, 'lotteryAleart.json', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/lotteryAleart.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3317, 'lotteryAleart.wxml', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/lotteryAleart.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3318, 'lotteryAleart.wxss', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/lotteryAleart.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3319, 'userAddress.js', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/userAddress.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3320, 'userAddress.json', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/userAddress.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3321, 'userAddress.wxml', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/userAddress.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3322, 'userAddress.wxss', '/public/statics/mp_view/pages/goods/order_pay_status/components', '/public/statics/mp_view/pages/goods/order_pay_status/components/userAddress.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3323, 'index.js', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3324, 'index.json', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3325, 'index.wxml', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3326, 'index.wxss', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3327, 'payLottery.js', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/payLottery.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3328, 'payLottery.json', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/payLottery.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3329, 'payLottery.wxml', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/payLottery.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3330, 'payLottery.wxss', '/public/statics/mp_view/pages/goods/order_pay_status', '/public/statics/mp_view/pages/goods/order_pay_status/payLottery.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3331, 'order_refund_goods', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/order_refund_goods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3332, 'index.js', '/public/statics/mp_view/pages/goods/order_refund_goods', '/public/statics/mp_view/pages/goods/order_refund_goods/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3333, 'index.json', '/public/statics/mp_view/pages/goods/order_refund_goods', '/public/statics/mp_view/pages/goods/order_refund_goods/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3334, 'index.wxml', '/public/statics/mp_view/pages/goods/order_refund_goods', '/public/statics/mp_view/pages/goods/order_refund_goods/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3335, 'index.wxss', '/public/statics/mp_view/pages/goods/order_refund_goods', '/public/statics/mp_view/pages/goods/order_refund_goods/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3336, 'static', '/public/statics/mp_view/pages/goods', '/public/statics/mp_view/pages/goods/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3337, 'address-aleart-header.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/address-aleart-header.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3338, 'font-left.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/font-left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3339, 'font-right.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/font-right.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3340, 'head-l-point.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/head-l-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3341, 'head-r-point.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/head-r-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3342, 'lottery-bag.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/lottery-bag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3343, 'lottery-click.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/lottery-click.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3344, 'orderTime.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/orderTime.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3345, 'pay-lottery-bag.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/pay-lottery-bag.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3346, 'pay-lottery-l.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/pay-lottery-l.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3347, 'pay-lottery-r.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/pay-lottery-r.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3348, 'shuoming.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/shuoming.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3349, 'writeOff.jpg', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/writeOff.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3350, 'written.png', '/public/statics/mp_view/pages/goods/static', '/public/statics/mp_view/pages/goods/static/written.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3351, 'goods_cate', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/goods_cate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3352, 'goods_cate.js', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3353, 'goods_cate.json', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3354, 'goods_cate.wxml', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3355, 'goods_cate.wxss', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3356, 'goods_cate1.js', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate1.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3357, 'goods_cate1.json', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate1.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3358, 'goods_cate1.wxml', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate1.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3359, 'goods_cate1.wxss', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate1.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3360, 'goods_cate2.js', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate2.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3361, 'goods_cate2.json', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate2.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3362, 'goods_cate2.wxml', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate2.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3363, 'goods_cate2.wxss', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate2.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3364, 'goods_cate3.js', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate3.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3365, 'goods_cate3.json', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate3.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3366, 'goods_cate3.wxml', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate3.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3367, 'goods_cate3.wxss', '/public/statics/mp_view/pages/goods_cate', '/public/statics/mp_view/pages/goods_cate/goods_cate3.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3368, 'goods_details', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/goods_details', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3369, 'index.js', '/public/statics/mp_view/pages/goods_details', '/public/statics/mp_view/pages/goods_details/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3370, 'index.json', '/public/statics/mp_view/pages/goods_details', '/public/statics/mp_view/pages/goods_details/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3371, 'index.wxml', '/public/statics/mp_view/pages/goods_details', '/public/statics/mp_view/pages/goods_details/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3372, 'index.wxss', '/public/statics/mp_view/pages/goods_details', '/public/statics/mp_view/pages/goods_details/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3373, 'guide', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/guide', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3374, 'index.js', '/public/statics/mp_view/pages/guide', '/public/statics/mp_view/pages/guide/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3375, 'index.json', '/public/statics/mp_view/pages/guide', '/public/statics/mp_view/pages/guide/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3376, 'index.wxml', '/public/statics/mp_view/pages/guide', '/public/statics/mp_view/pages/guide/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3377, 'index.wxss', '/public/statics/mp_view/pages/guide', '/public/statics/mp_view/pages/guide/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3378, 'index', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/index', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3379, 'diy', '/public/statics/mp_view/pages/index', '/public/statics/mp_view/pages/index/diy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3380, 'components', '/public/statics/mp_view/pages/index/diy', '/public/statics/mp_view/pages/index/diy/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3381, 'activeParty.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/activeParty.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3382, 'activeParty.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/activeParty.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3383, 'activeParty.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/activeParty.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3384, 'activeParty.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/activeParty.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3385, 'articleList.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/articleList.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3386, 'articleList.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/articleList.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3387, 'articleList.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/articleList.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3388, 'articleList.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/articleList.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3389, 'bargain.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/bargain.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3390, 'bargain.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/bargain.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3391, 'bargain.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/bargain.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3392, 'bargain.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/bargain.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3393, 'blankPage.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/blankPage.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3394, 'blankPage.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/blankPage.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3395, 'blankPage.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/blankPage.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3396, 'blankPage.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/blankPage.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3397, 'combination.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/combination.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3398, 'combination.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/combination.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3399, 'combination.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/combination.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3400, 'combination.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/combination.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3401, 'coupon.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/coupon.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3402, 'coupon.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/coupon.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3403, 'coupon.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/coupon.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3404, 'coupon.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/coupon.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3405, 'customerService.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/customerService.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3406, 'customerService.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/customerService.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3407, 'customerService.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/customerService.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3408, 'customerService.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/customerService.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3409, 'goodList.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/goodList.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3410, 'goodList.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/goodList.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3411, 'goodList.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/goodList.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3412, 'goodList.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/goodList.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3413, 'guide.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/guide.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3414, 'guide.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/guide.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3415, 'guide.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/guide.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3416, 'guide.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/guide.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3417, 'headerSerch.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/headerSerch.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3418, 'headerSerch.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/headerSerch.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3419, 'headerSerch.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/headerSerch.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3420, 'headerSerch.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/headerSerch.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3421, 'liveBroadcast.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/liveBroadcast.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3422, 'liveBroadcast.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/liveBroadcast.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3423, 'liveBroadcast.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/liveBroadcast.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3424, 'liveBroadcast.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/liveBroadcast.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3425, 'menus.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/menus.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3426, 'menus.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/menus.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3427, 'menus.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/menus.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3428, 'menus.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/menus.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3429, 'news.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/news.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3430, 'news.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/news.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3431, 'news.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/news.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3432, 'news.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/news.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3433, 'pictureCube.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/pictureCube.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3434, 'pictureCube.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/pictureCube.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3435, 'pictureCube.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/pictureCube.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3436, 'pictureCube.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/pictureCube.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3437, 'promotionList.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/promotionList.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3438, 'promotionList.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/promotionList.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3439, 'promotionList.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/promotionList.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3440, 'promotionList.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/promotionList.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3441, 'richText.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/richText.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3442, 'richText.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/richText.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3443, 'richText.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/richText.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3444, 'richText.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/richText.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3445, 'seckill.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/seckill.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3446, 'seckill.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/seckill.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3447, 'seckill.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/seckill.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3448, 'seckill.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/seckill.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3449, 'swiperBg.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swiperBg.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3450, 'swiperBg.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swiperBg.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3451, 'swiperBg.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swiperBg.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3452, 'swiperBg.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swiperBg.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3453, 'swipers.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swipers.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3454, 'swipers.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swipers.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3455, 'swipers.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swipers.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3456, 'swipers.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/swipers.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3457, 'tabNav.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/tabNav.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3458, 'tabNav.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/tabNav.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3459, 'tabNav.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/tabNav.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3460, 'tabNav.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/tabNav.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3461, 'titles.js', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/titles.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3462, 'titles.json', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/titles.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3463, 'titles.wxml', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/titles.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3464, 'titles.wxss', '/public/statics/mp_view/pages/index/diy/components', '/public/statics/mp_view/pages/index/diy/components/titles.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3465, 'index.js', '/public/statics/mp_view/pages/index/diy', '/public/statics/mp_view/pages/index/diy/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3466, 'index.json', '/public/statics/mp_view/pages/index/diy', '/public/statics/mp_view/pages/index/diy/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3467, 'index.wxml', '/public/statics/mp_view/pages/index/diy', '/public/statics/mp_view/pages/index/diy/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3468, 'index.wxss', '/public/statics/mp_view/pages/index/diy', '/public/statics/mp_view/pages/index/diy/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3469, 'index.js', '/public/statics/mp_view/pages/index', '/public/statics/mp_view/pages/index/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3470, 'index.json', '/public/statics/mp_view/pages/index', '/public/statics/mp_view/pages/index/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3471, 'index.wxml', '/public/statics/mp_view/pages/index', '/public/statics/mp_view/pages/index/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3472, 'visualization', '/public/statics/mp_view/pages/index', '/public/statics/mp_view/pages/index/visualization', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3473, 'components', '/public/statics/mp_view/pages/index/visualization', '/public/statics/mp_view/pages/index/visualization/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3474, 'activity.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/activity.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3475, 'activity.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/activity.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3476, 'activity.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/activity.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3477, 'activity.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/activity.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3478, 'adsRecommend.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/adsRecommend.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3479, 'adsRecommend.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/adsRecommend.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3480, 'adsRecommend.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/adsRecommend.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3481, 'adsRecommend.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/adsRecommend.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3482, 'alive.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/alive.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3483, 'alive.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/alive.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3484, 'alive.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/alive.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3485, 'alive.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/alive.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3486, 'bargain.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/bargain.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3487, 'bargain.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/bargain.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3488, 'bargain.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/bargain.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3489, 'bargain.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/bargain.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3490, 'combination.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/combination.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3491, 'combination.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/combination.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3492, 'combination.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/combination.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3493, 'combination.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/combination.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3494, 'coupon.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/coupon.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3495, 'coupon.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/coupon.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3496, 'coupon.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/coupon.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3497, 'coupon.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/coupon.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3498, 'customerService.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/customerService.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3499, 'customerService.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/customerService.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3500, 'customerService.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/customerService.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3501, 'customerService.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/customerService.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3502, 'goodList.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/goodList.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3503, 'goodList.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/goodList.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3504, 'goodList.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/goodList.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3505, 'goodList.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/goodList.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3506, 'headerSerch.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/headerSerch.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3507, 'headerSerch.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/headerSerch.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3508, 'headerSerch.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/headerSerch.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3509, 'headerSerch.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/headerSerch.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3510, 'mBanner.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/mBanner.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3511, 'mBanner.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/mBanner.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3512, 'mBanner.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/mBanner.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3513, 'mBanner.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/mBanner.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3514, 'menus.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/menus.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3515, 'menus.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/menus.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3516, 'menus.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/menus.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3517, 'menus.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/menus.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3518, 'newGoods.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/newGoods.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3519, 'newGoods.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/newGoods.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3520, 'newGoods.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/newGoods.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3521, 'newGoods.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/newGoods.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3522, 'news.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/news.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3523, 'news.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/news.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3524, 'news.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/news.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3525, 'news.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/news.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3526, 'picTxt.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/picTxt.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3527, 'picTxt.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/picTxt.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3528, 'picTxt.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/picTxt.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3529, 'picTxt.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/picTxt.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3530, 'popular.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/popular.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3531, 'popular.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/popular.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3532, 'popular.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/popular.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3533, 'popular.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/popular.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3534, 'promotion.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/promotion.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3535, 'promotion.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/promotion.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3536, 'promotion.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/promotion.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3537, 'promotion.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/promotion.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3538, 'recommend.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/recommend.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3539, 'recommend.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/recommend.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3540, 'recommend.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/recommend.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3541, 'recommend.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/recommend.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3542, 'scrollBox.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/scrollBox.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3543, 'scrollBox.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/scrollBox.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3544, 'scrollBox.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/scrollBox.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3545, 'scrollBox.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/scrollBox.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3546, 'seckill.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/seckill.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3547, 'seckill.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/seckill.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3548, 'seckill.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/seckill.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3549, 'seckill.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/seckill.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3550, 'skeleton.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/skeleton.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3551, 'skeleton.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/skeleton.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3552, 'skeleton.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/skeleton.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3553, 'skeleton.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/skeleton.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3554, 'swiperBg.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/swiperBg.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3555, 'swiperBg.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/swiperBg.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3556, 'swiperBg.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/swiperBg.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3557, 'swiperBg.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/swiperBg.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3558, 'tabBar.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabBar.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3559, 'tabBar.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabBar.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3560, 'tabBar.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabBar.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3561, 'tabBar.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabBar.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3562, 'tabNav.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabNav.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3563, 'tabNav.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabNav.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3564, 'tabNav.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabNav.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3565, 'tabNav.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/tabNav.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3566, 'titles.js', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/titles.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3567, 'titles.json', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/titles.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3568, 'titles.wxml', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/titles.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3569, 'titles.wxss', '/public/statics/mp_view/pages/index/visualization/components', '/public/statics/mp_view/pages/index/visualization/components/titles.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3570, 'index.js', '/public/statics/mp_view/pages/index/visualization', '/public/statics/mp_view/pages/index/visualization/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3571, 'index.json', '/public/statics/mp_view/pages/index/visualization', '/public/statics/mp_view/pages/index/visualization/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3572, 'index.wxml', '/public/statics/mp_view/pages/index/visualization', '/public/statics/mp_view/pages/index/visualization/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3573, 'index.wxss', '/public/statics/mp_view/pages/index/visualization', '/public/statics/mp_view/pages/index/visualization/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3574, 'order_addcart', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/order_addcart', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3575, 'order_addcart.js', '/public/statics/mp_view/pages/order_addcart', '/public/statics/mp_view/pages/order_addcart/order_addcart.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3576, 'order_addcart.json', '/public/statics/mp_view/pages/order_addcart', '/public/statics/mp_view/pages/order_addcart/order_addcart.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3577, 'order_addcart.wxml', '/public/statics/mp_view/pages/order_addcart', '/public/statics/mp_view/pages/order_addcart/order_addcart.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3578, 'order_addcart.wxss', '/public/statics/mp_view/pages/order_addcart', '/public/statics/mp_view/pages/order_addcart/order_addcart.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3579, 'points_mall', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/points_mall', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3580, 'common', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3581, 'vendor.js', '/public/statics/mp_view/pages/points_mall/common', '/public/statics/mp_view/pages/points_mall/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3582, 'component', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/component', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3583, 'productWindow.js', '/public/statics/mp_view/pages/points_mall/component', '/public/statics/mp_view/pages/points_mall/component/productWindow.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3584, 'productWindow.json', '/public/statics/mp_view/pages/points_mall/component', '/public/statics/mp_view/pages/points_mall/component/productWindow.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3585, 'productWindow.wxml', '/public/statics/mp_view/pages/points_mall/component', '/public/statics/mp_view/pages/points_mall/component/productWindow.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3586, 'productWindow.wxss', '/public/statics/mp_view/pages/points_mall/component', '/public/statics/mp_view/pages/points_mall/component/productWindow.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3587, 'exchange_record.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/exchange_record.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3588, 'exchange_record.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/exchange_record.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3589, 'exchange_record.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/exchange_record.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3590, 'exchange_record.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/exchange_record.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3591, 'index.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3592, 'index.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3593, 'index.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3594, 'index.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3595, 'integral_goods_details.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_details.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3596, 'integral_goods_details.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_details.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3597, 'integral_goods_details.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_details.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3598, 'integral_goods_details.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_details.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3599, 'integral_goods_list.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_list.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3600, 'integral_goods_list.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_list.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3601, 'integral_goods_list.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_list.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3602, 'integral_goods_list.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_goods_list.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3603, 'integral_order.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3604, 'integral_order.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3605, 'integral_order.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3606, 'integral_order.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3607, 'integral_order_details.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_details.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3608, 'integral_order_details.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_details.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3609, 'integral_order_details.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_details.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3610, 'integral_order_details.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_details.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3611, 'integral_order_status.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_status.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3612, 'integral_order_status.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_status.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3613, 'integral_order_status.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_status.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3614, 'integral_order_status.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/integral_order_status.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3615, 'logistics_details.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/logistics_details.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3616, 'logistics_details.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/logistics_details.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3617, 'logistics_details.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/logistics_details.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3618, 'logistics_details.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/logistics_details.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3619, 'static', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3620, 'everyday.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/everyday.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3621, 'exchange.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/exchange.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3622, 'go-shoping.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/go-shoping.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3623, 'luck-draw.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/luck-draw.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3624, 'my-point.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/my-point.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3625, 'points-lottery.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/points-lottery.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3626, 'sign-in.png', '/public/statics/mp_view/pages/points_mall/static', '/public/statics/mp_view/pages/points_mall/static/sign-in.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3627, 'user_address.js', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/user_address.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3628, 'user_address.json', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/user_address.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3629, 'user_address.wxml', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/user_address.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3630, 'user_address.wxss', '/public/statics/mp_view/pages/points_mall', '/public/statics/mp_view/pages/points_mall/user_address.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3631, 'user', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/user', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3632, 'index.js', '/public/statics/mp_view/pages/user', '/public/statics/mp_view/pages/user/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3633, 'index.json', '/public/statics/mp_view/pages/user', '/public/statics/mp_view/pages/user/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3634, 'index.wxml', '/public/statics/mp_view/pages/user', '/public/statics/mp_view/pages/user/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3635, 'index.wxss', '/public/statics/mp_view/pages/user', '/public/statics/mp_view/pages/user/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3636, 'users', '/public/statics/mp_view/pages', '/public/statics/mp_view/pages/users', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3637, 'commission_rank', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/commission_rank', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3638, 'index.js', '/public/statics/mp_view/pages/users/commission_rank', '/public/statics/mp_view/pages/users/commission_rank/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3639, 'index.json', '/public/statics/mp_view/pages/users/commission_rank', '/public/statics/mp_view/pages/users/commission_rank/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3640, 'index.wxml', '/public/statics/mp_view/pages/users/commission_rank', '/public/statics/mp_view/pages/users/commission_rank/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3641, 'index.wxss', '/public/statics/mp_view/pages/users/commission_rank', '/public/statics/mp_view/pages/users/commission_rank/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3642, 'common', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3643, 'vendor.js', '/public/statics/mp_view/pages/users/common', '/public/statics/mp_view/pages/users/common/vendor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3644, 'components', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3645, 'login_mobile', '/public/statics/mp_view/pages/users/components', '/public/statics/mp_view/pages/users/components/login_mobile', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3646, 'index.js', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3647, 'index.json', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3648, 'index.wxml', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3649, 'index.wxss', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3650, 'routine_phone.js', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/routine_phone.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3651, 'routine_phone.json', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/routine_phone.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3652, 'routine_phone.wxml', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/routine_phone.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3653, 'routine_phone.wxss', '/public/statics/mp_view/pages/users/components/login_mobile', '/public/statics/mp_view/pages/users/components/login_mobile/routine_phone.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3654, 'verify', '/public/statics/mp_view/pages/users/components', '/public/statics/mp_view/pages/users/components/verify', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3655, 'index.js', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3656, 'index.json', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3657, 'index.wxml', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3658, 'index.wxss', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3659, 'verifyPoint', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/verifyPoint', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3660, 'verifyPoint.js', '/public/statics/mp_view/pages/users/components/verify/verifyPoint', '/public/statics/mp_view/pages/users/components/verify/verifyPoint/verifyPoint.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3661, 'verifyPoint.json', '/public/statics/mp_view/pages/users/components/verify/verifyPoint', '/public/statics/mp_view/pages/users/components/verify/verifyPoint/verifyPoint.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3662, 'verifyPoint.wxml', '/public/statics/mp_view/pages/users/components/verify/verifyPoint', '/public/statics/mp_view/pages/users/components/verify/verifyPoint/verifyPoint.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3663, 'verifyPoint.wxss', '/public/statics/mp_view/pages/users/components/verify/verifyPoint', '/public/statics/mp_view/pages/users/components/verify/verifyPoint/verifyPoint.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3664, 'verifySlider', '/public/statics/mp_view/pages/users/components/verify', '/public/statics/mp_view/pages/users/components/verify/verifySlider', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3665, 'index.js', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3666, 'index.json', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3667, 'index.wxml', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3668, 'index.wxss', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3669, 'verifySliderPc.js', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/verifySliderPc.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3670, 'verifySliderPc.json', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/verifySliderPc.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3671, 'verifySliderPc.wxml', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/verifySliderPc.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3672, 'verifySliderPc.wxss', '/public/statics/mp_view/pages/users/components/verify/verifySlider', '/public/statics/mp_view/pages/users/components/verify/verifySlider/verifySliderPc.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3673, 'login', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/login', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3674, 'index.js', '/public/statics/mp_view/pages/users/login', '/public/statics/mp_view/pages/users/login/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3675, 'index.json', '/public/statics/mp_view/pages/users/login', '/public/statics/mp_view/pages/users/login/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3676, 'index.wxml', '/public/statics/mp_view/pages/users/login', '/public/statics/mp_view/pages/users/login/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3677, 'index.wxss', '/public/statics/mp_view/pages/users/login', '/public/statics/mp_view/pages/users/login/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3678, 'message_center', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/message_center', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3679, 'index.js', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3680, 'index.json', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3681, 'index.wxml', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3682, 'index.wxss', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3683, 'messageDetail.js', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/messageDetail.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3684, 'messageDetail.json', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/messageDetail.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3685, 'messageDetail.wxml', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/messageDetail.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3686, 'messageDetail.wxss', '/public/statics/mp_view/pages/users/message_center', '/public/statics/mp_view/pages/users/message_center/messageDetail.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3687, 'payment_on_behalf', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/payment_on_behalf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3688, 'index.js', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3689, 'index.json', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3690, 'index.wxml', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3691, 'index.wxss', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3692, 'pay_status.js', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/pay_status.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3693, 'pay_status.json', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/pay_status.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3694, 'pay_status.wxml', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/pay_status.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3695, 'pay_status.wxss', '/public/statics/mp_view/pages/users/payment_on_behalf', '/public/statics/mp_view/pages/users/payment_on_behalf/pay_status.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3696, 'privacy', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/privacy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3697, 'index.js', '/public/statics/mp_view/pages/users/privacy', '/public/statics/mp_view/pages/users/privacy/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3698, 'index.json', '/public/statics/mp_view/pages/users/privacy', '/public/statics/mp_view/pages/users/privacy/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3699, 'index.wxml', '/public/statics/mp_view/pages/users/privacy', '/public/statics/mp_view/pages/users/privacy/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3700, 'index.wxss', '/public/statics/mp_view/pages/users/privacy', '/public/statics/mp_view/pages/users/privacy/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3701, 'promoter-list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/promoter-list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3702, 'index.js', '/public/statics/mp_view/pages/users/promoter-list', '/public/statics/mp_view/pages/users/promoter-list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3703, 'index.json', '/public/statics/mp_view/pages/users/promoter-list', '/public/statics/mp_view/pages/users/promoter-list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3704, 'index.wxml', '/public/statics/mp_view/pages/users/promoter-list', '/public/statics/mp_view/pages/users/promoter-list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3705, 'index.wxss', '/public/statics/mp_view/pages/users/promoter-list', '/public/statics/mp_view/pages/users/promoter-list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3706, 'promoter-order', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/promoter-order', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3707, 'index.js', '/public/statics/mp_view/pages/users/promoter-order', '/public/statics/mp_view/pages/users/promoter-order/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3708, 'index.json', '/public/statics/mp_view/pages/users/promoter-order', '/public/statics/mp_view/pages/users/promoter-order/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3709, 'index.wxml', '/public/statics/mp_view/pages/users/promoter-order', '/public/statics/mp_view/pages/users/promoter-order/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3710, 'index.wxss', '/public/statics/mp_view/pages/users/promoter-order', '/public/statics/mp_view/pages/users/promoter-order/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3711, 'promoter_rank', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/promoter_rank', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3712, 'index.js', '/public/statics/mp_view/pages/users/promoter_rank', '/public/statics/mp_view/pages/users/promoter_rank/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3713, 'index.json', '/public/statics/mp_view/pages/users/promoter_rank', '/public/statics/mp_view/pages/users/promoter_rank/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3714, 'index.wxml', '/public/statics/mp_view/pages/users/promoter_rank', '/public/statics/mp_view/pages/users/promoter_rank/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3715, 'index.wxss', '/public/statics/mp_view/pages/users/promoter_rank', '/public/statics/mp_view/pages/users/promoter_rank/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3716, 'retrievePassword', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/retrievePassword', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3717, 'index.js', '/public/statics/mp_view/pages/users/retrievePassword', '/public/statics/mp_view/pages/users/retrievePassword/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3718, 'index.json', '/public/statics/mp_view/pages/users/retrievePassword', '/public/statics/mp_view/pages/users/retrievePassword/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3719, 'index.wxml', '/public/statics/mp_view/pages/users/retrievePassword', '/public/statics/mp_view/pages/users/retrievePassword/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3720, 'index.wxss', '/public/statics/mp_view/pages/users/retrievePassword', '/public/statics/mp_view/pages/users/retrievePassword/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3721, 'scan_login', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/scan_login', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3722, 'index.js', '/public/statics/mp_view/pages/users/scan_login', '/public/statics/mp_view/pages/users/scan_login/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3723, 'index.json', '/public/statics/mp_view/pages/users/scan_login', '/public/statics/mp_view/pages/users/scan_login/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3724, 'index.wxml', '/public/statics/mp_view/pages/users/scan_login', '/public/statics/mp_view/pages/users/scan_login/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3725, 'index.wxss', '/public/statics/mp_view/pages/users/scan_login', '/public/statics/mp_view/pages/users/scan_login/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3726, 'staff_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/staff_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3727, 'index.js', '/public/statics/mp_view/pages/users/staff_list', '/public/statics/mp_view/pages/users/staff_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3728, 'index.json', '/public/statics/mp_view/pages/users/staff_list', '/public/statics/mp_view/pages/users/staff_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3729, 'index.wxml', '/public/statics/mp_view/pages/users/staff_list', '/public/statics/mp_view/pages/users/staff_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3730, 'index.wxss', '/public/statics/mp_view/pages/users/staff_list', '/public/statics/mp_view/pages/users/staff_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3731, 'static', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3732, '1.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3733, '2.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3734, '3.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3735, '4.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3736, 'address.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/address.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3737, 'admin-msg.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/admin-msg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3738, 'code_1.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/code_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3739, 'code_2.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/code_2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3740, 'gift.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/gift.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3741, 'home.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/home.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3742, 'left.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3743, 'lock.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/lock.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3744, 'logo2.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/logo2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3745, 'medal01.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/medal01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3746, 'medal02.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/medal02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3747, 'medal03.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/medal03.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3748, 'member-font.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/member-font.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3749, 'member-wang.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/member-wang.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3750, 'money.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/money.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3751, 'phone_1.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/phone_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3752, 'score.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/score.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3753, 'share-info2.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/share-info2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3754, 'signH.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/signH.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3755, 'sort1.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/sort1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3756, 'sort2.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/sort2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3757, 'sort3.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/sort3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3758, 'user-msg.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/user-msg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3759, 'value.jpg', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/value.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3760, 'vip.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3761, 'vip01.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3762, 'vip02.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3763, 'vip03.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip03.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3764, 'vip04.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip04.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3765, 'vip05.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/vip05.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3766, 'wechat_login.png', '/public/statics/mp_view/pages/users/static', '/public/statics/mp_view/pages/users/static/wechat_login.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3767, 'user_address', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_address', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3768, 'index.js', '/public/statics/mp_view/pages/users/user_address', '/public/statics/mp_view/pages/users/user_address/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3769, 'index.json', '/public/statics/mp_view/pages/users/user_address', '/public/statics/mp_view/pages/users/user_address/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3770, 'index.wxml', '/public/statics/mp_view/pages/users/user_address', '/public/statics/mp_view/pages/users/user_address/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3771, 'index.wxss', '/public/statics/mp_view/pages/users/user_address', '/public/statics/mp_view/pages/users/user_address/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3772, 'user_address_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_address_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3773, 'index.js', '/public/statics/mp_view/pages/users/user_address_list', '/public/statics/mp_view/pages/users/user_address_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3774, 'index.json', '/public/statics/mp_view/pages/users/user_address_list', '/public/statics/mp_view/pages/users/user_address_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3775, 'index.wxml', '/public/statics/mp_view/pages/users/user_address_list', '/public/statics/mp_view/pages/users/user_address_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3776, 'index.wxss', '/public/statics/mp_view/pages/users/user_address_list', '/public/statics/mp_view/pages/users/user_address_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3777, 'user_bill', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_bill', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3778, 'index.js', '/public/statics/mp_view/pages/users/user_bill', '/public/statics/mp_view/pages/users/user_bill/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3779, 'index.json', '/public/statics/mp_view/pages/users/user_bill', '/public/statics/mp_view/pages/users/user_bill/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3780, 'index.wxml', '/public/statics/mp_view/pages/users/user_bill', '/public/statics/mp_view/pages/users/user_bill/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3781, 'index.wxss', '/public/statics/mp_view/pages/users/user_bill', '/public/statics/mp_view/pages/users/user_bill/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3782, 'user_cancellation', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_cancellation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3783, 'index.js', '/public/statics/mp_view/pages/users/user_cancellation', '/public/statics/mp_view/pages/users/user_cancellation/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3784, 'index.json', '/public/statics/mp_view/pages/users/user_cancellation', '/public/statics/mp_view/pages/users/user_cancellation/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3785, 'index.wxml', '/public/statics/mp_view/pages/users/user_cancellation', '/public/statics/mp_view/pages/users/user_cancellation/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3786, 'index.wxss', '/public/statics/mp_view/pages/users/user_cancellation', '/public/statics/mp_view/pages/users/user_cancellation/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3787, 'user_cash', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_cash', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3788, 'index.js', '/public/statics/mp_view/pages/users/user_cash', '/public/statics/mp_view/pages/users/user_cash/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3789, 'index.json', '/public/statics/mp_view/pages/users/user_cash', '/public/statics/mp_view/pages/users/user_cash/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3790, 'index.wxml', '/public/statics/mp_view/pages/users/user_cash', '/public/statics/mp_view/pages/users/user_cash/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3791, 'index.wxss', '/public/statics/mp_view/pages/users/user_cash', '/public/statics/mp_view/pages/users/user_cash/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3792, 'user_coupon', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_coupon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3793, 'index.js', '/public/statics/mp_view/pages/users/user_coupon', '/public/statics/mp_view/pages/users/user_coupon/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3794, 'index.json', '/public/statics/mp_view/pages/users/user_coupon', '/public/statics/mp_view/pages/users/user_coupon/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3795, 'index.wxml', '/public/statics/mp_view/pages/users/user_coupon', '/public/statics/mp_view/pages/users/user_coupon/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3796, 'index.wxss', '/public/statics/mp_view/pages/users/user_coupon', '/public/statics/mp_view/pages/users/user_coupon/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3797, 'user_distribution_level', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_distribution_level', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3798, 'index.js', '/public/statics/mp_view/pages/users/user_distribution_level', '/public/statics/mp_view/pages/users/user_distribution_level/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3799, 'index.json', '/public/statics/mp_view/pages/users/user_distribution_level', '/public/statics/mp_view/pages/users/user_distribution_level/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3800, 'index.wxml', '/public/statics/mp_view/pages/users/user_distribution_level', '/public/statics/mp_view/pages/users/user_distribution_level/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3801, 'index.wxss', '/public/statics/mp_view/pages/users/user_distribution_level', '/public/statics/mp_view/pages/users/user_distribution_level/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3802, 'user_get_coupon', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_get_coupon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3803, 'index.js', '/public/statics/mp_view/pages/users/user_get_coupon', '/public/statics/mp_view/pages/users/user_get_coupon/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3804, 'index.json', '/public/statics/mp_view/pages/users/user_get_coupon', '/public/statics/mp_view/pages/users/user_get_coupon/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3805, 'index.wxml', '/public/statics/mp_view/pages/users/user_get_coupon', '/public/statics/mp_view/pages/users/user_get_coupon/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3806, 'index.wxss', '/public/statics/mp_view/pages/users/user_get_coupon', '/public/statics/mp_view/pages/users/user_get_coupon/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3807, 'user_goods_collection', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_goods_collection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3808, 'index.js', '/public/statics/mp_view/pages/users/user_goods_collection', '/public/statics/mp_view/pages/users/user_goods_collection/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3809, 'index.json', '/public/statics/mp_view/pages/users/user_goods_collection', '/public/statics/mp_view/pages/users/user_goods_collection/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3810, 'index.wxml', '/public/statics/mp_view/pages/users/user_goods_collection', '/public/statics/mp_view/pages/users/user_goods_collection/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3811, 'index.wxss', '/public/statics/mp_view/pages/users/user_goods_collection', '/public/statics/mp_view/pages/users/user_goods_collection/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3812, 'user_info', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_info', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3813, 'index.js', '/public/statics/mp_view/pages/users/user_info', '/public/statics/mp_view/pages/users/user_info/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3814, 'index.json', '/public/statics/mp_view/pages/users/user_info', '/public/statics/mp_view/pages/users/user_info/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3815, 'index.wxml', '/public/statics/mp_view/pages/users/user_info', '/public/statics/mp_view/pages/users/user_info/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3816, 'index.wxss', '/public/statics/mp_view/pages/users/user_info', '/public/statics/mp_view/pages/users/user_info/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3817, 'user_integral', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_integral', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3818, 'index.js', '/public/statics/mp_view/pages/users/user_integral', '/public/statics/mp_view/pages/users/user_integral/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3819, 'index.json', '/public/statics/mp_view/pages/users/user_integral', '/public/statics/mp_view/pages/users/user_integral/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3820, 'index.wxml', '/public/statics/mp_view/pages/users/user_integral', '/public/statics/mp_view/pages/users/user_integral/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3821, 'index.wxss', '/public/statics/mp_view/pages/users/user_integral', '/public/statics/mp_view/pages/users/user_integral/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3822, 'user_invoice_form', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_invoice_form', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3823, 'index.js', '/public/statics/mp_view/pages/users/user_invoice_form', '/public/statics/mp_view/pages/users/user_invoice_form/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3824, 'index.json', '/public/statics/mp_view/pages/users/user_invoice_form', '/public/statics/mp_view/pages/users/user_invoice_form/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3825, 'index.wxml', '/public/statics/mp_view/pages/users/user_invoice_form', '/public/statics/mp_view/pages/users/user_invoice_form/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3826, 'index.wxss', '/public/statics/mp_view/pages/users/user_invoice_form', '/public/statics/mp_view/pages/users/user_invoice_form/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3827, 'user_invoice_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_invoice_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3828, 'index.js', '/public/statics/mp_view/pages/users/user_invoice_list', '/public/statics/mp_view/pages/users/user_invoice_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3829, 'index.json', '/public/statics/mp_view/pages/users/user_invoice_list', '/public/statics/mp_view/pages/users/user_invoice_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3830, 'index.wxml', '/public/statics/mp_view/pages/users/user_invoice_list', '/public/statics/mp_view/pages/users/user_invoice_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3831, 'index.wxss', '/public/statics/mp_view/pages/users/user_invoice_list', '/public/statics/mp_view/pages/users/user_invoice_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3832, 'user_invoice_order', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_invoice_order', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3833, 'index.js', '/public/statics/mp_view/pages/users/user_invoice_order', '/public/statics/mp_view/pages/users/user_invoice_order/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3834, 'index.json', '/public/statics/mp_view/pages/users/user_invoice_order', '/public/statics/mp_view/pages/users/user_invoice_order/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3835, 'index.wxml', '/public/statics/mp_view/pages/users/user_invoice_order', '/public/statics/mp_view/pages/users/user_invoice_order/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3836, 'index.wxss', '/public/statics/mp_view/pages/users/user_invoice_order', '/public/statics/mp_view/pages/users/user_invoice_order/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3837, 'user_money', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_money', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3838, 'index.js', '/public/statics/mp_view/pages/users/user_money', '/public/statics/mp_view/pages/users/user_money/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3839, 'index.json', '/public/statics/mp_view/pages/users/user_money', '/public/statics/mp_view/pages/users/user_money/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3840, 'index.wxml', '/public/statics/mp_view/pages/users/user_money', '/public/statics/mp_view/pages/users/user_money/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3841, 'index.wxss', '/public/statics/mp_view/pages/users/user_money', '/public/statics/mp_view/pages/users/user_money/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3842, 'user_payment', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3843, 'index.js', '/public/statics/mp_view/pages/users/user_payment', '/public/statics/mp_view/pages/users/user_payment/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3844, 'index.json', '/public/statics/mp_view/pages/users/user_payment', '/public/statics/mp_view/pages/users/user_payment/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3845, 'index.wxml', '/public/statics/mp_view/pages/users/user_payment', '/public/statics/mp_view/pages/users/user_payment/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3846, 'index.wxss', '/public/statics/mp_view/pages/users/user_payment', '/public/statics/mp_view/pages/users/user_payment/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3847, 'user_phone', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_phone', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3848, 'index.js', '/public/statics/mp_view/pages/users/user_phone', '/public/statics/mp_view/pages/users/user_phone/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3849, 'index.json', '/public/statics/mp_view/pages/users/user_phone', '/public/statics/mp_view/pages/users/user_phone/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3850, 'index.wxml', '/public/statics/mp_view/pages/users/user_phone', '/public/statics/mp_view/pages/users/user_phone/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3851, 'index.wxss', '/public/statics/mp_view/pages/users/user_phone', '/public/statics/mp_view/pages/users/user_phone/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3852, 'user_pwd_edit', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_pwd_edit', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3853, 'index.js', '/public/statics/mp_view/pages/users/user_pwd_edit', '/public/statics/mp_view/pages/users/user_pwd_edit/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3854, 'index.json', '/public/statics/mp_view/pages/users/user_pwd_edit', '/public/statics/mp_view/pages/users/user_pwd_edit/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3855, 'index.wxml', '/public/statics/mp_view/pages/users/user_pwd_edit', '/public/statics/mp_view/pages/users/user_pwd_edit/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3856, 'index.wxss', '/public/statics/mp_view/pages/users/user_pwd_edit', '/public/statics/mp_view/pages/users/user_pwd_edit/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3857, 'user_return_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_return_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3858, 'index.js', '/public/statics/mp_view/pages/users/user_return_list', '/public/statics/mp_view/pages/users/user_return_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3859, 'index.json', '/public/statics/mp_view/pages/users/user_return_list', '/public/statics/mp_view/pages/users/user_return_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3860, 'index.wxml', '/public/statics/mp_view/pages/users/user_return_list', '/public/statics/mp_view/pages/users/user_return_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3861, 'index.wxss', '/public/statics/mp_view/pages/users/user_return_list', '/public/statics/mp_view/pages/users/user_return_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3862, 'user_sgin', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_sgin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3863, 'index.js', '/public/statics/mp_view/pages/users/user_sgin', '/public/statics/mp_view/pages/users/user_sgin/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3864, 'index.json', '/public/statics/mp_view/pages/users/user_sgin', '/public/statics/mp_view/pages/users/user_sgin/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3865, 'index.wxml', '/public/statics/mp_view/pages/users/user_sgin', '/public/statics/mp_view/pages/users/user_sgin/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3866, 'index.wxss', '/public/statics/mp_view/pages/users/user_sgin', '/public/statics/mp_view/pages/users/user_sgin/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3867, 'user_sgin_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_sgin_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3868, 'index.js', '/public/statics/mp_view/pages/users/user_sgin_list', '/public/statics/mp_view/pages/users/user_sgin_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3869, 'index.json', '/public/statics/mp_view/pages/users/user_sgin_list', '/public/statics/mp_view/pages/users/user_sgin_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3870, 'index.wxml', '/public/statics/mp_view/pages/users/user_sgin_list', '/public/statics/mp_view/pages/users/user_sgin_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3871, 'user_spread_code', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_spread_code', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3872, 'index.js', '/public/statics/mp_view/pages/users/user_spread_code', '/public/statics/mp_view/pages/users/user_spread_code/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3873, 'index.json', '/public/statics/mp_view/pages/users/user_spread_code', '/public/statics/mp_view/pages/users/user_spread_code/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3874, 'index.wxml', '/public/statics/mp_view/pages/users/user_spread_code', '/public/statics/mp_view/pages/users/user_spread_code/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3875, 'index.wxss', '/public/statics/mp_view/pages/users/user_spread_code', '/public/statics/mp_view/pages/users/user_spread_code/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3876, 'user_spread_money', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_spread_money', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3877, 'index.js', '/public/statics/mp_view/pages/users/user_spread_money', '/public/statics/mp_view/pages/users/user_spread_money/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3878, 'index.json', '/public/statics/mp_view/pages/users/user_spread_money', '/public/statics/mp_view/pages/users/user_spread_money/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3879, 'index.wxml', '/public/statics/mp_view/pages/users/user_spread_money', '/public/statics/mp_view/pages/users/user_spread_money/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3880, 'index.wxss', '/public/statics/mp_view/pages/users/user_spread_money', '/public/statics/mp_view/pages/users/user_spread_money/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3881, 'user_spread_user', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_spread_user', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3882, 'index.js', '/public/statics/mp_view/pages/users/user_spread_user', '/public/statics/mp_view/pages/users/user_spread_user/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3883, 'index.json', '/public/statics/mp_view/pages/users/user_spread_user', '/public/statics/mp_view/pages/users/user_spread_user/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3884, 'index.wxml', '/public/statics/mp_view/pages/users/user_spread_user', '/public/statics/mp_view/pages/users/user_spread_user/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3885, 'index.wxss', '/public/statics/mp_view/pages/users/user_spread_user', '/public/statics/mp_view/pages/users/user_spread_user/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3886, 'user_vip', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_vip', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3887, 'index.js', '/public/statics/mp_view/pages/users/user_vip', '/public/statics/mp_view/pages/users/user_vip/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3888, 'index.json', '/public/statics/mp_view/pages/users/user_vip', '/public/statics/mp_view/pages/users/user_vip/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3889, 'index.wxml', '/public/statics/mp_view/pages/users/user_vip', '/public/statics/mp_view/pages/users/user_vip/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3890, 'index.wxss', '/public/statics/mp_view/pages/users/user_vip', '/public/statics/mp_view/pages/users/user_vip/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3891, 'user_vip_areer', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/user_vip_areer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3892, 'index.js', '/public/statics/mp_view/pages/users/user_vip_areer', '/public/statics/mp_view/pages/users/user_vip_areer/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3893, 'index.json', '/public/statics/mp_view/pages/users/user_vip_areer', '/public/statics/mp_view/pages/users/user_vip_areer/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3894, 'index.wxml', '/public/statics/mp_view/pages/users/user_vip_areer', '/public/statics/mp_view/pages/users/user_vip_areer/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3895, 'index.wxss', '/public/statics/mp_view/pages/users/user_vip_areer', '/public/statics/mp_view/pages/users/user_vip_areer/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3896, 'visit_list', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/visit_list', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3897, 'index.js', '/public/statics/mp_view/pages/users/visit_list', '/public/statics/mp_view/pages/users/visit_list/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3898, 'index.json', '/public/statics/mp_view/pages/users/visit_list', '/public/statics/mp_view/pages/users/visit_list/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3899, 'index.wxml', '/public/statics/mp_view/pages/users/visit_list', '/public/statics/mp_view/pages/users/visit_list/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3900, 'index.wxss', '/public/statics/mp_view/pages/users/visit_list', '/public/statics/mp_view/pages/users/visit_list/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3901, 'wechat_login', '/public/statics/mp_view/pages/users', '/public/statics/mp_view/pages/users/wechat_login', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3902, 'index.js', '/public/statics/mp_view/pages/users/wechat_login', '/public/statics/mp_view/pages/users/wechat_login/index.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3903, 'index.json', '/public/statics/mp_view/pages/users/wechat_login', '/public/statics/mp_view/pages/users/wechat_login/index.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3904, 'index.wxml', '/public/statics/mp_view/pages/users/wechat_login', '/public/statics/mp_view/pages/users/wechat_login/index.wxml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3905, 'index.wxss', '/public/statics/mp_view/pages/users/wechat_login', '/public/statics/mp_view/pages/users/wechat_login/index.wxss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3906, 'project.config.json', '/public/statics/mp_view', '/public/statics/mp_view/project.config.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3907, 'static', '/public/statics/mp_view', '/public/statics/mp_view/static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3908, 'css', '/public/statics/mp_view/static', '/public/statics/mp_view/static/css', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3909, 'base.css', '/public/statics/mp_view/static/css', '/public/statics/mp_view/static/css/base.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3910, 'guildford.css', '/public/statics/mp_view/static/css', '/public/statics/mp_view/static/css/guildford.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3911, 'style.scss', '/public/statics/mp_view/static/css', '/public/statics/mp_view/static/css/style.scss', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3912, 'easy-loadimage', '/public/statics/mp_view/static', '/public/statics/mp_view/static/easy-loadimage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3913, 'loadfail.png', '/public/statics/mp_view/static/easy-loadimage', '/public/statics/mp_view/static/easy-loadimage/loadfail.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3914, 'loading.png', '/public/statics/mp_view/static/easy-loadimage', '/public/statics/mp_view/static/easy-loadimage/loading.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3915, 'iconfont', '/public/statics/mp_view/static', '/public/statics/mp_view/static/iconfont', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3916, 'iconfont.css', '/public/statics/mp_view/static/iconfont', '/public/statics/mp_view/static/iconfont/iconfont.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3917, 'images', '/public/statics/mp_view/static', '/public/statics/mp_view/static/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3918, '1-001.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/1-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3919, '1-002.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/1-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3920, '2-001.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/2-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3921, '2-002.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/2-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3922, '3-001.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/3-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3923, '3-002.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/3-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3924, '4-001.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/4-001.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3925, '4-002.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/4-002.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3926, 'address.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/address.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3927, 'code-bg.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/code-bg.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3928, 'contact.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/contact.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3929, 'def_avatar.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/def_avatar.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3930, 'down.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/down.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3931, 'edit.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/edit.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3932, 'f.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3933, 'fvip.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/fvip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3934, 'group02.gif', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/group02.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3935, 'headwear.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/headwear.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3936, 'horn.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/horn.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3937, 'jf-head.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/jf-head.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3938, 'jvip.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/jvip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3939, 'left.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/left.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3940, 'line.jpg', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/line.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3941, 'live-01.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/live-01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3942, 'live-02.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/live-02.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3943, 'member.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/member.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3944, 'member01.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/member01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3945, 'menu.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/menu.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3946, 'mores.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/mores.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3947, 'one.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/one.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3948, 'poster-close.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/poster-close.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3949, 'posterbackgd.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/posterbackgd.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3950, 'right-icon.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/right-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3951, 'sort-img.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/sort-img.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3952, 'spike-icon-002.gif', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/spike-icon-002.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3953, 'spot.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/spot.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3954, 'stop.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/stop.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3955, 'support.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/support.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3956, 'svip.gif', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/svip.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3957, 'svip.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/svip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3958, 'three.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/three.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3959, 'two.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/two.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3960, 'up.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/up.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3961, 'user01.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/user01.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3962, 'user_vip.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/user_vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3963, 'vip.png', '/public/statics/mp_view/static/images', '/public/statics/mp_view/static/images/vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3964, 'poster', '/public/statics', '/public/statics/poster', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3965, 'poster.jpg', '/public/statics/poster', '/public/statics/poster/poster.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3966, 'qrcode', '/public/statics', '/public/statics/qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3967, 'background.png', '/public/statics/qrcode', '/public/statics/qrcode/background.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3968, 'follow.png', '/public/statics/qrcode', '/public/statics/qrcode/follow.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3969, 'offlines.jpg', '/public/statics/qrcode', '/public/statics/qrcode/offlines.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3970, 'system_images', '/public/statics', '/public/statics/system_images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3971, 'admin_login_logo.png', '/public/statics/system_images', '/public/statics/system_images/admin_login_logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3972, 'admin_logo_big.png', '/public/statics/system_images', '/public/statics/system_images/admin_logo_big.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3973, 'admin_logo_small.png', '/public/statics/system_images', '/public/statics/system_images/admin_logo_small.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3974, 'customer_1.png', '/public/statics/system_images', '/public/statics/system_images/customer_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3975, 'customer_2.png', '/public/statics/system_images', '/public/statics/system_images/customer_2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3976, 'customer_3.png', '/public/statics/system_images', '/public/statics/system_images/customer_3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3977, 'customer_4.png', '/public/statics/system_images', '/public/statics/system_images/customer_4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3978, 'default_avatar.jpeg', '/public/statics/system_images', '/public/statics/system_images/default_avatar.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3979, 'login_logo.jpeg', '/public/statics/system_images', '/public/statics/system_images/login_logo.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3980, 'member_coupon.png', '/public/statics/system_images', '/public/statics/system_images/member_coupon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3981, 'member_discount.png', '/public/statics/system_images', '/public/statics/system_images/member_discount.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3982, 'member_freight.png', '/public/statics/system_images', '/public/statics/system_images/member_freight.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3983, 'member_integral.png', '/public/statics/system_images', '/public/statics/system_images/member_integral.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3984, 'member_price.png', '/public/statics/system_images', '/public/statics/system_images/member_price.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3985, 'member_sign.png', '/public/statics/system_images', '/public/statics/system_images/member_sign.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3986, 'menu_address.png', '/public/statics/system_images', '/public/statics/system_images/menu_address.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3987, 'menu_admin_order.png', '/public/statics/system_images', '/public/statics/system_images/menu_admin_order.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3988, 'menu_bargain.png', '/public/statics/system_images', '/public/statics/system_images/menu_bargain.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3989, 'menu_cancellation.png', '/public/statics/system_images', '/public/statics/system_images/menu_cancellation.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3990, 'menu_collection.png', '/public/statics/system_images', '/public/statics/system_images/menu_collection.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3991, 'menu_coupon.png', '/public/statics/system_images', '/public/statics/system_images/menu_coupon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3992, 'menu_customer.png', '/public/statics/system_images', '/public/statics/system_images/menu_customer.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3993, 'menu_integral.png', '/public/statics/system_images', '/public/statics/system_images/menu_integral.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3994, 'menu_invoice.png', '/public/statics/system_images', '/public/statics/system_images/menu_invoice.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3995, 'menu_kefu.png', '/public/statics/system_images', '/public/statics/system_images/menu_kefu.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3996, 'menu_level.png', '/public/statics/system_images', '/public/statics/system_images/menu_level.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3997, 'menu_log.png', '/public/statics/system_images', '/public/statics/system_images/menu_log.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3998, 'menu_money.png', '/public/statics/system_images', '/public/statics/system_images/menu_money.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(3999, 'menu_spread.png', '/public/statics/system_images', '/public/statics/system_images/menu_spread.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4000, 'menu_vip.png', '/public/statics/system_images', '/public/statics/system_images/menu_vip.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4001, 'order_complete.gif', '/public/statics/system_images', '/public/statics/system_images/order_complete.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4002, 'order_offline.gif', '/public/statics/system_images', '/public/statics/system_images/order_offline.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4003, 'order_reply.gif', '/public/statics/system_images', '/public/statics/system_images/order_reply.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4004, 'order_send.gif', '/public/statics/system_images', '/public/statics/system_images/order_send.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4005, 'order_unpaid.gif', '/public/statics/system_images', '/public/statics/system_images/order_unpaid.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4006, 'order_unsend.gif', '/public/statics/system_images', '/public/statics/system_images/order_unsend.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4007, 'pc_logo.png', '/public/statics/system_images', '/public/statics/system_images/pc_logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4008, 'recommend_image.png', '/public/statics/system_images', '/public/statics/system_images/recommend_image.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4009, 'share_image.jpeg', '/public/statics/system_images', '/public/statics/system_images/share_image.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4010, 'spread_1.jpeg', '/public/statics/system_images', '/public/statics/system_images/spread_1.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4011, 'spread_2.jpeg', '/public/statics/system_images', '/public/statics/system_images/spread_2.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4012, 'spread_level_1.png', '/public/statics/system_images', '/public/statics/system_images/spread_level_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4013, 'spread_level_2.png', '/public/statics/system_images', '/public/statics/system_images/spread_level_2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4014, 'spread_level_3.png', '/public/statics/system_images', '/public/statics/system_images/spread_level_3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4015, 'spread_level_4.png', '/public/statics/system_images', '/public/statics/system_images/spread_level_4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4016, 'spread_level_5.png', '/public/statics/system_images', '/public/statics/system_images/spread_level_5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4017, 'user_level_1_bgimg.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_1_bgimg.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4018, 'user_level_1_icon.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_1_icon.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4019, 'user_level_2_bgimg.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_2_bgimg.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4020, 'user_level_2_icon.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_2_icon.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4021, 'user_level_3_bgimg.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_3_bgimg.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4022, 'user_level_3_icon.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_3_icon.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4023, 'user_level_4_bgimg.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_4_bgimg.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4024, 'user_level_4_icon.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_4_icon.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4025, 'user_level_5_bgimg.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_5_bgimg.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4026, 'user_level_5_icon.jpeg', '/public/statics/system_images', '/public/statics/system_images/user_level_5_icon.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4027, 'upgrade', '/public', '/public/upgrade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', '系统更新目录'),
|
||
(4028, '.upgrade', '/public/upgrade', '/public/upgrade/.upgrade', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4029, 'step1.html', '/public/upgrade', '/public/upgrade/step1.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4030, 'uploads', '/public', '/public/uploads', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', '上传存储目录'),
|
||
(4031, 'attach', '/public/uploads', '/public/uploads/attach', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4032, '2023', '/public/uploads/attach', '/public/uploads/attach/2023', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4033, '02', '/public/uploads/attach/2023', '/public/uploads/attach/2023/02', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4034, '20230210', '/public/uploads/attach/2023/02', '/public/uploads/attach/2023/02/20230210', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4035, '6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4036, '955c6bb44d8e002164bcbc2e7b3b6ea5.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/955c6bb44d8e002164bcbc2e7b3b6ea5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4037, '9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4038, 'a485a767c5723bdce3536fb1e2ff7120.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/a485a767c5723bdce3536fb1e2ff7120.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4039, 'ae1f27591f38ab006ae57bf4bfe2c3fb.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/ae1f27591f38ab006ae57bf4bfe2c3fb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4040, 'big_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4041, 'big_955c6bb44d8e002164bcbc2e7b3b6ea5.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_955c6bb44d8e002164bcbc2e7b3b6ea5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4042, 'big_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4043, 'big_a485a767c5723bdce3536fb1e2ff7120.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_a485a767c5723bdce3536fb1e2ff7120.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4044, 'big_ae1f27591f38ab006ae57bf4bfe2c3fb.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_ae1f27591f38ab006ae57bf4bfe2c3fb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4045, 'big_e3efd92529edc4d62761d8b353f7a3c3.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/big_e3efd92529edc4d62761d8b353f7a3c3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4046, 'e3efd92529edc4d62761d8b353f7a3c3.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/e3efd92529edc4d62761d8b353f7a3c3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4047, 'mid_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4048, 'mid_955c6bb44d8e002164bcbc2e7b3b6ea5.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_955c6bb44d8e002164bcbc2e7b3b6ea5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4049, 'mid_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4050, 'mid_a485a767c5723bdce3536fb1e2ff7120.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_a485a767c5723bdce3536fb1e2ff7120.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4051, 'mid_ae1f27591f38ab006ae57bf4bfe2c3fb.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_ae1f27591f38ab006ae57bf4bfe2c3fb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4052, 'mid_e3efd92529edc4d62761d8b353f7a3c3.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/mid_e3efd92529edc4d62761d8b353f7a3c3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4053, 'small_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_6db89d3eb8ee8c1dc97db1e4bd6be8f1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4054, 'small_955c6bb44d8e002164bcbc2e7b3b6ea5.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_955c6bb44d8e002164bcbc2e7b3b6ea5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4055, 'small_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_9d4b9a46e0d4cb4740a6fe8eec8f2c16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4056, 'small_a485a767c5723bdce3536fb1e2ff7120.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_a485a767c5723bdce3536fb1e2ff7120.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4057, 'small_ae1f27591f38ab006ae57bf4bfe2c3fb.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_ae1f27591f38ab006ae57bf4bfe2c3fb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4058, 'small_e3efd92529edc4d62761d8b353f7a3c3.png', '/public/uploads/attach/2023/02/20230210', '/public/uploads/attach/2023/02/20230210/small_e3efd92529edc4d62761d8b353f7a3c3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4059, '20230213', '/public/uploads/attach/2023/02', '/public/uploads/attach/2023/02/20230213', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4060, '01c69f26a1f0347316be619dabc8d9eb.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/01c69f26a1f0347316be619dabc8d9eb.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4061, '061b76d2c9f5cd43201f248f53be5d46.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/061b76d2c9f5cd43201f248f53be5d46.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4062, '080bad1fc75b2c68abf8f55eb6560608.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/080bad1fc75b2c68abf8f55eb6560608.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4063, '10801cb0049c2d8fb34754ef7c1ce54f.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/10801cb0049c2d8fb34754ef7c1ce54f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4064, '11ae9e1404f77bd921ee990108d10720.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/11ae9e1404f77bd921ee990108d10720.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4065, '1759437a06bd9d54b3c2c09336d25f44.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/1759437a06bd9d54b3c2c09336d25f44.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4066, '23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4067, '2420d4bf274addf6286f6cd3be0ccf60.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/2420d4bf274addf6286f6cd3be0ccf60.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4068, '2bccb77e23f60bd993f80895f7e278d7.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/2bccb77e23f60bd993f80895f7e278d7.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4069, '3b570808fc3593aa51b2a94ceaba3e6f.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/3b570808fc3593aa51b2a94ceaba3e6f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4070, '3c49ade797d647b41412e06805a33fb6.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/3c49ade797d647b41412e06805a33fb6.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4071, '3e1e810aad648bd4449b3a01d738a52a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/3e1e810aad648bd4449b3a01d738a52a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4072, '542267cb5f660e19c6647a71913c5624.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/542267cb5f660e19c6647a71913c5624.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4073, '58df0d104288e168a4efdbcdbebcfd33.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/58df0d104288e168a4efdbcdbebcfd33.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4074, '5a9b500b393066f1322603456f142a2a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/5a9b500b393066f1322603456f142a2a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4075, '5ae4f6a3f8bf153beb849e02e14b5c40.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/5ae4f6a3f8bf153beb849e02e14b5c40.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4076, '5aea4687e62d39793ba63161eacf6661.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/5aea4687e62d39793ba63161eacf6661.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4077, '5b64e6584c06020347a5fa58af79d42a.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/5b64e6584c06020347a5fa58af79d42a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4078, '62c718b8f546c0e601fbc00b63e63be2.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/62c718b8f546c0e601fbc00b63e63be2.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4079, '6884c812a8fe9ef1af4679a3831b2d51.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/6884c812a8fe9ef1af4679a3831b2d51.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4080, '68a662d8f1d0869337ca98ecd2befe55.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/68a662d8f1d0869337ca98ecd2befe55.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4081, '75b6b32021bc79734ceb90f0be0b2c14.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/75b6b32021bc79734ceb90f0be0b2c14.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4082, '895d5edf7eaf8d0f2c69fc34f30749e3.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/895d5edf7eaf8d0f2c69fc34f30749e3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4083, '99f7775c5c34da1fac55cd80504ec0d8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/99f7775c5c34da1fac55cd80504ec0d8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4084, 'a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4085, 'a7cfed80049c0d051988da434d5553b6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/a7cfed80049c0d051988da434d5553b6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4086, 'adb54a4da6288f89722872d54ff4994e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/adb54a4da6288f89722872d54ff4994e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4087, 'afebd475d8c9c75ec8661504abf1c3b8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/afebd475d8c9c75ec8661504abf1c3b8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4088, 'b5adf91569e82e49be720f2f70238ea1.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/b5adf91569e82e49be720f2f70238ea1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4089, 'b9be2305fef6a3ce47792d624926c952.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/b9be2305fef6a3ce47792d624926c952.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4090, 'big_01c69f26a1f0347316be619dabc8d9eb.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_01c69f26a1f0347316be619dabc8d9eb.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4091, 'big_061b76d2c9f5cd43201f248f53be5d46.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_061b76d2c9f5cd43201f248f53be5d46.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4092, 'big_080bad1fc75b2c68abf8f55eb6560608.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_080bad1fc75b2c68abf8f55eb6560608.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4093, 'big_10801cb0049c2d8fb34754ef7c1ce54f.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_10801cb0049c2d8fb34754ef7c1ce54f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4094, 'big_11ae9e1404f77bd921ee990108d10720.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_11ae9e1404f77bd921ee990108d10720.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4095, 'big_1759437a06bd9d54b3c2c09336d25f44.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_1759437a06bd9d54b3c2c09336d25f44.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4096, 'big_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4097, 'big_2420d4bf274addf6286f6cd3be0ccf60.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_2420d4bf274addf6286f6cd3be0ccf60.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4098, 'big_2bccb77e23f60bd993f80895f7e278d7.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_2bccb77e23f60bd993f80895f7e278d7.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4099, 'big_3b570808fc3593aa51b2a94ceaba3e6f.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_3b570808fc3593aa51b2a94ceaba3e6f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4100, 'big_3c49ade797d647b41412e06805a33fb6.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_3c49ade797d647b41412e06805a33fb6.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4101, 'big_3e1e810aad648bd4449b3a01d738a52a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_3e1e810aad648bd4449b3a01d738a52a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4102, 'big_542267cb5f660e19c6647a71913c5624.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_542267cb5f660e19c6647a71913c5624.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4103, 'big_58df0d104288e168a4efdbcdbebcfd33.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_58df0d104288e168a4efdbcdbebcfd33.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4104, 'big_5a9b500b393066f1322603456f142a2a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_5a9b500b393066f1322603456f142a2a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4105, 'big_5ae4f6a3f8bf153beb849e02e14b5c40.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_5ae4f6a3f8bf153beb849e02e14b5c40.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4106, 'big_5aea4687e62d39793ba63161eacf6661.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_5aea4687e62d39793ba63161eacf6661.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4107, 'big_5b64e6584c06020347a5fa58af79d42a.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_5b64e6584c06020347a5fa58af79d42a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4108, 'big_62c718b8f546c0e601fbc00b63e63be2.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_62c718b8f546c0e601fbc00b63e63be2.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4109, 'big_6884c812a8fe9ef1af4679a3831b2d51.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_6884c812a8fe9ef1af4679a3831b2d51.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4110, 'big_68a662d8f1d0869337ca98ecd2befe55.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_68a662d8f1d0869337ca98ecd2befe55.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4111, 'big_75b6b32021bc79734ceb90f0be0b2c14.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_75b6b32021bc79734ceb90f0be0b2c14.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4112, 'big_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4113, 'big_99f7775c5c34da1fac55cd80504ec0d8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_99f7775c5c34da1fac55cd80504ec0d8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4114, 'big_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4115, 'big_a7cfed80049c0d051988da434d5553b6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_a7cfed80049c0d051988da434d5553b6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4116, 'big_adb54a4da6288f89722872d54ff4994e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_adb54a4da6288f89722872d54ff4994e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4117, 'big_afebd475d8c9c75ec8661504abf1c3b8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_afebd475d8c9c75ec8661504abf1c3b8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4118, 'big_b5adf91569e82e49be720f2f70238ea1.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_b5adf91569e82e49be720f2f70238ea1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4119, 'big_b9be2305fef6a3ce47792d624926c952.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_b9be2305fef6a3ce47792d624926c952.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4120, 'big_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4121, 'big_c88965f2844d7b68f3b25aa598dc7dec.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_c88965f2844d7b68f3b25aa598dc7dec.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4122, 'big_c90caa5e6adfe69bac84281193d8fd3e.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_c90caa5e6adfe69bac84281193d8fd3e.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4123, 'big_cf5414089d598d064b0a4d7154a4f491.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_cf5414089d598d064b0a4d7154a4f491.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4124, 'big_d434773d91b3e3a6b7f4756c0044410a.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_d434773d91b3e3a6b7f4756c0044410a.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4125, 'big_e1b434ef85145430b8bd1a93528c1e26.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_e1b434ef85145430b8bd1a93528c1e26.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4126, 'big_e91ef8d30ee780f84c5966649117bcba.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_e91ef8d30ee780f84c5966649117bcba.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4127, 'big_f661601e3828cf926275b6743e6cd815.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_f661601e3828cf926275b6743e6cd815.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4128, 'big_f9c81ca764bcccc2fc5ecde9d411824e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_f9c81ca764bcccc2fc5ecde9d411824e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4129, 'big_faf3251353c2de5cf6b1113f9550eea6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/big_faf3251353c2de5cf6b1113f9550eea6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4130, 'c44d24da0b728b4aaee6cd4c8aed92c0.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/c44d24da0b728b4aaee6cd4c8aed92c0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4131, 'c88965f2844d7b68f3b25aa598dc7dec.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/c88965f2844d7b68f3b25aa598dc7dec.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4132, 'c90caa5e6adfe69bac84281193d8fd3e.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/c90caa5e6adfe69bac84281193d8fd3e.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4133, 'cf5414089d598d064b0a4d7154a4f491.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/cf5414089d598d064b0a4d7154a4f491.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4134, 'd434773d91b3e3a6b7f4756c0044410a.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/d434773d91b3e3a6b7f4756c0044410a.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4135, 'e1b434ef85145430b8bd1a93528c1e26.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/e1b434ef85145430b8bd1a93528c1e26.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4136, 'e91ef8d30ee780f84c5966649117bcba.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/e91ef8d30ee780f84c5966649117bcba.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4137, 'f661601e3828cf926275b6743e6cd815.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/f661601e3828cf926275b6743e6cd815.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4138, 'f9c81ca764bcccc2fc5ecde9d411824e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/f9c81ca764bcccc2fc5ecde9d411824e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4139, 'faf3251353c2de5cf6b1113f9550eea6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/faf3251353c2de5cf6b1113f9550eea6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4140, 'mid_01c69f26a1f0347316be619dabc8d9eb.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_01c69f26a1f0347316be619dabc8d9eb.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4141, 'mid_061b76d2c9f5cd43201f248f53be5d46.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_061b76d2c9f5cd43201f248f53be5d46.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4142, 'mid_080bad1fc75b2c68abf8f55eb6560608.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_080bad1fc75b2c68abf8f55eb6560608.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4143, 'mid_10801cb0049c2d8fb34754ef7c1ce54f.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_10801cb0049c2d8fb34754ef7c1ce54f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4144, 'mid_11ae9e1404f77bd921ee990108d10720.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_11ae9e1404f77bd921ee990108d10720.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4145, 'mid_1759437a06bd9d54b3c2c09336d25f44.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_1759437a06bd9d54b3c2c09336d25f44.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4146, 'mid_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4147, 'mid_2420d4bf274addf6286f6cd3be0ccf60.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_2420d4bf274addf6286f6cd3be0ccf60.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4148, 'mid_2bccb77e23f60bd993f80895f7e278d7.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_2bccb77e23f60bd993f80895f7e278d7.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4149, 'mid_3b570808fc3593aa51b2a94ceaba3e6f.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_3b570808fc3593aa51b2a94ceaba3e6f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4150, 'mid_3c49ade797d647b41412e06805a33fb6.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_3c49ade797d647b41412e06805a33fb6.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4151, 'mid_3e1e810aad648bd4449b3a01d738a52a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_3e1e810aad648bd4449b3a01d738a52a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4152, 'mid_542267cb5f660e19c6647a71913c5624.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_542267cb5f660e19c6647a71913c5624.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4153, 'mid_58df0d104288e168a4efdbcdbebcfd33.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_58df0d104288e168a4efdbcdbebcfd33.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4154, 'mid_5a9b500b393066f1322603456f142a2a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_5a9b500b393066f1322603456f142a2a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4155, 'mid_5ae4f6a3f8bf153beb849e02e14b5c40.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_5ae4f6a3f8bf153beb849e02e14b5c40.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4156, 'mid_5aea4687e62d39793ba63161eacf6661.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_5aea4687e62d39793ba63161eacf6661.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4157, 'mid_5b64e6584c06020347a5fa58af79d42a.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_5b64e6584c06020347a5fa58af79d42a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4158, 'mid_62c718b8f546c0e601fbc00b63e63be2.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_62c718b8f546c0e601fbc00b63e63be2.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4159, 'mid_6884c812a8fe9ef1af4679a3831b2d51.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_6884c812a8fe9ef1af4679a3831b2d51.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4160, 'mid_68a662d8f1d0869337ca98ecd2befe55.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_68a662d8f1d0869337ca98ecd2befe55.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4161, 'mid_75b6b32021bc79734ceb90f0be0b2c14.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_75b6b32021bc79734ceb90f0be0b2c14.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4162, 'mid_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4163, 'mid_99f7775c5c34da1fac55cd80504ec0d8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_99f7775c5c34da1fac55cd80504ec0d8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4164, 'mid_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4165, 'mid_a7cfed80049c0d051988da434d5553b6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_a7cfed80049c0d051988da434d5553b6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4166, 'mid_adb54a4da6288f89722872d54ff4994e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_adb54a4da6288f89722872d54ff4994e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4167, 'mid_afebd475d8c9c75ec8661504abf1c3b8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_afebd475d8c9c75ec8661504abf1c3b8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4168, 'mid_b5adf91569e82e49be720f2f70238ea1.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_b5adf91569e82e49be720f2f70238ea1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4169, 'mid_b9be2305fef6a3ce47792d624926c952.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_b9be2305fef6a3ce47792d624926c952.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4170, 'mid_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4171, 'mid_c88965f2844d7b68f3b25aa598dc7dec.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_c88965f2844d7b68f3b25aa598dc7dec.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4172, 'mid_c90caa5e6adfe69bac84281193d8fd3e.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_c90caa5e6adfe69bac84281193d8fd3e.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4173, 'mid_cf5414089d598d064b0a4d7154a4f491.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_cf5414089d598d064b0a4d7154a4f491.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4174, 'mid_d434773d91b3e3a6b7f4756c0044410a.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_d434773d91b3e3a6b7f4756c0044410a.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4175, 'mid_e1b434ef85145430b8bd1a93528c1e26.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_e1b434ef85145430b8bd1a93528c1e26.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4176, 'mid_e91ef8d30ee780f84c5966649117bcba.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_e91ef8d30ee780f84c5966649117bcba.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4177, 'mid_f661601e3828cf926275b6743e6cd815.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_f661601e3828cf926275b6743e6cd815.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4178, 'mid_f9c81ca764bcccc2fc5ecde9d411824e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_f9c81ca764bcccc2fc5ecde9d411824e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4179, 'mid_faf3251353c2de5cf6b1113f9550eea6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/mid_faf3251353c2de5cf6b1113f9550eea6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4180, 'small_01c69f26a1f0347316be619dabc8d9eb.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_01c69f26a1f0347316be619dabc8d9eb.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4181, 'small_061b76d2c9f5cd43201f248f53be5d46.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_061b76d2c9f5cd43201f248f53be5d46.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4182, 'small_080bad1fc75b2c68abf8f55eb6560608.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_080bad1fc75b2c68abf8f55eb6560608.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4183, 'small_10801cb0049c2d8fb34754ef7c1ce54f.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_10801cb0049c2d8fb34754ef7c1ce54f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4184, 'small_11ae9e1404f77bd921ee990108d10720.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_11ae9e1404f77bd921ee990108d10720.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4185, 'small_1759437a06bd9d54b3c2c09336d25f44.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_1759437a06bd9d54b3c2c09336d25f44.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4186, 'small_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_23fbc5512b9bc9f8b2cd22065dbe3a57.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4187, 'small_2420d4bf274addf6286f6cd3be0ccf60.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_2420d4bf274addf6286f6cd3be0ccf60.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4188, 'small_2bccb77e23f60bd993f80895f7e278d7.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_2bccb77e23f60bd993f80895f7e278d7.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4189, 'small_3b570808fc3593aa51b2a94ceaba3e6f.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_3b570808fc3593aa51b2a94ceaba3e6f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4190, 'small_3c49ade797d647b41412e06805a33fb6.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_3c49ade797d647b41412e06805a33fb6.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4191, 'small_3e1e810aad648bd4449b3a01d738a52a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_3e1e810aad648bd4449b3a01d738a52a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4192, 'small_542267cb5f660e19c6647a71913c5624.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_542267cb5f660e19c6647a71913c5624.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4193, 'small_58df0d104288e168a4efdbcdbebcfd33.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_58df0d104288e168a4efdbcdbebcfd33.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4194, 'small_5a9b500b393066f1322603456f142a2a.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_5a9b500b393066f1322603456f142a2a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4195, 'small_5ae4f6a3f8bf153beb849e02e14b5c40.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_5ae4f6a3f8bf153beb849e02e14b5c40.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4196, 'small_5aea4687e62d39793ba63161eacf6661.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_5aea4687e62d39793ba63161eacf6661.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4197, 'small_5b64e6584c06020347a5fa58af79d42a.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_5b64e6584c06020347a5fa58af79d42a.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4198, 'small_62c718b8f546c0e601fbc00b63e63be2.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_62c718b8f546c0e601fbc00b63e63be2.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4199, 'small_6884c812a8fe9ef1af4679a3831b2d51.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_6884c812a8fe9ef1af4679a3831b2d51.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4200, 'small_68a662d8f1d0869337ca98ecd2befe55.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_68a662d8f1d0869337ca98ecd2befe55.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4201, 'small_75b6b32021bc79734ceb90f0be0b2c14.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_75b6b32021bc79734ceb90f0be0b2c14.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4202, 'small_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_895d5edf7eaf8d0f2c69fc34f30749e3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4203, 'small_99f7775c5c34da1fac55cd80504ec0d8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_99f7775c5c34da1fac55cd80504ec0d8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4204, 'small_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_a70f32ce8df0c0a73ea82a7a7da11c3b.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4205, 'small_a7cfed80049c0d051988da434d5553b6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_a7cfed80049c0d051988da434d5553b6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4206, 'small_adb54a4da6288f89722872d54ff4994e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_adb54a4da6288f89722872d54ff4994e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4207, 'small_afebd475d8c9c75ec8661504abf1c3b8.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_afebd475d8c9c75ec8661504abf1c3b8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4208, 'small_b5adf91569e82e49be720f2f70238ea1.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_b5adf91569e82e49be720f2f70238ea1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4209, 'small_b9be2305fef6a3ce47792d624926c952.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_b9be2305fef6a3ce47792d624926c952.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4210, 'small_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_c44d24da0b728b4aaee6cd4c8aed92c0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4211, 'small_c88965f2844d7b68f3b25aa598dc7dec.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_c88965f2844d7b68f3b25aa598dc7dec.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4212, 'small_c90caa5e6adfe69bac84281193d8fd3e.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_c90caa5e6adfe69bac84281193d8fd3e.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4213, 'small_cf5414089d598d064b0a4d7154a4f491.png', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_cf5414089d598d064b0a4d7154a4f491.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4214, 'small_d434773d91b3e3a6b7f4756c0044410a.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_d434773d91b3e3a6b7f4756c0044410a.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4215, 'small_e1b434ef85145430b8bd1a93528c1e26.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_e1b434ef85145430b8bd1a93528c1e26.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4216, 'small_e91ef8d30ee780f84c5966649117bcba.jpeg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_e91ef8d30ee780f84c5966649117bcba.jpeg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4217, 'small_f661601e3828cf926275b6743e6cd815.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_f661601e3828cf926275b6743e6cd815.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4218, 'small_f9c81ca764bcccc2fc5ecde9d411824e.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_f9c81ca764bcccc2fc5ecde9d411824e.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4219, 'small_faf3251353c2de5cf6b1113f9550eea6.jpg', '/public/uploads/attach/2023/02/20230213', '/public/uploads/attach/2023/02/20230213/small_faf3251353c2de5cf6b1113f9550eea6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4220, '20230215', '/public/uploads/attach/2023/02', '/public/uploads/attach/2023/02/20230215', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4221, '0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4222, '09ef9d23b0b559714672d1438608422c.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/09ef9d23b0b559714672d1438608422c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4223, '1109cd6ddff02f61a4dfcac584e53952.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/1109cd6ddff02f61a4dfcac584e53952.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4224, '21887584064b02ad7f2dfb432e18f7c1.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/21887584064b02ad7f2dfb432e18f7c1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4225, '2657f505e0229de1531a8ebb9cbf80bb.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/2657f505e0229de1531a8ebb9cbf80bb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4226, '373a3c9241329d91fdc2c6543479d922.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/373a3c9241329d91fdc2c6543479d922.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4227, '571e43d36aff92d990a6558aef9f8b4f.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/571e43d36aff92d990a6558aef9f8b4f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4228, '58fa876b83dd76b00208f0b441682a48.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/58fa876b83dd76b00208f0b441682a48.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4229, '744211aa7990da47780ac48f4a85e705.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/744211aa7990da47780ac48f4a85e705.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4230, '7ba82cda74d6632df30ea997c3695f8b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/7ba82cda74d6632df30ea997c3695f8b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4231, '846aaba3f32b030a3d090a1b3e16563f.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/846aaba3f32b030a3d090a1b3e16563f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4232, '8634bcfc0e07137c1b6fd33c286e3cd3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/8634bcfc0e07137c1b6fd33c286e3cd3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4233, '93d236af3e3b6fa3dd1b4eb68be0bf43.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/93d236af3e3b6fa3dd1b4eb68be0bf43.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4234, 'a10b02faad102a90d245f94c77961d7b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/a10b02faad102a90d245f94c77961d7b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4235, 'ad6388b565f2e922459193ae50b98409.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/ad6388b565f2e922459193ae50b98409.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4236, 'b8c16ea2a3256c50c52d643d4316690d.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/b8c16ea2a3256c50c52d643d4316690d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4237, 'big_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4238, 'big_09ef9d23b0b559714672d1438608422c.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_09ef9d23b0b559714672d1438608422c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4239, 'big_1109cd6ddff02f61a4dfcac584e53952.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_1109cd6ddff02f61a4dfcac584e53952.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4240, 'big_21887584064b02ad7f2dfb432e18f7c1.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_21887584064b02ad7f2dfb432e18f7c1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4241, 'big_2657f505e0229de1531a8ebb9cbf80bb.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_2657f505e0229de1531a8ebb9cbf80bb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4242, 'big_373a3c9241329d91fdc2c6543479d922.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_373a3c9241329d91fdc2c6543479d922.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4243, 'big_571e43d36aff92d990a6558aef9f8b4f.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_571e43d36aff92d990a6558aef9f8b4f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4244, 'big_58fa876b83dd76b00208f0b441682a48.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_58fa876b83dd76b00208f0b441682a48.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4245, 'big_744211aa7990da47780ac48f4a85e705.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_744211aa7990da47780ac48f4a85e705.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4246, 'big_7ba82cda74d6632df30ea997c3695f8b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_7ba82cda74d6632df30ea997c3695f8b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4247, 'big_846aaba3f32b030a3d090a1b3e16563f.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_846aaba3f32b030a3d090a1b3e16563f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4248, 'big_8634bcfc0e07137c1b6fd33c286e3cd3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_8634bcfc0e07137c1b6fd33c286e3cd3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4249, 'big_93d236af3e3b6fa3dd1b4eb68be0bf43.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_93d236af3e3b6fa3dd1b4eb68be0bf43.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4250, 'big_a10b02faad102a90d245f94c77961d7b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_a10b02faad102a90d245f94c77961d7b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4251, 'big_ad6388b565f2e922459193ae50b98409.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_ad6388b565f2e922459193ae50b98409.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4252, 'big_b8c16ea2a3256c50c52d643d4316690d.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_b8c16ea2a3256c50c52d643d4316690d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4253, 'big_cbc0349c13a3cc62416222beda4f7d98.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_cbc0349c13a3cc62416222beda4f7d98.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4254, 'big_cf754595c9fe1a63460e0ddee6177467.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_cf754595c9fe1a63460e0ddee6177467.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4255, 'big_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4256, 'big_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4257, 'big_da71fa631e8fd8eee75d6ddf2d183149.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_da71fa631e8fd8eee75d6ddf2d183149.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4258, 'big_e81a4b8ea345d061ed2d3806a718d6be.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_e81a4b8ea345d061ed2d3806a718d6be.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4259, 'big_ecad6b5e5c68351568f350dd561dd5b3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_ecad6b5e5c68351568f350dd561dd5b3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4260, 'big_ef39bf5d94bf554d07c825baa124f951.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_ef39bf5d94bf554d07c825baa124f951.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4261, 'big_fd0c4bda482619c96f955d5d45568d08.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/big_fd0c4bda482619c96f955d5d45568d08.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4262, 'cbc0349c13a3cc62416222beda4f7d98.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/cbc0349c13a3cc62416222beda4f7d98.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4263, 'cf754595c9fe1a63460e0ddee6177467.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/cf754595c9fe1a63460e0ddee6177467.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4264, 'd0e891f63be13b9f46ffdaf7140cb5a0.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/d0e891f63be13b9f46ffdaf7140cb5a0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4265, 'd6bfd7015d6176d6b9ed04fa98a3872a.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/d6bfd7015d6176d6b9ed04fa98a3872a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4266, 'da71fa631e8fd8eee75d6ddf2d183149.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/da71fa631e8fd8eee75d6ddf2d183149.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4267, 'e81a4b8ea345d061ed2d3806a718d6be.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/e81a4b8ea345d061ed2d3806a718d6be.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4268, 'ecad6b5e5c68351568f350dd561dd5b3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/ecad6b5e5c68351568f350dd561dd5b3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4269, 'ef39bf5d94bf554d07c825baa124f951.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/ef39bf5d94bf554d07c825baa124f951.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4270, 'fd0c4bda482619c96f955d5d45568d08.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/fd0c4bda482619c96f955d5d45568d08.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4271, 'mid_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4272, 'mid_09ef9d23b0b559714672d1438608422c.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_09ef9d23b0b559714672d1438608422c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4273, 'mid_1109cd6ddff02f61a4dfcac584e53952.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_1109cd6ddff02f61a4dfcac584e53952.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4274, 'mid_21887584064b02ad7f2dfb432e18f7c1.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_21887584064b02ad7f2dfb432e18f7c1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4275, 'mid_2657f505e0229de1531a8ebb9cbf80bb.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_2657f505e0229de1531a8ebb9cbf80bb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4276, 'mid_373a3c9241329d91fdc2c6543479d922.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_373a3c9241329d91fdc2c6543479d922.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4277, 'mid_571e43d36aff92d990a6558aef9f8b4f.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_571e43d36aff92d990a6558aef9f8b4f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4278, 'mid_58fa876b83dd76b00208f0b441682a48.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_58fa876b83dd76b00208f0b441682a48.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4279, 'mid_744211aa7990da47780ac48f4a85e705.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_744211aa7990da47780ac48f4a85e705.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4280, 'mid_7ba82cda74d6632df30ea997c3695f8b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_7ba82cda74d6632df30ea997c3695f8b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4281, 'mid_846aaba3f32b030a3d090a1b3e16563f.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_846aaba3f32b030a3d090a1b3e16563f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4282, 'mid_8634bcfc0e07137c1b6fd33c286e3cd3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_8634bcfc0e07137c1b6fd33c286e3cd3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4283, 'mid_93d236af3e3b6fa3dd1b4eb68be0bf43.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_93d236af3e3b6fa3dd1b4eb68be0bf43.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4284, 'mid_a10b02faad102a90d245f94c77961d7b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_a10b02faad102a90d245f94c77961d7b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4285, 'mid_ad6388b565f2e922459193ae50b98409.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_ad6388b565f2e922459193ae50b98409.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4286, 'mid_b8c16ea2a3256c50c52d643d4316690d.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_b8c16ea2a3256c50c52d643d4316690d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4287, 'mid_cbc0349c13a3cc62416222beda4f7d98.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_cbc0349c13a3cc62416222beda4f7d98.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4288, 'mid_cf754595c9fe1a63460e0ddee6177467.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_cf754595c9fe1a63460e0ddee6177467.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4289, 'mid_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4290, 'mid_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4291, 'mid_da71fa631e8fd8eee75d6ddf2d183149.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_da71fa631e8fd8eee75d6ddf2d183149.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4292, 'mid_e81a4b8ea345d061ed2d3806a718d6be.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_e81a4b8ea345d061ed2d3806a718d6be.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4293, 'mid_ecad6b5e5c68351568f350dd561dd5b3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_ecad6b5e5c68351568f350dd561dd5b3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4294, 'mid_ef39bf5d94bf554d07c825baa124f951.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_ef39bf5d94bf554d07c825baa124f951.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4295, 'mid_fd0c4bda482619c96f955d5d45568d08.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/mid_fd0c4bda482619c96f955d5d45568d08.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4296, 'small_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_0442fa1c0b48ac579bce3bb0b86d7cc1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4297, 'small_09ef9d23b0b559714672d1438608422c.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_09ef9d23b0b559714672d1438608422c.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4298, 'small_1109cd6ddff02f61a4dfcac584e53952.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_1109cd6ddff02f61a4dfcac584e53952.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4299, 'small_21887584064b02ad7f2dfb432e18f7c1.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_21887584064b02ad7f2dfb432e18f7c1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4300, 'small_2657f505e0229de1531a8ebb9cbf80bb.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_2657f505e0229de1531a8ebb9cbf80bb.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4301, 'small_373a3c9241329d91fdc2c6543479d922.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_373a3c9241329d91fdc2c6543479d922.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4302, 'small_571e43d36aff92d990a6558aef9f8b4f.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_571e43d36aff92d990a6558aef9f8b4f.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4303, 'small_58fa876b83dd76b00208f0b441682a48.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_58fa876b83dd76b00208f0b441682a48.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4304, 'small_744211aa7990da47780ac48f4a85e705.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_744211aa7990da47780ac48f4a85e705.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4305, 'small_7ba82cda74d6632df30ea997c3695f8b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_7ba82cda74d6632df30ea997c3695f8b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4306, 'small_846aaba3f32b030a3d090a1b3e16563f.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_846aaba3f32b030a3d090a1b3e16563f.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4307, 'small_8634bcfc0e07137c1b6fd33c286e3cd3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_8634bcfc0e07137c1b6fd33c286e3cd3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4308, 'small_93d236af3e3b6fa3dd1b4eb68be0bf43.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_93d236af3e3b6fa3dd1b4eb68be0bf43.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4309, 'small_a10b02faad102a90d245f94c77961d7b.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_a10b02faad102a90d245f94c77961d7b.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4310, 'small_ad6388b565f2e922459193ae50b98409.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_ad6388b565f2e922459193ae50b98409.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4311, 'small_b8c16ea2a3256c50c52d643d4316690d.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_b8c16ea2a3256c50c52d643d4316690d.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4312, 'small_cbc0349c13a3cc62416222beda4f7d98.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_cbc0349c13a3cc62416222beda4f7d98.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4313, 'small_cf754595c9fe1a63460e0ddee6177467.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_cf754595c9fe1a63460e0ddee6177467.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4314, 'small_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_d0e891f63be13b9f46ffdaf7140cb5a0.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4315, 'small_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_d6bfd7015d6176d6b9ed04fa98a3872a.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4316, 'small_da71fa631e8fd8eee75d6ddf2d183149.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_da71fa631e8fd8eee75d6ddf2d183149.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4317, 'small_e81a4b8ea345d061ed2d3806a718d6be.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_e81a4b8ea345d061ed2d3806a718d6be.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4318, 'small_ecad6b5e5c68351568f350dd561dd5b3.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_ecad6b5e5c68351568f350dd561dd5b3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4319, 'small_ef39bf5d94bf554d07c825baa124f951.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_ef39bf5d94bf554d07c825baa124f951.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4320, 'small_fd0c4bda482619c96f955d5d45568d08.png', '/public/uploads/attach/2023/02/20230215', '/public/uploads/attach/2023/02/20230215/small_fd0c4bda482619c96f955d5d45568d08.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4321, 'route', '', '/route', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', '路由存放'),
|
||
(4322, 'route.php', '/route', '/route/route.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', '模板加载路由'),
|
||
(4323, 'runtime', '', '/runtime', 'dir', '2023-04-27 17:28:12', '2023-04-27 17:28:12', '运行缓存目录'),
|
||
(4324, 'cache', '/runtime', '/runtime/cache', 'dir', '2023-04-27 16:46:06', '2023-04-27 16:46:06', ''),
|
||
(4325, '01', '/runtime/cache', '/runtime/cache/01', 'dir', '2023-04-27 16:05:34', '2023-04-27 16:05:34', ''),
|
||
(4326, '05', '/runtime/cache', '/runtime/cache/05', 'dir', '2023-04-26 17:46:55', '2023-04-26 17:46:55', ''),
|
||
(4327, '338fa035d57d3fb42630019d1130fb.php', '/runtime/cache/05', '/runtime/cache/05/338fa035d57d3fb42630019d1130fb.php', 'file', '2023-04-27 16:10:18', '2023-04-27 16:10:18', ''),
|
||
(4328, '08', '/runtime/cache', '/runtime/cache/08', 'dir', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4329, '19a64babb5a9f51d795cb9490db359.php', '/runtime/cache/08', '/runtime/cache/08/19a64babb5a9f51d795cb9490db359.php', 'file', '2023-04-27 17:28:12', '2023-04-27 17:28:12', ''),
|
||
(4330, '0c', '/runtime/cache', '/runtime/cache/0c', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4331, '0f', '/runtime/cache', '/runtime/cache/0f', 'dir', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4332, '33ba045f59952c027e39b7a52b2c10.php', '/runtime/cache/0f', '/runtime/cache/0f/33ba045f59952c027e39b7a52b2c10.php', 'file', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4333, '11', '/runtime/cache', '/runtime/cache/11', 'dir', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4334, '12', '/runtime/cache', '/runtime/cache/12', 'dir', '2023-04-27 17:28:12', '2023-04-27 17:28:12', ''),
|
||
(4335, '19', '/runtime/cache', '/runtime/cache/19', 'dir', '2023-04-26 17:59:07', '2023-04-26 17:59:07', ''),
|
||
(4336, 'dac29ff95bc5be393c9b57f966deac.php', '/runtime/cache/19', '/runtime/cache/19/dac29ff95bc5be393c9b57f966deac.php', 'file', '2023-04-26 17:59:07', '2023-04-26 17:59:07', ''),
|
||
(4337, '1a', '/runtime/cache', '/runtime/cache/1a', 'dir', '2023-04-27 16:43:45', '2023-04-27 16:43:45', ''),
|
||
(4338, '25', '/runtime/cache', '/runtime/cache/25', 'dir', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4339, '4c58af54a2631dd5f2df1960b0d7e8.php', '/runtime/cache/25', '/runtime/cache/25/4c58af54a2631dd5f2df1960b0d7e8.php', 'file', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4340, '28', '/runtime/cache', '/runtime/cache/28', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4341, '4b7748a0076d5a9efd80bc70b679ba.php', '/runtime/cache/28', '/runtime/cache/28/4b7748a0076d5a9efd80bc70b679ba.php', 'file', '2023-04-27 17:28:04', '2023-04-27 17:28:04', ''),
|
||
(4342, '2b', '/runtime/cache', '/runtime/cache/2b', 'dir', '2023-04-27 16:14:37', '2023-04-27 16:14:37', ''),
|
||
(4343, 'b72d0d11a420e99c364e57a17b391a.php', '/runtime/cache/2b', '/runtime/cache/2b/b72d0d11a420e99c364e57a17b391a.php', 'file', '2023-04-27 16:14:37', '2023-04-27 16:14:37', ''),
|
||
(4344, '2c', '/runtime/cache', '/runtime/cache/2c', 'dir', '2023-04-27 16:13:53', '2023-04-27 16:13:53', ''),
|
||
(4345, '2e', '/runtime/cache', '/runtime/cache/2e', 'dir', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4346, '1cc6c054df8afbca504acfc62574ba.php', '/runtime/cache/2e', '/runtime/cache/2e/1cc6c054df8afbca504acfc62574ba.php', 'file', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4347, '2f', '/runtime/cache', '/runtime/cache/2f', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4348, '33', '/runtime/cache', '/runtime/cache/33', 'dir', '2023-04-27 16:43:47', '2023-04-27 16:43:47', ''),
|
||
(4349, 'a448bea5b643cf0297a020c9e38e9e.php', '/runtime/cache/33', '/runtime/cache/33/a448bea5b643cf0297a020c9e38e9e.php', 'file', '2023-04-27 16:43:47', '2023-04-27 16:43:47', ''),
|
||
(4350, '34', '/runtime/cache', '/runtime/cache/34', 'dir', '2023-04-27 10:44:48', '2023-04-27 10:44:48', ''),
|
||
(4351, '2a3bf66af46b8196be91e3a34eca00.php', '/runtime/cache/34', '/runtime/cache/34/2a3bf66af46b8196be91e3a34eca00.php', 'file', '2023-04-27 10:44:48', '2023-04-27 10:44:48', ''),
|
||
(4352, 'f92773a92d748e67c5f5df45e13cb4.php', '/runtime/cache/34', '/runtime/cache/34/f92773a92d748e67c5f5df45e13cb4.php', 'file', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4353, '36', '/runtime/cache', '/runtime/cache/36', 'dir', '2023-04-26 17:42:19', '2023-04-26 17:42:19', ''),
|
||
(4354, '3a', '/runtime/cache', '/runtime/cache/3a', 'dir', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4355, 'ae37e4d5e297906b01c5bfd7eb6a38.php', '/runtime/cache/3a', '/runtime/cache/3a/ae37e4d5e297906b01c5bfd7eb6a38.php', 'file', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4356, '3c', '/runtime/cache', '/runtime/cache/3c', 'dir', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4357, 'acf4eade1cf867ec4f0f4d507bc82b.php', '/runtime/cache/3c', '/runtime/cache/3c/acf4eade1cf867ec4f0f4d507bc82b.php', 'file', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4358, '3d', '/runtime/cache', '/runtime/cache/3d', 'dir', '2023-04-27 10:48:06', '2023-04-27 10:48:06', ''),
|
||
(4359, '7a1884ab1907fe1cd212b24e9c3eba.php', '/runtime/cache/3d', '/runtime/cache/3d/7a1884ab1907fe1cd212b24e9c3eba.php', 'file', '2023-04-27 10:48:06', '2023-04-27 10:48:06', ''),
|
||
(4360, '41', '/runtime/cache', '/runtime/cache/41', 'dir', '2023-04-27 16:14:35', '2023-04-27 16:14:35', ''),
|
||
(4361, '47', '/runtime/cache', '/runtime/cache/47', 'dir', '2023-04-26 17:41:01', '2023-04-26 17:41:01', ''),
|
||
(4362, '0f8148635f7dede2977f496ada7067.php', '/runtime/cache/47', '/runtime/cache/47/0f8148635f7dede2977f496ada7067.php', 'file', '2023-04-26 17:41:01', '2023-04-26 17:41:01', ''),
|
||
(4363, '48', '/runtime/cache', '/runtime/cache/48', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4364, '42600f644ec940ebb51e2c98125c86.php', '/runtime/cache/48', '/runtime/cache/48/42600f644ec940ebb51e2c98125c86.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4365, '4e', '/runtime/cache', '/runtime/cache/4e', 'dir', '2023-04-27 17:28:04', '2023-04-27 17:28:04', ''),
|
||
(4366, '51', '/runtime/cache', '/runtime/cache/51', 'dir', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4367, '2477bab94465ac9155680374cf5bfd.php', '/runtime/cache/51', '/runtime/cache/51/2477bab94465ac9155680374cf5bfd.php', 'file', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4368, '52', '/runtime/cache', '/runtime/cache/52', 'dir', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4369, 'a7de5345a6445e6a80df956a34121e.php', '/runtime/cache/52', '/runtime/cache/52/a7de5345a6445e6a80df956a34121e.php', 'file', '2023-04-27 17:28:12', '2023-04-27 17:28:12', ''),
|
||
(4370, '5b', '/runtime/cache', '/runtime/cache/5b', 'dir', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4371, '5e', '/runtime/cache', '/runtime/cache/5e', 'dir', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4372, '68', '/runtime/cache', '/runtime/cache/68', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4373, '3c05af6f84ddbccb57f6b165ce6509.php', '/runtime/cache/68', '/runtime/cache/68/3c05af6f84ddbccb57f6b165ce6509.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4374, '6c', '/runtime/cache', '/runtime/cache/6c', 'dir', '2023-04-26 17:51:13', '2023-04-26 17:51:13', ''),
|
||
(4375, '6f', '/runtime/cache', '/runtime/cache/6f', 'dir', '2023-04-26 17:42:21', '2023-04-26 17:42:21', ''),
|
||
(4376, '322be631ed65fcbddd2593d0613f78.php', '/runtime/cache/6f', '/runtime/cache/6f/322be631ed65fcbddd2593d0613f78.php', 'file', '2023-04-26 17:42:21', '2023-04-26 17:42:21', ''),
|
||
(4377, '61d25b8ad6eec994500b7ad4101ae0.php', '/runtime/cache/6f', '/runtime/cache/6f/61d25b8ad6eec994500b7ad4101ae0.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4378, '9f05a9f431af1170b932e957415860.php', '/runtime/cache/6f', '/runtime/cache/6f/9f05a9f431af1170b932e957415860.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4379, 'fce858d2d7bc908824d3072a66a8a3.php', '/runtime/cache/6f', '/runtime/cache/6f/fce858d2d7bc908824d3072a66a8a3.php', 'file', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4380, '71', '/runtime/cache', '/runtime/cache/71', 'dir', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4381, 'f94b637b2155e290148165c5ba941f.php', '/runtime/cache/71', '/runtime/cache/71/f94b637b2155e290148165c5ba941f.php', 'file', '2023-04-26 17:07:26', '2023-04-26 17:07:26', ''),
|
||
(4382, '74', '/runtime/cache', '/runtime/cache/74', 'dir', '2023-04-26 17:43:05', '2023-04-26 17:43:05', ''),
|
||
(4383, '76d233e4cf5b5eeba9d49cd069fc1e.php', '/runtime/cache/74', '/runtime/cache/74/76d233e4cf5b5eeba9d49cd069fc1e.php', 'file', '2023-04-26 17:43:05', '2023-04-26 17:43:05', ''),
|
||
(4384, '76', '/runtime/cache', '/runtime/cache/76', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4385, '7b', '/runtime/cache', '/runtime/cache/7b', 'dir', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4386, '3add11153091b1d65ff3c888c70384.php', '/runtime/cache/7b', '/runtime/cache/7b/3add11153091b1d65ff3c888c70384.php', 'file', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4387, '86', '/runtime/cache', '/runtime/cache/86', 'dir', '2023-04-26 17:41:48', '2023-04-26 17:41:48', ''),
|
||
(4388, '381bf4e574726d5c52f0861fdebcca.php', '/runtime/cache/86', '/runtime/cache/86/381bf4e574726d5c52f0861fdebcca.php', 'file', '2023-04-26 17:41:48', '2023-04-26 17:41:48', ''),
|
||
(4389, '87', '/runtime/cache', '/runtime/cache/87', 'dir', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4390, '00c452888d44fdad06206c28213973.php', '/runtime/cache/87', '/runtime/cache/87/00c452888d44fdad06206c28213973.php', 'file', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4391, '88', '/runtime/cache', '/runtime/cache/88', 'dir', '2023-04-27 16:46:03', '2023-04-27 16:46:03', ''),
|
||
(4392, 'f2919c9fd41964f6eafa7d98e2807e.php', '/runtime/cache/88', '/runtime/cache/88/f2919c9fd41964f6eafa7d98e2807e.php', 'file', '2023-04-27 16:46:03', '2023-04-27 16:46:03', ''),
|
||
(4393, '8a', '/runtime/cache', '/runtime/cache/8a', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4394, '973f061c8487b9015a18ab9d4fc7f1.php', '/runtime/cache/8a', '/runtime/cache/8a/973f061c8487b9015a18ab9d4fc7f1.php', 'file', '2023-04-27 17:29:17', '2023-04-27 17:29:17', ''),
|
||
(4395, '8b', '/runtime/cache', '/runtime/cache/8b', 'dir', '2023-04-27 09:40:57', '2023-04-27 09:40:57', ''),
|
||
(4396, 'a536f6e6c52396e033f5390e97031e.php', '/runtime/cache/8b', '/runtime/cache/8b/a536f6e6c52396e033f5390e97031e.php', 'file', '2023-04-27 09:40:57', '2023-04-27 09:40:57', ''),
|
||
(4397, '91', '/runtime/cache', '/runtime/cache/91', 'dir', '2023-04-26 17:59:02', '2023-04-26 17:59:02', ''),
|
||
(4398, 'afddb175241028bbe8e4f5870e740e.php', '/runtime/cache/91', '/runtime/cache/91/afddb175241028bbe8e4f5870e740e.php', 'file', '2023-04-26 17:15:14', '2023-04-26 17:15:14', ''),
|
||
(4399, '92', '/runtime/cache', '/runtime/cache/92', 'dir', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4400, 'a2878ec93d8d763c2e5ec7dfa672d6.php', '/runtime/cache/92', '/runtime/cache/92/a2878ec93d8d763c2e5ec7dfa672d6.php', 'file', '2023-04-26 17:38:02', '2023-04-26 17:38:02', ''),
|
||
(4401, '93', '/runtime/cache', '/runtime/cache/93', 'dir', '2023-04-26 17:59:22', '2023-04-26 17:59:22', ''),
|
||
(4402, '96', '/runtime/cache', '/runtime/cache/96', 'dir', '2023-04-26 17:41:02', '2023-04-26 17:41:02', ''),
|
||
(4403, '2f4fa7ba5d367ab98b34b7db3ea62d.php', '/runtime/cache/96', '/runtime/cache/96/2f4fa7ba5d367ab98b34b7db3ea62d.php', 'file', '2023-04-26 17:41:02', '2023-04-26 17:41:02', ''),
|
||
(4404, '99', '/runtime/cache', '/runtime/cache/99', 'dir', '2023-04-26 17:51:16', '2023-04-26 17:51:16', ''),
|
||
(4405, '4db31b9c1ccdc018ac209204cdab2f.php', '/runtime/cache/99', '/runtime/cache/99/4db31b9c1ccdc018ac209204cdab2f.php', 'file', '2023-04-26 17:51:16', '2023-04-26 17:51:16', ''),
|
||
(4406, '9f', '/runtime/cache', '/runtime/cache/9f', 'dir', '2023-04-26 17:59:04', '2023-04-26 17:59:04', ''),
|
||
(4407, 'ada3fb7d99b5652eb144c15e645fdf.php', '/runtime/cache/9f', '/runtime/cache/9f/ada3fb7d99b5652eb144c15e645fdf.php', 'file', '2023-04-26 17:59:04', '2023-04-26 17:59:04', ''),
|
||
(4408, 'a1', '/runtime/cache', '/runtime/cache/a1', 'dir', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4409, 'f3e6351250daaa9c690611f9216b93.php', '/runtime/cache/a1', '/runtime/cache/a1/f3e6351250daaa9c690611f9216b93.php', 'file', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4410, 'a6', '/runtime/cache', '/runtime/cache/a6', 'dir', '2023-04-26 17:59:22', '2023-04-26 17:59:22', ''),
|
||
(4411, '9a05417015adb6389fc64b77f24c19.php', '/runtime/cache/a6', '/runtime/cache/a6/9a05417015adb6389fc64b77f24c19.php', 'file', '2023-04-26 17:59:22', '2023-04-26 17:59:22', ''),
|
||
(4412, 'a8', '/runtime/cache', '/runtime/cache/a8', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4413, '91376e32151920c12f1a0db68f807a.php', '/runtime/cache/a8', '/runtime/cache/a8/91376e32151920c12f1a0db68f807a.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4414, 'ad', '/runtime/cache', '/runtime/cache/ad', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4415, 'ae', '/runtime/cache', '/runtime/cache/ae', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4416, 'ece7e0b6d6a81f705034c128c92ddb.php', '/runtime/cache/ae', '/runtime/cache/ae/ece7e0b6d6a81f705034c128c92ddb.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4417, 'b0', '/runtime/cache', '/runtime/cache/b0', 'dir', '2023-04-26 17:41:46', '2023-04-26 17:41:46', ''),
|
||
(4418, '2531ec9f28379a25086219084127ab.php', '/runtime/cache/b0', '/runtime/cache/b0/2531ec9f28379a25086219084127ab.php', 'file', '2023-04-27 17:27:56', '2023-04-27 17:27:56', ''),
|
||
(4419, 'b2', '/runtime/cache', '/runtime/cache/b2', 'dir', '2023-04-27 10:44:45', '2023-04-27 10:44:45', ''),
|
||
(4420, 'b8', '/runtime/cache', '/runtime/cache/b8', 'dir', '2023-04-27 10:47:48', '2023-04-27 10:47:48', ''),
|
||
(4421, '3d8e2122e7793ad48eb092df769047.php', '/runtime/cache/b8', '/runtime/cache/b8/3d8e2122e7793ad48eb092df769047.php', 'file', '2023-04-27 10:47:48', '2023-04-27 10:47:48', ''),
|
||
(4422, 'bc', '/runtime/cache', '/runtime/cache/bc', 'dir', '2023-04-27 10:47:45', '2023-04-27 10:47:45', ''),
|
||
(4423, '1d101a59ff21c2a1436c579677b63e.php', '/runtime/cache/bc', '/runtime/cache/bc/1d101a59ff21c2a1436c579677b63e.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4424, 'bd', '/runtime/cache', '/runtime/cache/bd', 'dir', '2023-04-26 17:42:57', '2023-04-26 17:42:57', ''),
|
||
(4425, 'bf', '/runtime/cache', '/runtime/cache/bf', 'dir', '2023-04-27 10:48:06', '2023-04-27 10:48:06', ''),
|
||
(4426, 'c8', '/runtime/cache', '/runtime/cache/c8', 'dir', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4427, '21967bda085b4162c27c41c20950d1.php', '/runtime/cache/c8', '/runtime/cache/c8/21967bda085b4162c27c41c20950d1.php', 'file', '2023-04-27 17:05:18', '2023-04-27 17:05:18', ''),
|
||
(4428, 'd0', '/runtime/cache', '/runtime/cache/d0', 'dir', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4429, '3887ef77482750384804b01eff4bbd.php', '/runtime/cache/d0', '/runtime/cache/d0/3887ef77482750384804b01eff4bbd.php', 'file', '2023-04-26 17:15:06', '2023-04-26 17:15:06', ''),
|
||
(4430, 'd2', '/runtime/cache', '/runtime/cache/d2', 'dir', '2023-04-26 17:46:50', '2023-04-26 17:46:50', ''),
|
||
(4431, '66a5390bc0c6716f5533163dc4bf8e.php', '/runtime/cache/d2', '/runtime/cache/d2/66a5390bc0c6716f5533163dc4bf8e.php', 'file', '2023-04-26 17:46:50', '2023-04-26 17:46:50', ''),
|
||
(4432, 'd4', '/runtime/cache', '/runtime/cache/d4', 'dir', '2023-04-26 17:38:00', '2023-04-26 17:38:00', ''),
|
||
(4433, 'd6', '/runtime/cache', '/runtime/cache/d6', 'dir', '2023-04-27 16:46:01', '2023-04-27 16:46:01', ''),
|
||
(4434, 'd8', '/runtime/cache', '/runtime/cache/d8', 'dir', '2023-04-27 17:28:05', '2023-04-27 17:28:05', ''),
|
||
(4435, '41c82502b2c78e592944db7dbd02e8.php', '/runtime/cache/d8', '/runtime/cache/d8/41c82502b2c78e592944db7dbd02e8.php', 'file', '2023-04-27 17:28:05', '2023-04-27 17:28:05', ''),
|
||
(4436, 'f37b5da5da7f309374026a3a47d995.php', '/runtime/cache/d8', '/runtime/cache/d8/f37b5da5da7f309374026a3a47d995.php', 'file', '2023-04-27 16:13:54', '2023-04-27 16:13:54', ''),
|
||
(4437, 'da', '/runtime/cache', '/runtime/cache/da', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4438, 'bf37b517e728399181d711effecbe5.php', '/runtime/cache/da', '/runtime/cache/da/bf37b517e728399181d711effecbe5.php', 'file', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4439, 'dc', '/runtime/cache', '/runtime/cache/dc', 'dir', '2023-04-27 17:28:12', '2023-04-27 17:28:12', ''),
|
||
(4440, '835e21ecdb3504dcaa8e8dddceb68e.php', '/runtime/cache/dc', '/runtime/cache/dc/835e21ecdb3504dcaa8e8dddceb68e.php', 'file', '2023-04-27 17:28:12', '2023-04-27 17:28:12', ''),
|
||
(4441, 'df', '/runtime/cache', '/runtime/cache/df', 'dir', '2023-04-26 17:41:02', '2023-04-26 17:41:02', ''),
|
||
(4442, 'fab6267fd22274c4deaeb6e91505ea.php', '/runtime/cache/df', '/runtime/cache/df/fab6267fd22274c4deaeb6e91505ea.php', 'file', '2023-04-26 17:41:02', '2023-04-26 17:41:02', ''),
|
||
(4443, 'e0', '/runtime/cache', '/runtime/cache/e0', 'dir', '2023-04-27 10:44:55', '2023-04-27 10:44:55', ''),
|
||
(4444, 'e7', '/runtime/cache', '/runtime/cache/e7', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4445, 'e8', '/runtime/cache', '/runtime/cache/e8', 'dir', '2023-04-27 10:48:06', '2023-04-27 10:48:06', ''),
|
||
(4446, '26a0b97c5b61e06f975500532cf306.php', '/runtime/cache/e8', '/runtime/cache/e8/26a0b97c5b61e06f975500532cf306.php', 'file', '2023-04-26 17:38:00', '2023-04-26 17:38:00', ''),
|
||
(4447, 'ee60b657bb310773abbf5b99c23a11.php', '/runtime/cache/e8', '/runtime/cache/e8/ee60b657bb310773abbf5b99c23a11.php', 'file', '2023-04-27 10:48:06', '2023-04-27 10:48:06', ''),
|
||
(4448, 'e9', '/runtime/cache', '/runtime/cache/e9', 'dir', '2023-04-27 16:05:36', '2023-04-27 16:05:36', ''),
|
||
(4449, '03b86a0f0ce2bc919d356e8e225765.php', '/runtime/cache/e9', '/runtime/cache/e9/03b86a0f0ce2bc919d356e8e225765.php', 'file', '2023-04-27 16:05:36', '2023-04-27 16:05:36', ''),
|
||
(4450, '43d6c483dd1ea40a20f287c36355bd.php', '/runtime/cache/e9', '/runtime/cache/e9/43d6c483dd1ea40a20f287c36355bd.php', 'file', '2023-04-26 17:41:47', '2023-04-26 17:41:47', ''),
|
||
(4451, '60e2e72f5cde74d37aefef9ea3bf65.php', '/runtime/cache/e9', '/runtime/cache/e9/60e2e72f5cde74d37aefef9ea3bf65.php', 'file', '2023-04-26 17:41:01', '2023-04-26 17:41:01', ''),
|
||
(4452, 'f79a1f07de97b7aaaaffa6266b2ef9.php', '/runtime/cache/e9', '/runtime/cache/e9/f79a1f07de97b7aaaaffa6266b2ef9.php', 'file', '2023-04-27 17:28:04', '2023-04-27 17:28:04', ''),
|
||
(4453, 'ed', '/runtime/cache', '/runtime/cache/ed', 'dir', '2023-04-26 17:37:59', '2023-04-26 17:37:59', ''),
|
||
(4454, 'c9e94b4b571fb8008b5f5fff1c09f4.php', '/runtime/cache/ed', '/runtime/cache/ed/c9e94b4b571fb8008b5f5fff1c09f4.php', 'file', '2023-04-27 17:27:56', '2023-04-27 17:27:56', ''),
|
||
(4455, 'f3', '/runtime/cache', '/runtime/cache/f3', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4456, 'f8', '/runtime/cache', '/runtime/cache/f8', 'dir', '2023-04-26 17:42:21', '2023-04-26 17:42:21', ''),
|
||
(4457, 'f15c7c463cf74e34a9f4893e999b54.php', '/runtime/cache/f8', '/runtime/cache/f8/f15c7c463cf74e34a9f4893e999b54.php', 'file', '2023-04-26 17:42:21', '2023-04-26 17:42:21', ''),
|
||
(4458, 'fa', '/runtime/cache', '/runtime/cache/fa', 'dir', '2023-04-26 17:42:59', '2023-04-26 17:42:59', ''),
|
||
(4459, '974850e14bdfa2898e227388d206e0.php', '/runtime/cache/fa', '/runtime/cache/fa/974850e14bdfa2898e227388d206e0.php', 'file', '2023-04-26 17:42:59', '2023-04-26 17:42:59', ''),
|
||
(4460, 'fc', '/runtime/cache', '/runtime/cache/fc', 'dir', '2023-04-26 17:42:58', '2023-04-26 17:42:58', ''),
|
||
(4461, '3b0344c2ebd4124d96a4d7d88ea273.php', '/runtime/cache/fc', '/runtime/cache/fc/3b0344c2ebd4124d96a4d7d88ea273.php', 'file', '2023-04-26 17:42:58', '2023-04-26 17:42:58', ''),
|
||
(4462, 'fe', '/runtime/cache', '/runtime/cache/fe', 'dir', '2023-04-27 17:28:03', '2023-04-27 17:28:03', ''),
|
||
(4463, 'log', '/runtime', '/runtime/log', 'dir', '2023-04-27 05:05:48', '2023-04-27 05:05:48', ''),
|
||
(4464, '20230426.log', '/runtime/log', '/runtime/log/20230426.log', 'file', '2023-04-26 19:21:16', '2023-04-26 19:21:16', ''),
|
||
(4465, '20230427.log', '/runtime/log', '/runtime/log/20230427.log', 'file', '2023-04-27 17:46:11', '2023-04-27 17:46:11', ''),
|
||
(4466, 'readme.md', '/runtime', '/runtime/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4467, 'session', '/runtime', '/runtime/session', 'dir', '2023-04-26 17:07:24', '2023-04-26 17:07:24', ''),
|
||
(4468, 'temp', '/runtime', '/runtime/temp', 'dir', '2023-04-27 05:05:48', '2023-04-27 05:05:48', ''),
|
||
(4469, '4c0d6c7fef8b3151e174f67374774209.php', '/runtime/temp', '/runtime/temp/4c0d6c7fef8b3151e174f67374774209.php', 'file', '2023-04-26 17:15:04', '2023-04-26 17:15:04', ''),
|
||
(4470, '7c42a92c9556426ce1c936ca18982784.php', '/runtime/temp', '/runtime/temp/7c42a92c9556426ce1c936ca18982784.php', 'file', '2023-04-27 05:05:48', '2023-04-27 05:05:48', ''),
|
||
(4471, '9d14606eb216e92f8c91c9c362b23ae2.php', '/runtime/temp', '/runtime/temp/9d14606eb216e92f8c91c9c362b23ae2.php', 'file', '2023-04-26 17:14:53', '2023-04-26 17:14:53', ''),
|
||
(4472, 'think', '', '/think', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', 'think命令号入口'),
|
||
(4473, 'vendor', '', '/vendor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', '扩展目录'),
|
||
(4474, 'adbario', '/vendor', '/vendor/adbario', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4475, 'php-dot-notation', '/vendor/adbario', '/vendor/adbario/php-dot-notation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4476, 'LICENSE.md', '/vendor/adbario/php-dot-notation', '/vendor/adbario/php-dot-notation/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4477, 'composer.json', '/vendor/adbario/php-dot-notation', '/vendor/adbario/php-dot-notation/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4478, 'src', '/vendor/adbario/php-dot-notation', '/vendor/adbario/php-dot-notation/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4479, 'Dot.php', '/vendor/adbario/php-dot-notation/src', '/vendor/adbario/php-dot-notation/src/Dot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4480, 'helpers.php', '/vendor/adbario/php-dot-notation/src', '/vendor/adbario/php-dot-notation/src/helpers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4481, 'alibabacloud', '/vendor', '/vendor/alibabacloud', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4482, 'credentials', '/vendor/alibabacloud', '/vendor/alibabacloud/credentials', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4483, 'CHANGELOG.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4484, 'CONTRIBUTING.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4485, 'LICENSE.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4486, 'NOTICE.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/NOTICE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4487, 'README-zh-CN.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/README-zh-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4488, 'README.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4489, 'SECURITY.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4490, 'UPGRADING.md', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/UPGRADING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4491, 'composer.json', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4492, 'src', '/vendor/alibabacloud/credentials', '/vendor/alibabacloud/credentials/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4493, 'AccessKeyCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/AccessKeyCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4494, 'BearerTokenCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/BearerTokenCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4495, 'Credential', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Credential', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4496, 'Config.php', '/vendor/alibabacloud/credentials/src/Credential', '/vendor/alibabacloud/credentials/src/Credential/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4497, 'Credential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Credential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4498, 'Credentials.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Credentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4499, 'CredentialsInterface.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/CredentialsInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4500, 'EcsRamRoleCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4501, 'Filter.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Filter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4502, 'Helper.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4503, 'MockTrait.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/MockTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4504, 'Providers', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Providers', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4505, 'ChainProvider.php', '/vendor/alibabacloud/credentials/src/Providers', '/vendor/alibabacloud/credentials/src/Providers/ChainProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4506, 'EcsRamRoleProvider.php', '/vendor/alibabacloud/credentials/src/Providers', '/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4507, 'Provider.php', '/vendor/alibabacloud/credentials/src/Providers', '/vendor/alibabacloud/credentials/src/Providers/Provider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4508, 'RamRoleArnProvider.php', '/vendor/alibabacloud/credentials/src/Providers', '/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4509, 'RsaKeyPairProvider.php', '/vendor/alibabacloud/credentials/src/Providers', '/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4510, 'RamRoleArnCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4511, 'Request', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4512, 'AssumeRole.php', '/vendor/alibabacloud/credentials/src/Request', '/vendor/alibabacloud/credentials/src/Request/AssumeRole.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4513, 'GenerateSessionAccessKey.php', '/vendor/alibabacloud/credentials/src/Request', '/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4514, 'Request.php', '/vendor/alibabacloud/credentials/src/Request', '/vendor/alibabacloud/credentials/src/Request/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4515, 'RsaKeyPairCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4516, 'Signature', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/Signature', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4517, 'BearerTokenSignature.php', '/vendor/alibabacloud/credentials/src/Signature', '/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4518, 'ShaHmac1Signature.php', '/vendor/alibabacloud/credentials/src/Signature', '/vendor/alibabacloud/credentials/src/Signature/ShaHmac1Signature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4519, 'ShaHmac256Signature.php', '/vendor/alibabacloud/credentials/src/Signature', '/vendor/alibabacloud/credentials/src/Signature/ShaHmac256Signature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4520, 'ShaHmac256WithRsaSignature.php', '/vendor/alibabacloud/credentials/src/Signature', '/vendor/alibabacloud/credentials/src/Signature/ShaHmac256WithRsaSignature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4521, 'SignatureInterface.php', '/vendor/alibabacloud/credentials/src/Signature', '/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4522, 'StsCredential.php', '/vendor/alibabacloud/credentials/src', '/vendor/alibabacloud/credentials/src/StsCredential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4523, 'darabonba-openapi', '/vendor/alibabacloud', '/vendor/alibabacloud/darabonba-openapi', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4524, '.gitignore', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4525, '.php_cs.dist', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4526, 'README-CN.md', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4527, 'README.md', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4528, 'autoload.php', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4529, 'composer.json', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4530, 'src', '/vendor/alibabacloud/darabonba-openapi', '/vendor/alibabacloud/darabonba-openapi/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4531, 'Models', '/vendor/alibabacloud/darabonba-openapi/src', '/vendor/alibabacloud/darabonba-openapi/src/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4532, 'Config.php', '/vendor/alibabacloud/darabonba-openapi/src/Models', '/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4533, 'GlobalParameters.php', '/vendor/alibabacloud/darabonba-openapi/src/Models', '/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4534, 'OpenApiRequest.php', '/vendor/alibabacloud/darabonba-openapi/src/Models', '/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4535, 'Params.php', '/vendor/alibabacloud/darabonba-openapi/src/Models', '/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4536, 'OpenApiClient.php', '/vendor/alibabacloud/darabonba-openapi/src', '/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4537, 'dysmsapi-20170525', '/vendor/alibabacloud', '/vendor/alibabacloud/dysmsapi-20170525', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4538, '.gitignore', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4539, '.php_cs.dist', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4540, 'ChangeLog.md', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4541, 'LICENSE', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4542, 'README-CN.md', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4543, 'README.md', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4544, 'autoload.php', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4545, 'composer.json', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4546, 'src', '/vendor/alibabacloud/dysmsapi-20170525', '/vendor/alibabacloud/dysmsapi-20170525/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4547, 'Dysmsapi.php', '/vendor/alibabacloud/dysmsapi-20170525/src', '/vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4548, 'Models', '/vendor/alibabacloud/dysmsapi-20170525/src', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4549, 'AddShortUrlRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4550, 'AddShortUrlResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4551, 'AddShortUrlResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4552, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4553, 'AddShortUrlResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddShortUrlResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4554, 'AddSmsSignRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4555, 'signFileList.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest/signFileList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4556, 'AddSmsSignRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4557, 'AddSmsSignResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4558, 'AddSmsSignResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsSignResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4559, 'AddSmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4560, 'AddSmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4561, 'AddSmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/AddSmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4562, 'CheckMobilesCardSupportRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4563, 'CheckMobilesCardSupportResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4564, 'CheckMobilesCardSupportResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CheckMobilesCardSupportResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4565, 'CreateCardSmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4566, 'CreateCardSmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4567, 'CreateCardSmsTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4568, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4569, 'CreateCardSmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4570, 'CreateCardSmsTemplateShrinkRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/CreateCardSmsTemplateShrinkRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4571, 'DeleteShortUrlRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4572, 'DeleteShortUrlResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4573, 'DeleteShortUrlResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteShortUrlResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4574, 'DeleteSmsSignRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4575, 'DeleteSmsSignResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4576, 'DeleteSmsSignResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsSignResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4577, 'DeleteSmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4578, 'DeleteSmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4579, 'DeleteSmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/DeleteSmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4580, 'GetCardSmsLinkRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4581, 'GetCardSmsLinkResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4582, 'GetCardSmsLinkResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4583, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4584, 'GetCardSmsLinkResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetCardSmsLinkResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4585, 'GetMediaResourceIdRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4586, 'GetMediaResourceIdResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4587, 'GetMediaResourceIdResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4588, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4589, 'GetMediaResourceIdResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetMediaResourceIdResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4590, 'GetOSSInfoForCardTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4591, 'GetOSSInfoForCardTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4592, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4593, 'GetOSSInfoForCardTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/GetOSSInfoForCardTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4594, 'ListTagResourcesRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4595, 'tag.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest/tag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4596, 'ListTagResourcesRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4597, 'ListTagResourcesResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4598, 'ListTagResourcesResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4599, 'tagResources', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4600, 'tagResource.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources/tagResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4601, 'tagResources.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody/tagResources.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4602, 'ListTagResourcesResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ListTagResourcesResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4603, 'ModifySmsSignRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4604, 'signFileList.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest/signFileList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4605, 'ModifySmsSignRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4606, 'ModifySmsSignResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4607, 'ModifySmsSignResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsSignResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4608, 'ModifySmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4609, 'ModifySmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4610, 'ModifySmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/ModifySmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4611, 'QueryCardSmsTemplateReportRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4612, 'QueryCardSmsTemplateReportResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4613, 'QueryCardSmsTemplateReportResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateReportResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4614, 'QueryCardSmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4615, 'QueryCardSmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4616, 'QueryCardSmsTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4617, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4618, 'QueryCardSmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryCardSmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4619, 'QuerySendDetailsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4620, 'QuerySendDetailsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4621, 'QuerySendDetailsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4622, 'smsSendDetailDTOs', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4623, 'smsSendDetailDTO.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs/smsSendDetailDTO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4624, 'smsSendDetailDTOs.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody/smsSendDetailDTOs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4625, 'QuerySendDetailsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendDetailsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4626, 'QuerySendStatisticsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4627, 'QuerySendStatisticsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4628, 'QuerySendStatisticsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4629, 'data', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4630, 'targetList.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data/targetList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4631, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4632, 'QuerySendStatisticsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySendStatisticsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4633, 'QueryShortUrlRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4634, 'QueryShortUrlResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4635, 'QueryShortUrlResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4636, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4637, 'QueryShortUrlResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QueryShortUrlResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4638, 'QuerySmsSignListRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4639, 'QuerySmsSignListResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4640, 'QuerySmsSignListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4641, 'smsSignList', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4642, 'reason.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList/reason.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4643, 'smsSignList.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody/smsSignList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4644, 'QuerySmsSignListResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignListResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4645, 'QuerySmsSignRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4646, 'QuerySmsSignResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4647, 'QuerySmsSignResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsSignResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4648, 'QuerySmsTemplateListRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4649, 'QuerySmsTemplateListResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4650, 'QuerySmsTemplateListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4651, 'smsTemplateList', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4652, 'reason.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList/reason.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4653, 'smsTemplateList.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody/smsTemplateList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4654, 'QuerySmsTemplateListResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateListResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4655, 'QuerySmsTemplateRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4656, 'QuerySmsTemplateResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4657, 'QuerySmsTemplateResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/QuerySmsTemplateResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4658, 'SendBatchCardSmsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4659, 'SendBatchCardSmsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4660, 'SendBatchCardSmsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4661, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4662, 'SendBatchCardSmsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchCardSmsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4663, 'SendBatchSmsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4664, 'SendBatchSmsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4665, 'SendBatchSmsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendBatchSmsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4666, 'SendCardSmsRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4667, 'cardObjects.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest/cardObjects.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4668, 'SendCardSmsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4669, 'SendCardSmsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4670, 'SendCardSmsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4671, 'data.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody/data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4672, 'SendCardSmsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendCardSmsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4673, 'SendSmsRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4674, 'SendSmsResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4675, 'SendSmsResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/SendSmsResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4676, 'TagResourcesRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4677, 'tag.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest/tag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4678, 'TagResourcesRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4679, 'TagResourcesResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4680, 'TagResourcesResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/TagResourcesResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4681, 'UntagResourcesRequest.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4682, 'UntagResourcesResponse.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4683, 'UntagResourcesResponseBody.php', '/vendor/alibabacloud/dysmsapi-20170525/src/Models', '/vendor/alibabacloud/dysmsapi-20170525/src/Models/UntagResourcesResponseBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4684, 'endpoint-util', '/vendor/alibabacloud', '/vendor/alibabacloud/endpoint-util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4685, '.gitignore', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4686, '.php_cs.dist', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4687, 'LICENSE', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4688, 'README-CN.md', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4689, 'README.md', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4690, 'composer.json', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4691, 'phpunit.xml', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4692, 'src', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4693, 'Endpoint.php', '/vendor/alibabacloud/endpoint-util/src', '/vendor/alibabacloud/endpoint-util/src/Endpoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4694, 'tests', '/vendor/alibabacloud/endpoint-util', '/vendor/alibabacloud/endpoint-util/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4695, 'EndpointTest.php', '/vendor/alibabacloud/endpoint-util/tests', '/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4696, 'bootstrap.php', '/vendor/alibabacloud/endpoint-util/tests', '/vendor/alibabacloud/endpoint-util/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4697, 'gateway-spi', '/vendor/alibabacloud', '/vendor/alibabacloud/gateway-spi', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4698, '.gitignore', '/vendor/alibabacloud/gateway-spi', '/vendor/alibabacloud/gateway-spi/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4699, '.php_cs.dist', '/vendor/alibabacloud/gateway-spi', '/vendor/alibabacloud/gateway-spi/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4700, 'autoload.php', '/vendor/alibabacloud/gateway-spi', '/vendor/alibabacloud/gateway-spi/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4701, 'composer.json', '/vendor/alibabacloud/gateway-spi', '/vendor/alibabacloud/gateway-spi/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4702, 'src', '/vendor/alibabacloud/gateway-spi', '/vendor/alibabacloud/gateway-spi/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4703, 'Client.php', '/vendor/alibabacloud/gateway-spi/src', '/vendor/alibabacloud/gateway-spi/src/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4704, 'Models', '/vendor/alibabacloud/gateway-spi/src', '/vendor/alibabacloud/gateway-spi/src/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4705, 'AttributeMap.php', '/vendor/alibabacloud/gateway-spi/src/Models', '/vendor/alibabacloud/gateway-spi/src/Models/AttributeMap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4706, 'InterceptorContext', '/vendor/alibabacloud/gateway-spi/src/Models', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4707, 'configuration.php', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4708, 'request.php', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4709, 'response.php', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4710, 'InterceptorContext.php', '/vendor/alibabacloud/gateway-spi/src/Models', '/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4711, 'openapi-util', '/vendor/alibabacloud', '/vendor/alibabacloud/openapi-util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4712, '.gitignore', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4713, '.php_cs.dist', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4714, 'README-CN.md', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4715, 'README.md', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4716, 'autoload.php', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4717, 'composer.json', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4718, 'phpunit.xml', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4719, 'src', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4720, 'OpenApiUtilClient.php', '/vendor/alibabacloud/openapi-util/src', '/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4721, 'tests', '/vendor/alibabacloud/openapi-util', '/vendor/alibabacloud/openapi-util/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4722, 'OpenApiUtilClientTest.php', '/vendor/alibabacloud/openapi-util/tests', '/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4723, 'bootstrap.php', '/vendor/alibabacloud/openapi-util/tests', '/vendor/alibabacloud/openapi-util/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4724, 'tea', '/vendor/alibabacloud', '/vendor/alibabacloud/tea', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4725, '.php_cs.dist', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4726, 'CHANGELOG.md', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4727, 'LICENSE.md', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4728, 'README.md', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4729, 'composer.json', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4730, 'src', '/vendor/alibabacloud/tea', '/vendor/alibabacloud/tea/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4731, 'Exception', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4732, 'TeaError.php', '/vendor/alibabacloud/tea/src/Exception', '/vendor/alibabacloud/tea/src/Exception/TeaError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4733, 'TeaRetryError.php', '/vendor/alibabacloud/tea/src/Exception', '/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4734, 'TeaUnableRetryError.php', '/vendor/alibabacloud/tea/src/Exception', '/vendor/alibabacloud/tea/src/Exception/TeaUnableRetryError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4735, 'Helper.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4736, 'Model.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Model.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4737, 'Parameter.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Parameter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4738, 'Request.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4739, 'Response.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4740, 'Tea.php', '/vendor/alibabacloud/tea/src', '/vendor/alibabacloud/tea/src/Tea.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4741, 'tea-fileform', '/vendor/alibabacloud', '/vendor/alibabacloud/tea-fileform', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4742, '.gitignore', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4743, '.php_cs.dist', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4744, 'README-CN.md', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4745, 'README.md', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4746, 'composer.json', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4747, 'phpunit.xml', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4748, 'src', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4749, 'FileForm', '/vendor/alibabacloud/tea-fileform/src', '/vendor/alibabacloud/tea-fileform/src/FileForm', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4750, 'FileField.php', '/vendor/alibabacloud/tea-fileform/src/FileForm', '/vendor/alibabacloud/tea-fileform/src/FileForm/FileField.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4751, 'FileForm.php', '/vendor/alibabacloud/tea-fileform/src', '/vendor/alibabacloud/tea-fileform/src/FileForm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4752, 'FileFormStream.php', '/vendor/alibabacloud/tea-fileform/src', '/vendor/alibabacloud/tea-fileform/src/FileFormStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4753, 'tests', '/vendor/alibabacloud/tea-fileform', '/vendor/alibabacloud/tea-fileform/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4754, 'FileFormTest.php', '/vendor/alibabacloud/tea-fileform/tests', '/vendor/alibabacloud/tea-fileform/tests/FileFormTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4755, 'bootstrap.php', '/vendor/alibabacloud/tea-fileform/tests', '/vendor/alibabacloud/tea-fileform/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4756, 'tea-utils', '/vendor/alibabacloud', '/vendor/alibabacloud/tea-utils', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4757, '.gitignore', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4758, '.php_cs.dist', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4759, 'README-CN.md', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4760, 'README.md', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4761, 'composer.json', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4762, 'phpunit.xml', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4763, 'src', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4764, 'Utils', '/vendor/alibabacloud/tea-utils/src', '/vendor/alibabacloud/tea-utils/src/Utils', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4765, 'RuntimeOptions.php', '/vendor/alibabacloud/tea-utils/src/Utils', '/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4766, 'Utils.php', '/vendor/alibabacloud/tea-utils/src', '/vendor/alibabacloud/tea-utils/src/Utils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4767, 'tests', '/vendor/alibabacloud/tea-utils', '/vendor/alibabacloud/tea-utils/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4768, 'UtilsTest.php', '/vendor/alibabacloud/tea-utils/tests', '/vendor/alibabacloud/tea-utils/tests/UtilsTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4769, 'bootstrap.php', '/vendor/alibabacloud/tea-utils/tests', '/vendor/alibabacloud/tea-utils/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4770, 'tea-xml', '/vendor/alibabacloud', '/vendor/alibabacloud/tea-xml', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4771, '.gitignore', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4772, '.php_cs.dist', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4773, 'README-CN.md', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4774, 'README.md', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4775, 'composer.json', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4776, 'phpunit.xml', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4777, 'src', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4778, 'ArrayToXml.php', '/vendor/alibabacloud/tea-xml/src', '/vendor/alibabacloud/tea-xml/src/ArrayToXml.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4779, 'XML.php', '/vendor/alibabacloud/tea-xml/src', '/vendor/alibabacloud/tea-xml/src/XML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4780, 'tests', '/vendor/alibabacloud/tea-xml', '/vendor/alibabacloud/tea-xml/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4781, 'XMLTest.php', '/vendor/alibabacloud/tea-xml/tests', '/vendor/alibabacloud/tea-xml/tests/XMLTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4782, 'bootstrap.php', '/vendor/alibabacloud/tea-xml/tests', '/vendor/alibabacloud/tea-xml/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4783, 'alipaysdk', '/vendor', '/vendor/alipaysdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4784, 'easysdk', '/vendor/alipaysdk', '/vendor/alipaysdk/easysdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4785, '.gitattributes', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/.gitattributes', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4786, '.gitignore', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4787, 'APIDoc.md', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/APIDoc.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4788, 'LICENSE', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4789, 'README.md', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4790, 'composer.json', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4791, 'csharp', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/csharp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4792, 'AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4793, 'AlipayEasySDK.csproj', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/AlipayEasySDK.csproj', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4794, 'Base', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4795, 'Image', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4796, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4797, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4798, 'AlipayOfflineMaterialImageUploadResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Image/Models/AlipayOfflineMaterialImageUploadResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4799, 'OAuth', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4800, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4801, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4802, 'AlipaySystemOauthTokenResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/OAuth/Models/AlipaySystemOauthTokenResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4803, 'Qrcode', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4804, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4805, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4806, 'AlipayOpenAppQrcodeCreateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Qrcode/Models/AlipayOpenAppQrcodeCreateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4807, 'Video', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4808, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4809, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4810, 'AlipayOfflineMaterialImageUploadResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Base/Video/Models/AlipayOfflineMaterialImageUploadResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4811, 'Factory', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4812, 'Factory.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Factory', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Factory/Factory.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4813, 'Marketing', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4814, 'OpenLife', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4815, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4816, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4817, 'AlipayOpenPublicLifeMsgRecallResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicLifeMsgRecallResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4818, 'AlipayOpenPublicMessageContentCreateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicMessageContentCreateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4819, 'AlipayOpenPublicMessageContentModifyResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicMessageContentModifyResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4820, 'AlipayOpenPublicMessageSingleSendResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicMessageSingleSendResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4821, 'AlipayOpenPublicMessageTotalSendResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicMessageTotalSendResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4822, 'AlipayOpenPublicSettingCategoryQueryResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicSettingCategoryQueryResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4823, 'AlipayOpenPublicTemplateMessageIndustryModifyResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/AlipayOpenPublicTemplateMessageIndustryModifyResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4824, 'Article.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/Article.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4825, 'Context.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/Context.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4826, 'Keyword.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/Keyword.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4827, 'Template.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/Template.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4828, 'Text.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/OpenLife/Models/Text.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4829, 'Pass', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4830, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4831, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4832, 'AlipayPassInstanceAddResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models/AlipayPassInstanceAddResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4833, 'AlipayPassInstanceUpdateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models/AlipayPassInstanceUpdateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4834, 'AlipayPassTemplateAddResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models/AlipayPassTemplateAddResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4835, 'AlipayPassTemplateUpdateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/Pass/Models/AlipayPassTemplateUpdateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4836, 'TemplateMessage', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4837, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4838, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4839, 'AlipayOpenAppMiniTemplatemessageSendResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Marketing/TemplateMessage/Models/AlipayOpenAppMiniTemplatemessageSendResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4840, 'Member', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4841, 'Identification', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4842, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4843, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4844, 'AlipayUserCertifyOpenCertifyResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models/AlipayUserCertifyOpenCertifyResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4845, 'AlipayUserCertifyOpenInitializeResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models/AlipayUserCertifyOpenInitializeResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4846, 'AlipayUserCertifyOpenQueryResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models/AlipayUserCertifyOpenQueryResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4847, 'IdentityParam.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models/IdentityParam.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4848, 'MerchantConfig.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Member/Identification/Models/MerchantConfig.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4849, 'Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4850, 'App', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4851, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4852, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4853, 'AlipayTradeAppPayResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/App/Models/AlipayTradeAppPayResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4854, 'Common', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4855, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4856, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4857, 'AlipayDataDataserviceBillDownloadurlQueryResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayDataDataserviceBillDownloadurlQueryResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4858, 'AlipayTradeCancelResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeCancelResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4859, 'AlipayTradeCloseResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeCloseResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4860, 'AlipayTradeCreateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeCreateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4861, 'AlipayTradeFastpayRefundQueryResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeFastpayRefundQueryResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4862, 'AlipayTradeQueryResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeQueryResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4863, 'AlipayTradeRefundResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/AlipayTradeRefundResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4864, 'PresetPayToolInfo.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/PresetPayToolInfo.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4865, 'RefundRoyaltyResult.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/RefundRoyaltyResult.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4866, 'TradeFundBill.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/TradeFundBill.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4867, 'TradeSettleDetail.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/TradeSettleDetail.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4868, 'TradeSettleInfo.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Common/Models/TradeSettleInfo.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4869, 'FaceToFace', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4870, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4871, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4872, 'AlipayTradePayResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models/AlipayTradePayResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4873, 'AlipayTradePrecreateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models/AlipayTradePrecreateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4874, 'TradeFundBill.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models/TradeFundBill.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4875, 'VoucherDetail.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/FaceToFace/Models/VoucherDetail.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4876, 'Huabei', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4877, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4878, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4879, 'AlipayTradeCreateResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Models/AlipayTradeCreateResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4880, 'HuabeiConfig.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Huabei/Models/HuabeiConfig.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4881, 'Page', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4882, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4883, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4884, 'AlipayTradePagePayResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Page/Models/AlipayTradePagePayResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4885, 'Wap', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4886, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4887, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4888, 'AlipayTradeWapPayResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Payment/Wap/Models/AlipayTradeWapPayResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4889, 'Security', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4890, 'TextRisk', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4891, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4892, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4893, 'AlipaySecurityRiskContentDetectResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Security/TextRisk/Models/AlipaySecurityRiskContentDetectResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4894, 'Util', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4895, 'AES', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/AES', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4896, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/AES', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/AES/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4897, 'Generic', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4898, 'Client.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4899, 'Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4900, 'AlipayOpenApiGenericResponse.cs', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic/Models', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK/Util/Generic/Models/AlipayOpenApiGenericResponse.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4901, 'AlipayEasySDK.sln', '/vendor/alipaysdk/easysdk/csharp', '/vendor/alipaysdk/easysdk/csharp/AlipayEasySDK.sln', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4902, 'README.md', '/vendor/alipaysdk/easysdk/csharp', '/vendor/alipaysdk/easysdk/csharp/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4903, 'UnitTest', '/vendor/alipaysdk/easysdk/csharp', '/vendor/alipaysdk/easysdk/csharp/UnitTest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4904, 'Base', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4905, 'Image', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4906, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Image', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Image/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4907, 'OAuth', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/OAuth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4908, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/OAuth', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/OAuth/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4909, 'Qrcode', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4910, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Qrcode', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Qrcode/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4911, 'Video', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4912, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Video', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Base/Video/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4913, 'Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4914, 'alipayCertPublicKey_RSA2.crt', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/alipayCertPublicKey_RSA2.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4915, 'alipayRootCert.crt', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/alipayRootCert.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4916, 'appCertPublicKey_2019051064521003.crt', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/appCertPublicKey_2019051064521003.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4917, 'privateKey.json', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/privateKey.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4918, 'sample.mp4', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/sample.mp4', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4919, 'sample.png', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Fixture/sample.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4920, 'Marketing', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4921, 'OpenLife', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/OpenLife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4922, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/OpenLife', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/OpenLife/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4923, 'Pass', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/Pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4924, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/Pass', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/Pass/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4925, 'TemplateMessage', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/TemplateMessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4926, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/TemplateMessage', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Marketing/TemplateMessage/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4927, 'Member', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4928, 'Identification', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Member', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Member/Identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4929, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Member/Identification', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Member/Identification/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4930, 'Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4931, 'App', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/App', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4932, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/App', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/App/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4933, 'Common', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4934, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Common', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Common/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4935, 'FaceToFace', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/FaceToFace', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4936, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/FaceToFace', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/FaceToFace/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4937, 'Huabei', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4938, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Huabei', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Huabei/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4939, 'Page', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4940, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Page', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Page/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4941, 'Wap', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4942, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Wap', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Payment/Wap/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4943, 'Security', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4944, 'TextRisk', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Security', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Security/TextRisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4945, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Security/TextRisk', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Security/TextRisk/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4946, 'TestAccount.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/TestAccount.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4947, 'UnitTest.csproj', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/UnitTest.csproj', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4948, 'Util', '/vendor/alipaysdk/easysdk/csharp/UnitTest', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4949, 'AES', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/AES', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4950, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/AES', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/AES/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4951, 'Generic', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/Generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4952, 'ClientTest.cs', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/Generic', '/vendor/alipaysdk/easysdk/csharp/UnitTest/Util/Generic/ClientTest.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4953, 'java', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/java', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4954, 'README.md', '/vendor/alipaysdk/easysdk/java', '/vendor/alipaysdk/easysdk/java/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4955, 'pom.xml', '/vendor/alipaysdk/easysdk/java', '/vendor/alipaysdk/easysdk/java/pom.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4956, 'src', '/vendor/alipaysdk/easysdk/java', '/vendor/alipaysdk/easysdk/java/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4957, 'main', '/vendor/alipaysdk/easysdk/java/src', '/vendor/alipaysdk/easysdk/java/src/main', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4958, 'java', '/vendor/alipaysdk/easysdk/java/src/main', '/vendor/alipaysdk/easysdk/java/src/main/java', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4959, 'com', '/vendor/alipaysdk/easysdk/java/src/main/java', '/vendor/alipaysdk/easysdk/java/src/main/java/com', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4960, 'alipay', '/vendor/alipaysdk/easysdk/java/src/main/java/com', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4961, 'easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4962, 'base', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4963, 'image', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4964, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4965, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4966, 'AlipayOfflineMaterialImageUploadResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/image/models/AlipayOfflineMaterialImageUploadResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4967, 'oauth', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4968, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4969, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4970, 'AlipaySystemOauthTokenResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/oauth/models/AlipaySystemOauthTokenResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4971, 'qrcode', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4972, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4973, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4974, 'AlipayOpenAppQrcodeCreateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/qrcode/models/AlipayOpenAppQrcodeCreateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4975, 'video', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4976, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4977, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4978, 'AlipayOfflineMaterialImageUploadResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/base/video/models/AlipayOfflineMaterialImageUploadResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4979, 'factory', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4980, 'Factory.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/factory', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/factory/Factory.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4981, 'kms', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4982, 'aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4983, 'AliyunKMSClient.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/AliyunKMSClient.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4984, 'AliyunKMSConfig.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/AliyunKMSConfig.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4985, 'AliyunKMSSigner.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/AliyunKMSSigner.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4986, 'AliyunRpcClient.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/AliyunRpcClient.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4987, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4988, 'AsymmetricSignRequest.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models/AsymmetricSignRequest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4989, 'AsymmetricSignResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models/AsymmetricSignResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4990, 'GetPublicKeyRequest.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models/GetPublicKeyRequest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4991, 'GetPublicKeyResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models/GetPublicKeyResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4992, 'RuntimeOptions.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/kms/aliyun/models/RuntimeOptions.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4993, 'marketing', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4994, 'openlife', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4995, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4996, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4997, 'AlipayOpenPublicLifeMsgRecallResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicLifeMsgRecallResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4998, 'AlipayOpenPublicMessageContentCreateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicMessageContentCreateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(4999, 'AlipayOpenPublicMessageContentModifyResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicMessageContentModifyResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5000, 'AlipayOpenPublicMessageSingleSendResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicMessageSingleSendResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5001, 'AlipayOpenPublicMessageTotalSendResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicMessageTotalSendResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5002, 'AlipayOpenPublicSettingCategoryQueryResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicSettingCategoryQueryResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5003, 'AlipayOpenPublicTemplateMessageIndustryModifyResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/AlipayOpenPublicTemplateMessageIndustryModifyResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5004, 'Article.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/Article.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5005, 'Context.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/Context.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5006, 'Keyword.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/Keyword.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5007, 'Template.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/Template.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5008, 'Text.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/openlife/models/Text.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5009, 'pass', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5010, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5011, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5012, 'AlipayPassInstanceAddResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models/AlipayPassInstanceAddResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5013, 'AlipayPassInstanceUpdateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models/AlipayPassInstanceUpdateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5014, 'AlipayPassTemplateAddResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models/AlipayPassTemplateAddResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5015, 'AlipayPassTemplateUpdateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/pass/models/AlipayPassTemplateUpdateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5016, 'templatemessage', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5017, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5018, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5019, 'AlipayOpenAppMiniTemplatemessageSendResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/marketing/templatemessage/models/AlipayOpenAppMiniTemplatemessageSendResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5020, 'member', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5021, 'identification', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5022, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5023, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5024, 'AlipayUserCertifyOpenCertifyResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models/AlipayUserCertifyOpenCertifyResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5025, 'AlipayUserCertifyOpenInitializeResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models/AlipayUserCertifyOpenInitializeResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5026, 'AlipayUserCertifyOpenQueryResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models/AlipayUserCertifyOpenQueryResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5027, 'IdentityParam.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models/IdentityParam.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5028, 'MerchantConfig.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/member/identification/models/MerchantConfig.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5029, 'payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5030, 'app', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5031, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5032, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5033, 'AlipayTradeAppPayResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/app/models/AlipayTradeAppPayResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5034, 'common', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5035, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5036, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5037, 'AlipayDataDataserviceBillDownloadurlQueryResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayDataDataserviceBillDownloadurlQueryResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5038, 'AlipayTradeCancelResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeCancelResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5039, 'AlipayTradeCloseResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeCloseResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5040, 'AlipayTradeCreateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeCreateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5041, 'AlipayTradeFastpayRefundQueryResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeFastpayRefundQueryResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5042, 'AlipayTradeQueryResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeQueryResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5043, 'AlipayTradeRefundResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/AlipayTradeRefundResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5044, 'PresetPayToolInfo.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/PresetPayToolInfo.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5045, 'RefundRoyaltyResult.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/RefundRoyaltyResult.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5046, 'TradeFundBill.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/TradeFundBill.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5047, 'TradeSettleDetail.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/TradeSettleDetail.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5048, 'TradeSettleInfo.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/common/models/TradeSettleInfo.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5049, 'facetoface', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5050, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5051, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5052, 'AlipayTradePayResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models/AlipayTradePayResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5053, 'AlipayTradePrecreateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models/AlipayTradePrecreateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5054, 'TradeFundBill.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models/TradeFundBill.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5055, 'VoucherDetail.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/facetoface/models/VoucherDetail.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5056, 'huabei', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5057, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5058, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5059, 'AlipayTradeCreateResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/models/AlipayTradeCreateResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5060, 'HuabeiConfig.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/huabei/models/HuabeiConfig.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5061, 'page', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5062, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5063, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5064, 'AlipayTradePagePayResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/page/models/AlipayTradePagePayResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5065, 'wap', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5066, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5067, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5068, 'AlipayTradeWapPayResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/payment/wap/models/AlipayTradeWapPayResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5069, 'security', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5070, 'textrisk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5071, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5072, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5073, 'AlipaySecurityRiskContentDetectResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/security/textrisk/models/AlipaySecurityRiskContentDetectResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5074, 'util', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5075, 'aes', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/aes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5076, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/aes', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/aes/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5077, 'generic', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5078, 'Client.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5079, 'models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic/models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5080, 'AlipayOpenApiGenericResponse.java', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic/models', '/vendor/alipaysdk/easysdk/java/src/main/java/com/alipay/easysdk/util/generic/models/AlipayOpenApiGenericResponse.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5081, 'test', '/vendor/alipaysdk/easysdk/java/src', '/vendor/alipaysdk/easysdk/java/src/test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5082, 'java', '/vendor/alipaysdk/easysdk/java/src/test', '/vendor/alipaysdk/easysdk/java/src/test/java', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5083, 'com', '/vendor/alipaysdk/easysdk/java/src/test/java', '/vendor/alipaysdk/easysdk/java/src/test/java/com', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5084, 'alipay', '/vendor/alipaysdk/easysdk/java/src/test/java/com', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5085, 'easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5086, 'TestAccount.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/TestAccount.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5087, 'base', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5088, 'image', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5089, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/image', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/image/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5090, 'oauth', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5091, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/oauth', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/oauth/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5092, 'qrcode', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5093, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/qrcode', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/qrcode/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5094, 'video', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5095, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/video', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/base/video/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5096, 'kms', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/kms', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5097, 'aliyun', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/kms', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/kms/aliyun', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5098, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/kms/aliyun', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/kms/aliyun/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5099, 'marketing', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5100, 'openlife', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/openlife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5101, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/openlife', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/openlife/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5102, 'pass', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5103, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/pass', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/pass/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5104, 'templatemessage', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/templatemessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5105, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/templatemessage', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/marketing/templatemessage/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5106, 'member', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5107, 'identification', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/member', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/member/identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5108, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/member/identification', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/member/identification/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5109, 'payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5110, 'app', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/app', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5111, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/app', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/app/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5112, 'common', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5113, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/common', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/common/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5114, 'facetoface', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/facetoface', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5115, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/facetoface', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/facetoface/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5116, 'huabei', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5117, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/huabei', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/huabei/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5118, 'page', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5119, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/page', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/page/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5120, 'wap', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5121, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/wap', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/payment/wap/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5122, 'security', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5123, 'textrisk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/security', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/security/textrisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5124, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/security/textrisk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/security/textrisk/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5125, 'util', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5126, 'aes', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/aes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5127, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/aes', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/aes/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5128, 'generic', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5129, 'ClientTest.java', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/generic', '/vendor/alipaysdk/easysdk/java/src/test/java/com/alipay/easysdk/util/generic/ClientTest.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5130, 'resources', '/vendor/alipaysdk/easysdk/java/src/test', '/vendor/alipaysdk/easysdk/java/src/test/resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5131, 'fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5132, 'alipayCertPublicKey_RSA2.crt', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/alipayCertPublicKey_RSA2.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5133, 'alipayRootCert.crt', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/alipayRootCert.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5134, 'aliyunAccessKey.json', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/aliyunAccessKey.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5135, 'appCertPublicKey_2019051064521003.crt', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/appCertPublicKey_2019051064521003.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5136, 'privateKey.json', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/privateKey.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5137, 'sample.mp4', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/sample.mp4', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5138, 'sample.png', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture', '/vendor/alipaysdk/easysdk/java/src/test/resources/fixture/sample.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5139, 'kernel', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/kernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5140, 'csharp', '/vendor/alipaysdk/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/csharp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5141, 'EasySDKKernel', '/vendor/alipaysdk/easysdk/kernel/csharp', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5142, 'EasySDKKernel.csproj', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/EasySDKKernel.csproj', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5143, 'Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5144, 'AlipayConstants.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/AlipayConstants.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5145, 'CertEnvironment.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/CertEnvironment.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5146, 'Client.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Client.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5147, 'Config.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Config.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5148, 'Context.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Context.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5149, 'Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5150, 'AES.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/AES.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5151, 'AntCertificationUtil.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/AntCertificationUtil.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5152, 'ArgumentValidator.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/ArgumentValidator.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5153, 'DictionaryUtil.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/DictionaryUtil.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5154, 'JsonUtil.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/JsonUtil.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5155, 'MultipartUtil.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/MultipartUtil.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5156, 'PageUtil.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/PageUtil.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5157, 'ResponseChecker.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/ResponseChecker.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5158, 'SignContentExtractor.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/SignContentExtractor.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5159, 'Signer.cs', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel/Kernel/Util/Signer.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5160, 'EasySDKKernel.sln', '/vendor/alipaysdk/easysdk/kernel/csharp', '/vendor/alipaysdk/easysdk/kernel/csharp/EasySDKKernel.sln', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5161, 'java', '/vendor/alipaysdk/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5162, 'pom.xml', '/vendor/alipaysdk/easysdk/kernel/java', '/vendor/alipaysdk/easysdk/kernel/java/pom.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5163, 'src', '/vendor/alipaysdk/easysdk/kernel/java', '/vendor/alipaysdk/easysdk/kernel/java/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5164, 'main', '/vendor/alipaysdk/easysdk/kernel/java/src', '/vendor/alipaysdk/easysdk/kernel/java/src/main', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5165, 'java', '/vendor/alipaysdk/easysdk/kernel/java/src/main', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5166, 'com', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5167, 'alipay', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5168, 'easysdk', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5169, 'kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5170, 'AlipayConstants.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/AlipayConstants.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5171, 'CertEnvironment.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/CertEnvironment.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5172, 'Client.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/Client.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5173, 'Config.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/Config.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5174, 'Context.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/Context.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5175, 'util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5176, 'AES.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/AES.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5177, 'AntCertificationUtil.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/AntCertificationUtil.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5178, 'JsonUtil.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/JsonUtil.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5179, 'MultipartUtil.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/MultipartUtil.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5180, 'PageUtil.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/PageUtil.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5181, 'ResponseChecker.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/ResponseChecker.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5182, 'SignContentExtractor.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/SignContentExtractor.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5183, 'Signer.java', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util', '/vendor/alipaysdk/easysdk/kernel/java/src/main/java/com/alipay/easysdk/kernel/util/Signer.java', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5184, 'php', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/php', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5185, 'README.md', '/vendor/alipaysdk/easysdk/php', '/vendor/alipaysdk/easysdk/php/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5186, 'src', '/vendor/alipaysdk/easysdk/php', '/vendor/alipaysdk/easysdk/php/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5187, 'Base', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5188, 'Image', '/vendor/alipaysdk/easysdk/php/src/Base', '/vendor/alipaysdk/easysdk/php/src/Base/Image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5189, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Base/Image', '/vendor/alipaysdk/easysdk/php/src/Base/Image/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5190, 'Models', '/vendor/alipaysdk/easysdk/php/src/Base/Image', '/vendor/alipaysdk/easysdk/php/src/Base/Image/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5191, 'AlipayOfflineMaterialImageUploadResponse.php', '/vendor/alipaysdk/easysdk/php/src/Base/Image/Models', '/vendor/alipaysdk/easysdk/php/src/Base/Image/Models/AlipayOfflineMaterialImageUploadResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5192, 'OAuth', '/vendor/alipaysdk/easysdk/php/src/Base', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5193, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5194, 'Models', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5195, 'AlipaySystemOauthTokenResponse.php', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth/Models', '/vendor/alipaysdk/easysdk/php/src/Base/OAuth/Models/AlipaySystemOauthTokenResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5196, 'Qrcode', '/vendor/alipaysdk/easysdk/php/src/Base', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5197, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5198, 'Models', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5199, 'AlipayOpenAppQrcodeCreateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode/Models', '/vendor/alipaysdk/easysdk/php/src/Base/Qrcode/Models/AlipayOpenAppQrcodeCreateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5200, 'Video', '/vendor/alipaysdk/easysdk/php/src/Base', '/vendor/alipaysdk/easysdk/php/src/Base/Video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5201, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Base/Video', '/vendor/alipaysdk/easysdk/php/src/Base/Video/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5202, 'Models', '/vendor/alipaysdk/easysdk/php/src/Base/Video', '/vendor/alipaysdk/easysdk/php/src/Base/Video/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5203, 'AlipayOfflineMaterialImageUploadResponse.php', '/vendor/alipaysdk/easysdk/php/src/Base/Video/Models', '/vendor/alipaysdk/easysdk/php/src/Base/Video/Models/AlipayOfflineMaterialImageUploadResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5204, 'Kernel', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Kernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5205, 'AlipayConstants.php', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/AlipayConstants.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5206, 'CertEnvironment.php', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/CertEnvironment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5207, 'Config.php', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5208, 'EasySDKKernel.php', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/EasySDKKernel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5209, 'Exceptions', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/Exceptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5210, 'RuntimeException.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Exceptions', '/vendor/alipaysdk/easysdk/php/src/Kernel/Exceptions/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5211, 'Factory.php', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/Factory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5212, 'Util', '/vendor/alipaysdk/easysdk/php/src/Kernel', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5213, 'AES.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/AES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5214, 'AlipayEncrypt.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/AlipayEncrypt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5215, 'AntCertificationUtil.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/AntCertificationUtil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5216, 'JsonUtil.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/JsonUtil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5217, 'PageUtil.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/PageUtil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5218, 'ResponseChecker.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/ResponseChecker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5219, 'SignContentExtractor.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/SignContentExtractor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5220, 'Signer.php', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util', '/vendor/alipaysdk/easysdk/php/src/Kernel/Util/Signer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5221, 'Marketing', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5222, 'OpenLife', '/vendor/alipaysdk/easysdk/php/src/Marketing', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5223, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5224, 'Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5225, 'AlipayOpenPublicLifeMsgRecallResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicLifeMsgRecallResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5226, 'AlipayOpenPublicMessageContentCreateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicMessageContentCreateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5227, 'AlipayOpenPublicMessageContentModifyResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicMessageContentModifyResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5228, 'AlipayOpenPublicMessageSingleSendResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicMessageSingleSendResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5229, 'AlipayOpenPublicMessageTotalSendResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicMessageTotalSendResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5230, 'AlipayOpenPublicSettingCategoryQueryResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicSettingCategoryQueryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5231, 'AlipayOpenPublicTemplateMessageIndustryModifyResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/AlipayOpenPublicTemplateMessageIndustryModifyResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5232, 'Article.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/Article.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5233, 'Context.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/Context.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5234, 'Keyword.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/Keyword.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5235, 'Template.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/Template.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5236, 'Text.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/OpenLife/Models/Text.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5237, 'Pass', '/vendor/alipaysdk/easysdk/php/src/Marketing', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5238, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5239, 'Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5240, 'AlipayPassInstanceAddResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models/AlipayPassInstanceAddResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5241, 'AlipayPassInstanceUpdateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models/AlipayPassInstanceUpdateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5242, 'AlipayPassTemplateAddResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models/AlipayPassTemplateAddResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5243, 'AlipayPassTemplateUpdateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/Pass/Models/AlipayPassTemplateUpdateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5244, 'TemplateMessage', '/vendor/alipaysdk/easysdk/php/src/Marketing', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5245, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5246, 'Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5247, 'AlipayOpenAppMiniTemplatemessageSendResponse.php', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage/Models', '/vendor/alipaysdk/easysdk/php/src/Marketing/TemplateMessage/Models/AlipayOpenAppMiniTemplatemessageSendResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5248, 'Member', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5249, 'Identification', '/vendor/alipaysdk/easysdk/php/src/Member', '/vendor/alipaysdk/easysdk/php/src/Member/Identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5250, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5251, 'Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5252, 'AlipayUserCertifyOpenCertifyResponse.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models/AlipayUserCertifyOpenCertifyResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5253, 'AlipayUserCertifyOpenInitializeResponse.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models/AlipayUserCertifyOpenInitializeResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5254, 'AlipayUserCertifyOpenQueryResponse.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models/AlipayUserCertifyOpenQueryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5255, 'IdentityParam.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models/IdentityParam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5256, 'MerchantConfig.php', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models', '/vendor/alipaysdk/easysdk/php/src/Member/Identification/Models/MerchantConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5257, 'Payment', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5258, 'App', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/App', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5259, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/App', '/vendor/alipaysdk/easysdk/php/src/Payment/App/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5260, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/App', '/vendor/alipaysdk/easysdk/php/src/Payment/App/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5261, 'AlipayTradeAppPayResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/App/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/App/Models/AlipayTradeAppPayResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5262, 'Common', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5263, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5264, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5265, 'AlipayDataDataserviceBillDownloadurlQueryResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayDataDataserviceBillDownloadurlQueryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5266, 'AlipayTradeCancelResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeCancelResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5267, 'AlipayTradeCloseResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeCloseResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5268, 'AlipayTradeCreateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeCreateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5269, 'AlipayTradeFastpayRefundQueryResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeFastpayRefundQueryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5270, 'AlipayTradeQueryResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeQueryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5271, 'AlipayTradeRefundResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/AlipayTradeRefundResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5272, 'PresetPayToolInfo.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/PresetPayToolInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5273, 'RefundRoyaltyResult.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/RefundRoyaltyResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5274, 'TradeFundBill.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/TradeFundBill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5275, 'TradeSettleDetail.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/TradeSettleDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5276, 'TradeSettleInfo.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Common/Models/TradeSettleInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5277, 'FaceToFace', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5278, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5279, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5280, 'AlipayTradePayResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models/AlipayTradePayResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5281, 'AlipayTradePrecreateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models/AlipayTradePrecreateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5282, 'TradeFundBill.php', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models/TradeFundBill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5283, 'VoucherDetail.php', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/FaceToFace/Models/VoucherDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5284, 'Huabei', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5285, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5286, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5287, 'AlipayTradeCreateResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Models/AlipayTradeCreateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5288, 'HuabeiConfig.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Huabei/Models/HuabeiConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5289, 'Page', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/Page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5290, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Page', '/vendor/alipaysdk/easysdk/php/src/Payment/Page/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5291, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Page', '/vendor/alipaysdk/easysdk/php/src/Payment/Page/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5292, 'AlipayTradePagePayResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Page/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Page/Models/AlipayTradePagePayResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5293, 'Wap', '/vendor/alipaysdk/easysdk/php/src/Payment', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5294, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5295, 'Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5296, 'AlipayTradeWapPayResponse.php', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap/Models', '/vendor/alipaysdk/easysdk/php/src/Payment/Wap/Models/AlipayTradeWapPayResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5297, 'Security', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5298, 'TextRisk', '/vendor/alipaysdk/easysdk/php/src/Security', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5299, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5300, 'Models', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5301, 'AlipaySecurityRiskContentDetectResponse.php', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk/Models', '/vendor/alipaysdk/easysdk/php/src/Security/TextRisk/Models/AlipaySecurityRiskContentDetectResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5302, 'Util', '/vendor/alipaysdk/easysdk/php/src', '/vendor/alipaysdk/easysdk/php/src/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5303, 'AES', '/vendor/alipaysdk/easysdk/php/src/Util', '/vendor/alipaysdk/easysdk/php/src/Util/AES', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5304, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Util/AES', '/vendor/alipaysdk/easysdk/php/src/Util/AES/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5305, 'Generic', '/vendor/alipaysdk/easysdk/php/src/Util', '/vendor/alipaysdk/easysdk/php/src/Util/Generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5306, 'Client.php', '/vendor/alipaysdk/easysdk/php/src/Util/Generic', '/vendor/alipaysdk/easysdk/php/src/Util/Generic/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5307, 'Models', '/vendor/alipaysdk/easysdk/php/src/Util/Generic', '/vendor/alipaysdk/easysdk/php/src/Util/Generic/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5308, 'AlipayOpenApiGenericResponse.php', '/vendor/alipaysdk/easysdk/php/src/Util/Generic/Models', '/vendor/alipaysdk/easysdk/php/src/Util/Generic/Models/AlipayOpenApiGenericResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5309, 'test', '/vendor/alipaysdk/easysdk/php', '/vendor/alipaysdk/easysdk/php/test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5310, 'TestAccount.php', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/TestAccount.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5311, 'base', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5312, 'image', '/vendor/alipaysdk/easysdk/php/test/base', '/vendor/alipaysdk/easysdk/php/test/base/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5313, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/base/image', '/vendor/alipaysdk/easysdk/php/test/base/image/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5314, 'oauth', '/vendor/alipaysdk/easysdk/php/test/base', '/vendor/alipaysdk/easysdk/php/test/base/oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5315, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/base/oauth', '/vendor/alipaysdk/easysdk/php/test/base/oauth/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5316, 'qrcode', '/vendor/alipaysdk/easysdk/php/test/base', '/vendor/alipaysdk/easysdk/php/test/base/qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5317, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/base/qrcode', '/vendor/alipaysdk/easysdk/php/test/base/qrcode/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5318, 'video', '/vendor/alipaysdk/easysdk/php/test/base', '/vendor/alipaysdk/easysdk/php/test/base/video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5319, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/base/video', '/vendor/alipaysdk/easysdk/php/test/base/video/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5320, 'marketing', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5321, 'openlife', '/vendor/alipaysdk/easysdk/php/test/marketing', '/vendor/alipaysdk/easysdk/php/test/marketing/openlife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5322, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/marketing/openlife', '/vendor/alipaysdk/easysdk/php/test/marketing/openlife/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5323, 'pass', '/vendor/alipaysdk/easysdk/php/test/marketing', '/vendor/alipaysdk/easysdk/php/test/marketing/pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5324, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/marketing/pass', '/vendor/alipaysdk/easysdk/php/test/marketing/pass/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5325, 'templatemessage', '/vendor/alipaysdk/easysdk/php/test/marketing', '/vendor/alipaysdk/easysdk/php/test/marketing/templatemessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5326, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/marketing/templatemessage', '/vendor/alipaysdk/easysdk/php/test/marketing/templatemessage/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5327, 'member', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5328, 'identification', '/vendor/alipaysdk/easysdk/php/test/member', '/vendor/alipaysdk/easysdk/php/test/member/identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5329, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/member/identification', '/vendor/alipaysdk/easysdk/php/test/member/identification/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5330, 'payment', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5331, 'app', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/app', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5332, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/app', '/vendor/alipaysdk/easysdk/php/test/payment/app/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5333, 'common', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5334, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/common', '/vendor/alipaysdk/easysdk/php/test/payment/common/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5335, 'facetoface', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/facetoface', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5336, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/facetoface', '/vendor/alipaysdk/easysdk/php/test/payment/facetoface/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5337, 'huabei', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5338, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/huabei', '/vendor/alipaysdk/easysdk/php/test/payment/huabei/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5339, 'page', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5340, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/page', '/vendor/alipaysdk/easysdk/php/test/payment/page/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5341, 'wap', '/vendor/alipaysdk/easysdk/php/test/payment', '/vendor/alipaysdk/easysdk/php/test/payment/wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5342, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/payment/wap', '/vendor/alipaysdk/easysdk/php/test/payment/wap/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5343, 'resources', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5344, 'fixture', '/vendor/alipaysdk/easysdk/php/test/resources', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5345, 'alipayCertPublicKey_RSA2.crt', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/alipayCertPublicKey_RSA2.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5346, 'alipayRootCert.crt', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/alipayRootCert.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5347, 'appCertPublicKey_2019051064521003.crt', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/appCertPublicKey_2019051064521003.crt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5348, 'privateKey.json', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/privateKey.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5349, 'sample.mp4', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/sample.mp4', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5350, 'sample.png', '/vendor/alipaysdk/easysdk/php/test/resources/fixture', '/vendor/alipaysdk/easysdk/php/test/resources/fixture/sample.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5351, 'security', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5352, 'textrisk', '/vendor/alipaysdk/easysdk/php/test/security', '/vendor/alipaysdk/easysdk/php/test/security/textrisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5353, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/security/textrisk', '/vendor/alipaysdk/easysdk/php/test/security/textrisk/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5354, 'util', '/vendor/alipaysdk/easysdk/php/test', '/vendor/alipaysdk/easysdk/php/test/util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5355, 'aes', '/vendor/alipaysdk/easysdk/php/test/util', '/vendor/alipaysdk/easysdk/php/test/util/aes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5356, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/util/aes', '/vendor/alipaysdk/easysdk/php/test/util/aes/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5357, 'generic', '/vendor/alipaysdk/easysdk/php/test/util', '/vendor/alipaysdk/easysdk/php/test/util/generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5358, 'ClientTest.php', '/vendor/alipaysdk/easysdk/php/test/util/generic', '/vendor/alipaysdk/easysdk/php/test/util/generic/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5359, 'tea', '/vendor/alipaysdk/easysdk', '/vendor/alipaysdk/easysdk/tea', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5360, 'base', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5361, 'image', '/vendor/alipaysdk/easysdk/tea/base', '/vendor/alipaysdk/easysdk/tea/base/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5362, 'Teafile', '/vendor/alipaysdk/easysdk/tea/base/image', '/vendor/alipaysdk/easysdk/tea/base/image/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5363, 'main.tea', '/vendor/alipaysdk/easysdk/tea/base/image', '/vendor/alipaysdk/easysdk/tea/base/image/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5364, 'oauth', '/vendor/alipaysdk/easysdk/tea/base', '/vendor/alipaysdk/easysdk/tea/base/oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5365, 'Teafile', '/vendor/alipaysdk/easysdk/tea/base/oauth', '/vendor/alipaysdk/easysdk/tea/base/oauth/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5366, 'main.tea', '/vendor/alipaysdk/easysdk/tea/base/oauth', '/vendor/alipaysdk/easysdk/tea/base/oauth/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5367, 'qrcode', '/vendor/alipaysdk/easysdk/tea/base', '/vendor/alipaysdk/easysdk/tea/base/qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5368, 'Teafile', '/vendor/alipaysdk/easysdk/tea/base/qrcode', '/vendor/alipaysdk/easysdk/tea/base/qrcode/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5369, 'main.tea', '/vendor/alipaysdk/easysdk/tea/base/qrcode', '/vendor/alipaysdk/easysdk/tea/base/qrcode/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5370, 'video', '/vendor/alipaysdk/easysdk/tea/base', '/vendor/alipaysdk/easysdk/tea/base/video', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5371, 'Teafile', '/vendor/alipaysdk/easysdk/tea/base/video', '/vendor/alipaysdk/easysdk/tea/base/video/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5372, 'main.tea', '/vendor/alipaysdk/easysdk/tea/base/video', '/vendor/alipaysdk/easysdk/tea/base/video/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5373, 'kernel', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/kernel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5374, 'Teafile', '/vendor/alipaysdk/easysdk/tea/kernel', '/vendor/alipaysdk/easysdk/tea/kernel/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5375, 'main.tea', '/vendor/alipaysdk/easysdk/tea/kernel', '/vendor/alipaysdk/easysdk/tea/kernel/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5376, 'marketing', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/marketing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5377, 'openlife', '/vendor/alipaysdk/easysdk/tea/marketing', '/vendor/alipaysdk/easysdk/tea/marketing/openlife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5378, 'Teafile', '/vendor/alipaysdk/easysdk/tea/marketing/openlife', '/vendor/alipaysdk/easysdk/tea/marketing/openlife/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5379, 'main.tea', '/vendor/alipaysdk/easysdk/tea/marketing/openlife', '/vendor/alipaysdk/easysdk/tea/marketing/openlife/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5380, 'pass', '/vendor/alipaysdk/easysdk/tea/marketing', '/vendor/alipaysdk/easysdk/tea/marketing/pass', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5381, 'Teafile', '/vendor/alipaysdk/easysdk/tea/marketing/pass', '/vendor/alipaysdk/easysdk/tea/marketing/pass/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5382, 'main.tea', '/vendor/alipaysdk/easysdk/tea/marketing/pass', '/vendor/alipaysdk/easysdk/tea/marketing/pass/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5383, 'templateMessage', '/vendor/alipaysdk/easysdk/tea/marketing', '/vendor/alipaysdk/easysdk/tea/marketing/templateMessage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5384, 'Teafile', '/vendor/alipaysdk/easysdk/tea/marketing/templateMessage', '/vendor/alipaysdk/easysdk/tea/marketing/templateMessage/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5385, 'main.tea', '/vendor/alipaysdk/easysdk/tea/marketing/templateMessage', '/vendor/alipaysdk/easysdk/tea/marketing/templateMessage/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5386, 'member', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/member', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5387, 'identification', '/vendor/alipaysdk/easysdk/tea/member', '/vendor/alipaysdk/easysdk/tea/member/identification', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5388, 'Teafile', '/vendor/alipaysdk/easysdk/tea/member/identification', '/vendor/alipaysdk/easysdk/tea/member/identification/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5389, 'main.tea', '/vendor/alipaysdk/easysdk/tea/member/identification', '/vendor/alipaysdk/easysdk/tea/member/identification/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5390, 'payment', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5391, 'app', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/app', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5392, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/app', '/vendor/alipaysdk/easysdk/tea/payment/app/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5393, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/app', '/vendor/alipaysdk/easysdk/tea/payment/app/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5394, 'common', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5395, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/common', '/vendor/alipaysdk/easysdk/tea/payment/common/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5396, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/common', '/vendor/alipaysdk/easysdk/tea/payment/common/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5397, 'faceToFace', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/faceToFace', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5398, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/faceToFace', '/vendor/alipaysdk/easysdk/tea/payment/faceToFace/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5399, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/faceToFace', '/vendor/alipaysdk/easysdk/tea/payment/faceToFace/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5400, 'huabei', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/huabei', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5401, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/huabei', '/vendor/alipaysdk/easysdk/tea/payment/huabei/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5402, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/huabei', '/vendor/alipaysdk/easysdk/tea/payment/huabei/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5403, 'page', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/page', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5404, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/page', '/vendor/alipaysdk/easysdk/tea/payment/page/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5405, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/page', '/vendor/alipaysdk/easysdk/tea/payment/page/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5406, 'wap', '/vendor/alipaysdk/easysdk/tea/payment', '/vendor/alipaysdk/easysdk/tea/payment/wap', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5407, 'Teafile', '/vendor/alipaysdk/easysdk/tea/payment/wap', '/vendor/alipaysdk/easysdk/tea/payment/wap/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5408, 'main.tea', '/vendor/alipaysdk/easysdk/tea/payment/wap', '/vendor/alipaysdk/easysdk/tea/payment/wap/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5409, 'security', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5410, 'textRisk', '/vendor/alipaysdk/easysdk/tea/security', '/vendor/alipaysdk/easysdk/tea/security/textRisk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5411, 'Teafile', '/vendor/alipaysdk/easysdk/tea/security/textRisk', '/vendor/alipaysdk/easysdk/tea/security/textRisk/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5412, 'main.tea', '/vendor/alipaysdk/easysdk/tea/security/textRisk', '/vendor/alipaysdk/easysdk/tea/security/textRisk/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5413, 'util', '/vendor/alipaysdk/easysdk/tea', '/vendor/alipaysdk/easysdk/tea/util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5414, 'aes', '/vendor/alipaysdk/easysdk/tea/util', '/vendor/alipaysdk/easysdk/tea/util/aes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5415, 'Teafile', '/vendor/alipaysdk/easysdk/tea/util/aes', '/vendor/alipaysdk/easysdk/tea/util/aes/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5416, 'main.tea', '/vendor/alipaysdk/easysdk/tea/util/aes', '/vendor/alipaysdk/easysdk/tea/util/aes/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5417, 'generic', '/vendor/alipaysdk/easysdk/tea/util', '/vendor/alipaysdk/easysdk/tea/util/generic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5418, 'Teafile', '/vendor/alipaysdk/easysdk/tea/util/generic', '/vendor/alipaysdk/easysdk/tea/util/generic/Teafile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5419, 'main.tea', '/vendor/alipaysdk/easysdk/tea/util/generic', '/vendor/alipaysdk/easysdk/tea/util/generic/main.tea', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5420, 'aliyuncs', '/vendor', '/vendor/aliyuncs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5421, 'oss-sdk-php', '/vendor/aliyuncs', '/vendor/aliyuncs/oss-sdk-php', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5422, '.coveralls.yml', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/.coveralls.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5423, '.gitignore', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5424, '.travis.yml', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5425, 'CHANGELOG.md', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5426, 'LICENSE.md', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5427, 'README-CN.md', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/README-CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5428, 'README.md', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5429, 'autoload.php', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5430, 'build-phar.sh', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/build-phar.sh', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5431, 'composer.json', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5432, 'example.jpg', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/example.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5433, 'index.php', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5434, 'phpunit.xml', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5435, 'samples', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/samples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5436, 'Bucket.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Bucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5437, 'BucketCors.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/BucketCors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5438, 'BucketLifecycle.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/BucketLifecycle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5439, 'BucketLogging.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/BucketLogging.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5440, 'BucketReferer.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/BucketReferer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5441, 'BucketWebsite.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/BucketWebsite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5442, 'Callback.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Callback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5443, 'Common.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Common.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5444, 'Config.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5445, 'Image.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Image.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5446, 'LiveChannel.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/LiveChannel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5447, 'MultipartUpload.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/MultipartUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5448, 'Object.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Object.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5449, 'RunAll.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/RunAll.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5450, 'Signature.php', '/vendor/aliyuncs/oss-sdk-php/samples', '/vendor/aliyuncs/oss-sdk-php/samples/Signature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5451, 'src', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5452, 'OSS', '/vendor/aliyuncs/oss-sdk-php/src', '/vendor/aliyuncs/oss-sdk-php/src/OSS', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5453, 'Core', '/vendor/aliyuncs/oss-sdk-php/src/OSS', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5454, 'MimeTypes.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core/MimeTypes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5455, 'OssException.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core/OssException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5456, 'OssUtil.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Core/OssUtil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5457, 'Http', '/vendor/aliyuncs/oss-sdk-php/src/OSS', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5458, 'LICENSE', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5459, 'RequestCore.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http/RequestCore.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5460, 'RequestCore_Exception.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http/RequestCore_Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5461, 'ResponseCore.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Http/ResponseCore.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5462, 'Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5463, 'BucketInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/BucketInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5464, 'BucketListInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/BucketListInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5465, 'CnameConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/CnameConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5466, 'CorsConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/CorsConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5467, 'CorsRule.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/CorsRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5468, 'GetLiveChannelHistory.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/GetLiveChannelHistory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5469, 'GetLiveChannelInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/GetLiveChannelInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5470, 'GetLiveChannelStatus.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/GetLiveChannelStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5471, 'LifecycleAction.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LifecycleAction.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5472, 'LifecycleConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LifecycleConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5473, 'LifecycleRule.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LifecycleRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5474, 'ListMultipartUploadInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/ListMultipartUploadInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5475, 'ListPartsInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/ListPartsInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5476, 'LiveChannelConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LiveChannelConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5477, 'LiveChannelHistory.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LiveChannelHistory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5478, 'LiveChannelInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LiveChannelInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5479, 'LiveChannelListInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LiveChannelListInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5480, 'LoggingConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/LoggingConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5481, 'ObjectInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/ObjectInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5482, 'ObjectListInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/ObjectListInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5483, 'PartInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/PartInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5484, 'PrefixInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/PrefixInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5485, 'RefererConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/RefererConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5486, 'StorageCapacityConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/StorageCapacityConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5487, 'UploadInfo.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/UploadInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5488, 'WebsiteConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/WebsiteConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5489, 'XmlConfig.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Model/XmlConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5490, 'OssClient.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS', '/vendor/aliyuncs/oss-sdk-php/src/OSS/OssClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5491, 'Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5492, 'AclResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/AclResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5493, 'AppendResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/AppendResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5494, 'BodyResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/BodyResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5495, 'CallbackResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/CallbackResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5496, 'CopyObjectResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/CopyObjectResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5497, 'DeleteObjectsResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/DeleteObjectsResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5498, 'ExistResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ExistResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5499, 'GetCnameResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetCnameResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5500, 'GetCorsResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetCorsResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5501, 'GetLifecycleResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLifecycleResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5502, 'GetLiveChannelHistoryResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLiveChannelHistoryResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5503, 'GetLiveChannelInfoResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLiveChannelInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5504, 'GetLiveChannelStatusResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLiveChannelStatusResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5505, 'GetLocationResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLocationResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5506, 'GetLoggingResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetLoggingResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5507, 'GetRefererResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetRefererResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5508, 'GetStorageCapacityResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetStorageCapacityResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5509, 'GetWebsiteResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/GetWebsiteResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5510, 'HeaderResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/HeaderResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5511, 'InitiateMultipartUploadResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/InitiateMultipartUploadResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5512, 'ListBucketsResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ListBucketsResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5513, 'ListLiveChannelResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ListLiveChannelResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5514, 'ListMultipartUploadResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ListMultipartUploadResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5515, 'ListObjectsResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ListObjectsResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5516, 'ListPartsResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/ListPartsResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5517, 'PutLiveChannelResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/PutLiveChannelResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5518, 'PutSetDeleteResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/PutSetDeleteResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5519, 'Result.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/Result.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5520, 'SymlinkResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/SymlinkResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5521, 'UploadPartResult.php', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result', '/vendor/aliyuncs/oss-sdk-php/src/OSS/Result/UploadPartResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5522, 'tests', '/vendor/aliyuncs/oss-sdk-php', '/vendor/aliyuncs/oss-sdk-php/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5523, 'OSS', '/vendor/aliyuncs/oss-sdk-php/tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5524, 'Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5525, 'AclResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/AclResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5526, 'BodyResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/BodyResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5527, 'BucketCnameTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/BucketCnameTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5528, 'BucketInfoTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/BucketInfoTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5529, 'BucketLiveChannelTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/BucketLiveChannelTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5530, 'CallbackTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/CallbackTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5531, 'CnameConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/CnameConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5532, 'Common.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/Common.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5533, 'ContentTypeTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ContentTypeTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5534, 'CopyObjectResult.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/CopyObjectResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5535, 'CorsConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/CorsConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5536, 'ExistResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ExistResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5537, 'GetCorsResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/GetCorsResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5538, 'GetLifecycleResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/GetLifecycleResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5539, 'GetLoggingResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/GetLoggingResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5540, 'GetRefererResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/GetRefererResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5541, 'GetWebsiteResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/GetWebsiteResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5542, 'HeaderResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/HeaderResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5543, 'HttpTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/HttpTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5544, 'InitiateMultipartUploadResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/InitiateMultipartUploadResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5545, 'LifecycleConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/LifecycleConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5546, 'ListBucketsResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ListBucketsResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5547, 'ListMultipartUploadResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ListMultipartUploadResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5548, 'ListObjectsResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ListObjectsResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5549, 'ListPartsResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ListPartsResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5550, 'LiveChannelXmlTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/LiveChannelXmlTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5551, 'LoggingConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/LoggingConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5552, 'MimeTypesTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/MimeTypesTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5553, 'ObjectAclTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/ObjectAclTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5554, 'OssClientBucketCorsTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketCorsTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5555, 'OssClientBucketLifecycleTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketLifecycleTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5556, 'OssClientBucketLoggingTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketLoggingTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5557, 'OssClientBucketRefererTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketRefererTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5558, 'OssClientBucketStorageCapacityTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketStorageCapacityTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5559, 'OssClientBucketTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5560, 'OssClientBucketWebsiteTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientBucketWebsiteTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5561, 'OssClientImageTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientImageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5562, 'OssClientMultipartUploadTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientMultipartUploadTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5563, 'OssClientObjectTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientObjectTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5564, 'OssClientRestoreObjectTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientRestoreObjectTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5565, 'OssClientSignatureTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientSignatureTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5566, 'OssClientTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5567, 'OssExceptionTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5568, 'OssUtilTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/OssUtilTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5569, 'PutSetDeleteResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/PutSetDeleteResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5570, 'RefererConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/RefererConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5571, 'StorageCapacityTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/StorageCapacityTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5572, 'SymlinkTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/SymlinkTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5573, 'TestOssClientBase.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/TestOssClientBase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5574, 'UploadPartResultTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/UploadPartResultTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5575, 'WebsiteConfigTest.php', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests', '/vendor/aliyuncs/oss-sdk-php/tests/OSS/Tests/WebsiteConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5576, 'autoload.php', '/vendor', '/vendor/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5577, 'bin', '/vendor', '/vendor/bin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5578, 'jp.php', '/vendor/bin', '/vendor/bin/jp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5579, 'jp.php.bat', '/vendor/bin', '/vendor/bin/jp.php.bat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5580, 'var-dump-server', '/vendor/bin', '/vendor/bin/var-dump-server', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5581, 'composer', '/vendor', '/vendor/composer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5582, 'ClassLoader.php', '/vendor/composer', '/vendor/composer/ClassLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5583, 'InstalledVersions.php', '/vendor/composer', '/vendor/composer/InstalledVersions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5584, 'LICENSE', '/vendor/composer', '/vendor/composer/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5585, 'autoload_classmap.php', '/vendor/composer', '/vendor/composer/autoload_classmap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5586, 'autoload_files.php', '/vendor/composer', '/vendor/composer/autoload_files.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5587, 'autoload_namespaces.php', '/vendor/composer', '/vendor/composer/autoload_namespaces.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5588, 'autoload_psr4.php', '/vendor/composer', '/vendor/composer/autoload_psr4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5589, 'autoload_real.php', '/vendor/composer', '/vendor/composer/autoload_real.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5590, 'autoload_static.php', '/vendor/composer', '/vendor/composer/autoload_static.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5591, 'installed.json', '/vendor/composer', '/vendor/composer/installed.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5592, 'installed.php', '/vendor/composer', '/vendor/composer/installed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5593, 'danielstjules', '/vendor', '/vendor/danielstjules', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5594, 'stringy', '/vendor/danielstjules', '/vendor/danielstjules/stringy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5595, 'CHANGELOG.md', '/vendor/danielstjules/stringy', '/vendor/danielstjules/stringy/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5596, 'LICENSE.txt', '/vendor/danielstjules/stringy', '/vendor/danielstjules/stringy/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5597, 'README.md', '/vendor/danielstjules/stringy', '/vendor/danielstjules/stringy/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5598, 'composer.json', '/vendor/danielstjules/stringy', '/vendor/danielstjules/stringy/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5599, 'src', '/vendor/danielstjules/stringy', '/vendor/danielstjules/stringy/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5600, 'Create.php', '/vendor/danielstjules/stringy/src', '/vendor/danielstjules/stringy/src/Create.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5601, 'StaticStringy.php', '/vendor/danielstjules/stringy/src', '/vendor/danielstjules/stringy/src/StaticStringy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5602, 'Stringy.php', '/vendor/danielstjules/stringy/src', '/vendor/danielstjules/stringy/src/Stringy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5603, 'dh2y', '/vendor', '/vendor/dh2y', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5604, 'think-qrcode', '/vendor/dh2y', '/vendor/dh2y/think-qrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5605, 'README.md', '/vendor/dh2y/think-qrcode', '/vendor/dh2y/think-qrcode/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5606, 'composer.json', '/vendor/dh2y/think-qrcode', '/vendor/dh2y/think-qrcode/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5607, 'src', '/vendor/dh2y/think-qrcode', '/vendor/dh2y/think-qrcode/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5608, 'QRcode.php', '/vendor/dh2y/think-qrcode/src', '/vendor/dh2y/think-qrcode/src/QRcode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5609, 'phpqrcode', '/vendor/dh2y/think-qrcode/src', '/vendor/dh2y/think-qrcode/src/phpqrcode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5610, '1533712618.png-errors.txt', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/1533712618.png-errors.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5611, '1533712621.png-errors.txt', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/1533712621.png-errors.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5612, '81519433.png-errors.txt', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/81519433.png-errors.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5613, '81922263.png-errors.txt', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/81922263.png-errors.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5614, 'CHANGELOG', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/CHANGELOG', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5615, 'INSTALL', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/INSTALL', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5616, 'LICENSE', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5617, 'README', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/README', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5618, 'VERSION', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/VERSION', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5619, 'bindings', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/bindings', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5620, 'tcpdf', '/vendor/dh2y/think-qrcode/src/phpqrcode/bindings', '/vendor/dh2y/think-qrcode/src/phpqrcode/bindings/tcpdf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5621, 'qrcode.php', '/vendor/dh2y/think-qrcode/src/phpqrcode/bindings/tcpdf', '/vendor/dh2y/think-qrcode/src/phpqrcode/bindings/tcpdf/qrcode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5622, 'cache', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5623, 'frame_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5624, 'frame_1.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5625, 'frame_10.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_10.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5626, 'frame_10.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_10.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5627, 'frame_11.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_11.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5628, 'frame_11.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_11.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5629, 'frame_12.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_12.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5630, 'frame_12.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_12.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5631, 'frame_13.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_13.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5632, 'frame_13.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_13.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5633, 'frame_14.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_14.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5634, 'frame_14.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_14.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5635, 'frame_15.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_15.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5636, 'frame_15.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_15.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5637, 'frame_16.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_16.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5638, 'frame_16.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5639, 'frame_17.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_17.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5640, 'frame_17.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_17.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5641, 'frame_18.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_18.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5642, 'frame_18.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_18.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5643, 'frame_19.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_19.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5644, 'frame_19.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_19.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5645, 'frame_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5646, 'frame_2.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5647, 'frame_20.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_20.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5648, 'frame_20.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_20.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5649, 'frame_21.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_21.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5650, 'frame_21.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_21.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5651, 'frame_22.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_22.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5652, 'frame_22.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_22.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5653, 'frame_23.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_23.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5654, 'frame_23.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_23.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5655, 'frame_24.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_24.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5656, 'frame_24.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_24.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5657, 'frame_25.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_25.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5658, 'frame_25.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_25.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5659, 'frame_26.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_26.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5660, 'frame_26.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_26.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5661, 'frame_27.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_27.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5662, 'frame_27.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_27.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5663, 'frame_28.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_28.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5664, 'frame_28.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_28.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5665, 'frame_29.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_29.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5666, 'frame_29.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_29.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5667, 'frame_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5668, 'frame_3.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5669, 'frame_30.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_30.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5670, 'frame_30.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_30.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5671, 'frame_31.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_31.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5672, 'frame_31.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_31.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5673, 'frame_32.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_32.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5674, 'frame_32.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_32.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5675, 'frame_33.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_33.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5676, 'frame_33.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_33.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5677, 'frame_34.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_34.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5678, 'frame_34.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_34.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5679, 'frame_35.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_35.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5680, 'frame_35.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_35.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5681, 'frame_36.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_36.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5682, 'frame_36.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_36.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5683, 'frame_37.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_37.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5684, 'frame_37.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_37.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5685, 'frame_38.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_38.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5686, 'frame_38.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_38.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5687, 'frame_39.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_39.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5688, 'frame_39.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_39.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5689, 'frame_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5690, 'frame_4.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5691, 'frame_40.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_40.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5692, 'frame_40.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_40.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5693, 'frame_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5694, 'frame_5.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5695, 'frame_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5696, 'frame_6.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_6.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5697, 'frame_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5698, 'frame_7.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_7.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5699, 'frame_8.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_8.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5700, 'frame_8.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_8.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5701, 'frame_9.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_9.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5702, 'frame_9.png', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/frame_9.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5703, 'mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5704, 'mask_101_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_101_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5705, 'mask_105_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_105_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5706, 'mask_109_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_109_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5707, 'mask_113_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_113_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5708, 'mask_117_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_117_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5709, 'mask_121_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_121_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5710, 'mask_125_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_125_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5711, 'mask_129_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_129_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5712, 'mask_133_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_133_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5713, 'mask_137_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_137_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5714, 'mask_141_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_141_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5715, 'mask_145_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_145_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5716, 'mask_149_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_149_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5717, 'mask_153_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_153_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5718, 'mask_157_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_157_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5719, 'mask_161_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_161_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5720, 'mask_165_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_165_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5721, 'mask_169_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_169_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5722, 'mask_173_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_173_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5723, 'mask_177_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_177_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5724, 'mask_21_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_21_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5725, 'mask_25_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_25_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5726, 'mask_29_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_29_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5727, 'mask_33_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_33_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5728, 'mask_37_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_37_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5729, 'mask_41_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_41_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5730, 'mask_45_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_45_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5731, 'mask_49_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_49_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5732, 'mask_53_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_53_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5733, 'mask_57_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_57_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5734, 'mask_61_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_61_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5735, 'mask_65_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_65_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5736, 'mask_69_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_69_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5737, 'mask_73_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_73_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5738, 'mask_77_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_77_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5739, 'mask_81_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_81_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5740, 'mask_85_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_85_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5741, 'mask_89_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_89_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5742, 'mask_93_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_93_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5743, 'mask_97_0.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_0/mask_97_0.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5744, 'mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5745, 'mask_101_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_101_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5746, 'mask_105_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_105_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5747, 'mask_109_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_109_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5748, 'mask_113_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_113_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5749, 'mask_117_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_117_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5750, 'mask_121_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_121_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5751, 'mask_125_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_125_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5752, 'mask_129_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_129_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5753, 'mask_133_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_133_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5754, 'mask_137_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_137_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5755, 'mask_141_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_141_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5756, 'mask_145_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_145_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5757, 'mask_149_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_149_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5758, 'mask_153_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_153_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5759, 'mask_157_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_157_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5760, 'mask_161_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_161_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5761, 'mask_165_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_165_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5762, 'mask_169_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_169_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5763, 'mask_173_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_173_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5764, 'mask_177_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_177_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5765, 'mask_21_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_21_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5766, 'mask_25_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_25_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5767, 'mask_29_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_29_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5768, 'mask_33_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_33_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5769, 'mask_37_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_37_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5770, 'mask_41_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_41_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5771, 'mask_45_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_45_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5772, 'mask_49_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_49_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5773, 'mask_53_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_53_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5774, 'mask_57_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_57_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5775, 'mask_61_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_61_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5776, 'mask_65_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_65_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5777, 'mask_69_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_69_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5778, 'mask_73_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_73_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5779, 'mask_77_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_77_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5780, 'mask_81_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_81_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5781, 'mask_85_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_85_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5782, 'mask_89_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_89_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5783, 'mask_93_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_93_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5784, 'mask_97_1.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_1/mask_97_1.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5785, 'mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5786, 'mask_101_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_101_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5787, 'mask_105_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_105_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5788, 'mask_109_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_109_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5789, 'mask_113_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_113_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5790, 'mask_117_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_117_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5791, 'mask_121_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_121_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5792, 'mask_125_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_125_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5793, 'mask_129_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_129_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5794, 'mask_133_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_133_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5795, 'mask_137_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_137_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5796, 'mask_141_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_141_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5797, 'mask_145_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_145_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5798, 'mask_149_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_149_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5799, 'mask_153_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_153_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5800, 'mask_157_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_157_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5801, 'mask_161_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_161_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5802, 'mask_165_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_165_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5803, 'mask_169_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_169_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5804, 'mask_173_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_173_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5805, 'mask_177_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_177_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5806, 'mask_21_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_21_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5807, 'mask_25_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_25_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5808, 'mask_29_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_29_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5809, 'mask_33_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_33_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5810, 'mask_37_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_37_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5811, 'mask_41_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_41_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5812, 'mask_45_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_45_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5813, 'mask_49_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_49_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5814, 'mask_53_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_53_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5815, 'mask_57_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_57_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5816, 'mask_61_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_61_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5817, 'mask_65_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_65_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5818, 'mask_69_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_69_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5819, 'mask_73_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_73_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5820, 'mask_77_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_77_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5821, 'mask_81_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_81_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5822, 'mask_85_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_85_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5823, 'mask_89_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_89_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5824, 'mask_93_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_93_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5825, 'mask_97_2.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_2/mask_97_2.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5826, 'mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5827, 'mask_101_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_101_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5828, 'mask_105_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_105_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5829, 'mask_109_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_109_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5830, 'mask_113_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_113_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5831, 'mask_117_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_117_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5832, 'mask_121_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_121_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5833, 'mask_125_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_125_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5834, 'mask_129_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_129_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5835, 'mask_133_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_133_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5836, 'mask_137_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_137_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5837, 'mask_141_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_141_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5838, 'mask_145_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_145_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5839, 'mask_149_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_149_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5840, 'mask_153_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_153_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5841, 'mask_157_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_157_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5842, 'mask_161_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_161_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5843, 'mask_165_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_165_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5844, 'mask_169_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_169_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5845, 'mask_173_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_173_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5846, 'mask_177_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_177_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5847, 'mask_21_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_21_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5848, 'mask_25_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_25_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5849, 'mask_29_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_29_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5850, 'mask_33_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_33_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5851, 'mask_37_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_37_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5852, 'mask_41_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_41_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5853, 'mask_45_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_45_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5854, 'mask_49_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_49_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5855, 'mask_53_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_53_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5856, 'mask_57_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_57_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5857, 'mask_61_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_61_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5858, 'mask_65_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_65_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5859, 'mask_69_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_69_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5860, 'mask_73_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_73_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5861, 'mask_77_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_77_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5862, 'mask_81_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_81_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5863, 'mask_85_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_85_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5864, 'mask_89_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_89_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5865, 'mask_93_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_93_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5866, 'mask_97_3.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_3/mask_97_3.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5867, 'mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5868, 'mask_101_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_101_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5869, 'mask_105_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_105_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5870, 'mask_109_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_109_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5871, 'mask_113_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_113_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5872, 'mask_117_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_117_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5873, 'mask_121_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_121_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5874, 'mask_125_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_125_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5875, 'mask_129_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_129_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5876, 'mask_133_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_133_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5877, 'mask_137_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_137_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5878, 'mask_141_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_141_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5879, 'mask_145_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_145_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5880, 'mask_149_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_149_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5881, 'mask_153_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_153_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5882, 'mask_157_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_157_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5883, 'mask_161_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_161_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5884, 'mask_165_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_165_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5885, 'mask_169_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_169_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5886, 'mask_173_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_173_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5887, 'mask_177_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_177_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5888, 'mask_21_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_21_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5889, 'mask_25_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_25_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5890, 'mask_29_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_29_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5891, 'mask_33_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_33_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5892, 'mask_37_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_37_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5893, 'mask_41_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_41_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5894, 'mask_45_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_45_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5895, 'mask_49_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_49_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5896, 'mask_53_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_53_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5897, 'mask_57_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_57_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5898, 'mask_61_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_61_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5899, 'mask_65_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_65_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5900, 'mask_69_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_69_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5901, 'mask_73_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_73_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5902, 'mask_77_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_77_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5903, 'mask_81_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_81_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5904, 'mask_85_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_85_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5905, 'mask_89_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_89_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5906, 'mask_93_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_93_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5907, 'mask_97_4.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_4/mask_97_4.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5908, 'mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5909, 'mask_101_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_101_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5910, 'mask_105_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_105_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5911, 'mask_109_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_109_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5912, 'mask_113_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_113_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5913, 'mask_117_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_117_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5914, 'mask_121_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_121_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5915, 'mask_125_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_125_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5916, 'mask_129_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_129_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5917, 'mask_133_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_133_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5918, 'mask_137_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_137_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5919, 'mask_141_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_141_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5920, 'mask_145_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_145_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5921, 'mask_149_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_149_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5922, 'mask_153_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_153_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5923, 'mask_157_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_157_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5924, 'mask_161_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_161_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5925, 'mask_165_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_165_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5926, 'mask_169_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_169_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5927, 'mask_173_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_173_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5928, 'mask_177_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_177_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5929, 'mask_21_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_21_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5930, 'mask_25_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_25_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5931, 'mask_29_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_29_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5932, 'mask_33_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_33_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5933, 'mask_37_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_37_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5934, 'mask_41_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_41_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5935, 'mask_45_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_45_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5936, 'mask_49_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_49_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5937, 'mask_53_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_53_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5938, 'mask_57_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_57_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5939, 'mask_61_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_61_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5940, 'mask_65_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_65_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5941, 'mask_69_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_69_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5942, 'mask_73_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_73_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5943, 'mask_77_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_77_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5944, 'mask_81_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_81_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5945, 'mask_85_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_85_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5946, 'mask_89_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_89_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5947, 'mask_93_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_93_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5948, 'mask_97_5.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_5/mask_97_5.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5949, 'mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5950, 'mask_101_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_101_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5951, 'mask_105_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_105_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5952, 'mask_109_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_109_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5953, 'mask_113_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_113_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5954, 'mask_117_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_117_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5955, 'mask_121_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_121_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5956, 'mask_125_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_125_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5957, 'mask_129_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_129_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5958, 'mask_133_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_133_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5959, 'mask_137_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_137_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5960, 'mask_141_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_141_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5961, 'mask_145_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_145_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5962, 'mask_149_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_149_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5963, 'mask_153_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_153_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5964, 'mask_157_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_157_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5965, 'mask_161_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_161_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5966, 'mask_165_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_165_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5967, 'mask_169_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_169_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5968, 'mask_173_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_173_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5969, 'mask_177_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_177_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5970, 'mask_21_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_21_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5971, 'mask_25_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_25_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5972, 'mask_29_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_29_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5973, 'mask_33_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_33_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5974, 'mask_37_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_37_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5975, 'mask_41_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_41_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5976, 'mask_45_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_45_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5977, 'mask_49_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_49_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5978, 'mask_53_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_53_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5979, 'mask_57_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_57_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5980, 'mask_61_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_61_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5981, 'mask_65_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_65_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5982, 'mask_69_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_69_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5983, 'mask_73_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_73_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5984, 'mask_77_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_77_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5985, 'mask_81_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_81_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5986, 'mask_85_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_85_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5987, 'mask_89_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_89_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5988, 'mask_93_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_93_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5989, 'mask_97_6.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_6/mask_97_6.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5990, 'mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5991, 'mask_101_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_101_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5992, 'mask_105_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_105_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5993, 'mask_109_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_109_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5994, 'mask_113_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_113_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5995, 'mask_117_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_117_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5996, 'mask_121_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_121_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5997, 'mask_125_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_125_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5998, 'mask_129_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_129_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(5999, 'mask_133_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_133_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6000, 'mask_137_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_137_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6001, 'mask_141_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_141_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6002, 'mask_145_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_145_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6003, 'mask_149_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_149_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6004, 'mask_153_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_153_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6005, 'mask_157_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_157_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6006, 'mask_161_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_161_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6007, 'mask_165_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_165_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6008, 'mask_169_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_169_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6009, 'mask_173_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_173_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6010, 'mask_177_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_177_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6011, 'mask_21_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_21_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6012, 'mask_25_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_25_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6013, 'mask_29_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_29_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6014, 'mask_33_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_33_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6015, 'mask_37_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_37_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6016, 'mask_41_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_41_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6017, 'mask_45_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_45_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6018, 'mask_49_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_49_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6019, 'mask_53_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_53_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6020, 'mask_57_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_57_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6021, 'mask_61_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_61_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6022, 'mask_65_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_65_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6023, 'mask_69_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_69_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6024, 'mask_73_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_73_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6025, 'mask_77_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_77_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6026, 'mask_81_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_81_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6027, 'mask_85_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_85_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6028, 'mask_89_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_89_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6029, 'mask_93_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_93_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6030, 'mask_97_7.dat', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7', '/vendor/dh2y/think-qrcode/src/phpqrcode/cache/mask_7/mask_97_7.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6031, 'index.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6032, 'phpqrcode.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/phpqrcode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6033, 'qrbitstream.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrbitstream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6034, 'qrconfig.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrconfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6035, 'qrconst.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrconst.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6036, 'qrencode.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrencode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6037, 'qrimage.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrimage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6038, 'qrinput.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrinput.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6039, 'qrlib.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrlib.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6040, 'qrmask.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrmask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6041, 'qrrscode.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrrscode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6042, 'qrspec.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrspec.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6043, 'qrsplit.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrsplit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6044, 'qrtools.php', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/qrtools.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6045, 'tools', '/vendor/dh2y/think-qrcode/src/phpqrcode', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6046, 'merge.bat', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools/merge.bat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6047, 'merge.php', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools/merge.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6048, 'merge.sh', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools/merge.sh', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6049, 'merged_config.php', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools/merged_config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6050, 'merged_header.php', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools', '/vendor/dh2y/think-qrcode/src/phpqrcode/tools/merged_header.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6051, 'simsun.ttc', '/vendor/dh2y/think-qrcode/src', '/vendor/dh2y/think-qrcode/src/simsun.ttc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6052, 'doctrine', '/vendor', '/vendor/doctrine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6053, 'annotations', '/vendor/doctrine', '/vendor/doctrine/annotations', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6054, 'LICENSE', '/vendor/doctrine/annotations', '/vendor/doctrine/annotations/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6055, 'README.md', '/vendor/doctrine/annotations', '/vendor/doctrine/annotations/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6056, 'composer.json', '/vendor/doctrine/annotations', '/vendor/doctrine/annotations/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6057, 'lib', '/vendor/doctrine/annotations', '/vendor/doctrine/annotations/lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6058, 'Doctrine', '/vendor/doctrine/annotations/lib', '/vendor/doctrine/annotations/lib/Doctrine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6059, 'Common', '/vendor/doctrine/annotations/lib/Doctrine', '/vendor/doctrine/annotations/lib/Doctrine/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6060, 'Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6061, 'Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6062, 'Attribute.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attribute.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6063, 'Attributes.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Attributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6064, 'Enum.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Enum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6065, 'IgnoreAnnotation.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6066, 'Required.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Required.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6067, 'Target.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/Target.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6068, 'Annotation.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6069, 'AnnotationException.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6070, 'AnnotationReader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6071, 'AnnotationRegistry.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationRegistry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6072, 'CachedReader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/CachedReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6073, 'DocLexer.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocLexer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6074, 'DocParser.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/DocParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6075, 'FileCacheReader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/FileCacheReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6076, 'IndexedReader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/IndexedReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6077, 'PhpParser.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/PhpParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6078, 'Reader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Reader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6079, 'SimpleAnnotationReader.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/SimpleAnnotationReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6080, 'TokenParser.php', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations', '/vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/TokenParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6081, 'cache', '/vendor/doctrine', '/vendor/doctrine/cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6082, '.coveralls.yml', '/vendor/doctrine/cache', '/vendor/doctrine/cache/.coveralls.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6083, '.gitignore', '/vendor/doctrine/cache', '/vendor/doctrine/cache/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6084, '.travis.yml', '/vendor/doctrine/cache', '/vendor/doctrine/cache/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6085, 'LICENSE', '/vendor/doctrine/cache', '/vendor/doctrine/cache/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6086, 'README.md', '/vendor/doctrine/cache', '/vendor/doctrine/cache/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6087, 'UPGRADE.md', '/vendor/doctrine/cache', '/vendor/doctrine/cache/UPGRADE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6088, 'build.properties', '/vendor/doctrine/cache', '/vendor/doctrine/cache/build.properties', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6089, 'build.xml', '/vendor/doctrine/cache', '/vendor/doctrine/cache/build.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6090, 'composer.json', '/vendor/doctrine/cache', '/vendor/doctrine/cache/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6091, 'lib', '/vendor/doctrine/cache', '/vendor/doctrine/cache/lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6092, 'Doctrine', '/vendor/doctrine/cache/lib', '/vendor/doctrine/cache/lib/Doctrine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6093, 'Common', '/vendor/doctrine/cache/lib/Doctrine', '/vendor/doctrine/cache/lib/Doctrine/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6094, 'Cache', '/vendor/doctrine/cache/lib/Doctrine/Common', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6095, 'ApcCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ApcCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6096, 'ArrayCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ArrayCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6097, 'Cache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6098, 'CacheProvider.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CacheProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6099, 'ChainCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ChainCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6100, 'ClearableCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ClearableCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6101, 'CouchbaseCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/CouchbaseCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6102, 'FileCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FileCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6103, 'FilesystemCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FilesystemCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6104, 'FlushableCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/FlushableCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6105, 'MemcacheCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcacheCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6106, 'MemcachedCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MemcachedCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6107, 'MongoDBCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MongoDBCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6108, 'MultiGetCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/MultiGetCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6109, 'PhpFileCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PhpFileCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6110, 'PredisCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/PredisCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6111, 'RedisCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RedisCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6112, 'RiakCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/RiakCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6113, 'SQLite3Cache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/SQLite3Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6114, 'Version.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/Version.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6115, 'VoidCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/VoidCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6116, 'WinCacheCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/WinCacheCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6117, 'XcacheCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/XcacheCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6118, 'ZendDataCache.php', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache', '/vendor/doctrine/cache/lib/Doctrine/Common/Cache/ZendDataCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6119, 'phpunit.xml.dist', '/vendor/doctrine/cache', '/vendor/doctrine/cache/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6120, 'tests', '/vendor/doctrine/cache', '/vendor/doctrine/cache/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6121, 'Doctrine', '/vendor/doctrine/cache/tests', '/vendor/doctrine/cache/tests/Doctrine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6122, 'Tests', '/vendor/doctrine/cache/tests/Doctrine', '/vendor/doctrine/cache/tests/Doctrine/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6123, 'Common', '/vendor/doctrine/cache/tests/Doctrine/Tests', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6124, 'Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6125, 'ApcCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ApcCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6126, 'ArrayCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ArrayCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6127, 'BaseFileCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/BaseFileCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6128, 'CacheProviderTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CacheProviderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6129, 'CacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6130, 'ChainCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ChainCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6131, 'CouchbaseCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CouchbaseCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6132, 'FileCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FileCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6133, 'FilesystemCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/FilesystemCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6134, 'MemcacheCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcacheCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6135, 'MemcachedCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MemcachedCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6136, 'MongoDBCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/MongoDBCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6137, 'PhpFileCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PhpFileCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6138, 'PredisCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/PredisCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6139, 'RedisCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RedisCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6140, 'RiakCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/RiakCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6141, 'SQLite3CacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/SQLite3CacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6142, 'VoidCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/VoidCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6143, 'WinCacheCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/WinCacheCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6144, 'XcacheCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/XcacheCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6145, 'ZendDataCacheTest.php', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache', '/vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ZendDataCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6146, 'DoctrineTestCase.php', '/vendor/doctrine/cache/tests/Doctrine/Tests', '/vendor/doctrine/cache/tests/Doctrine/Tests/DoctrineTestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6147, 'TestInit.php', '/vendor/doctrine/cache/tests/Doctrine/Tests', '/vendor/doctrine/cache/tests/Doctrine/Tests/TestInit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6148, 'travis', '/vendor/doctrine/cache/tests', '/vendor/doctrine/cache/tests/travis', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6149, 'php.ini', '/vendor/doctrine/cache/tests/travis', '/vendor/doctrine/cache/tests/travis/php.ini', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6150, 'phpunit.travis.xml', '/vendor/doctrine/cache/tests/travis', '/vendor/doctrine/cache/tests/travis/phpunit.travis.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6151, 'lexer', '/vendor/doctrine', '/vendor/doctrine/lexer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6152, 'LICENSE', '/vendor/doctrine/lexer', '/vendor/doctrine/lexer/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6153, 'README.md', '/vendor/doctrine/lexer', '/vendor/doctrine/lexer/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6154, 'composer.json', '/vendor/doctrine/lexer', '/vendor/doctrine/lexer/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6155, 'lib', '/vendor/doctrine/lexer', '/vendor/doctrine/lexer/lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6156, 'Doctrine', '/vendor/doctrine/lexer/lib', '/vendor/doctrine/lexer/lib/Doctrine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6157, 'Common', '/vendor/doctrine/lexer/lib/Doctrine', '/vendor/doctrine/lexer/lib/Doctrine/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6158, 'Lexer', '/vendor/doctrine/lexer/lib/Doctrine/Common', '/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6159, 'AbstractLexer.php', '/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer', '/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/AbstractLexer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6160, 'fastknife', '/vendor', '/vendor/fastknife', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6161, 'ajcaptcha', '/vendor/fastknife', '/vendor/fastknife/ajcaptcha', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6162, 'LICENSE', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6163, 'changelog.md', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/changelog.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6164, 'composer.json', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6165, 'demo.md', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/demo.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6166, 'readme.md', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6167, 'resources', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6168, 'defaultImages', '/vendor/fastknife/ajcaptcha/resources', '/vendor/fastknife/ajcaptcha/resources/defaultImages', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6169, 'jigsaw', '/vendor/fastknife/ajcaptcha/resources/defaultImages', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6170, 'original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6171, '1.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6172, '2.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6173, '3.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6174, '4.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6175, '5.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6176, '6.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/6.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6177, 'bg8.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/original/bg8.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6178, 'slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6179, '1.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6180, '2.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6181, '3.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6182, '4.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6183, '5.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6184, '6.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock', '/vendor/fastknife/ajcaptcha/resources/defaultImages/jigsaw/slidingBlock/6.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6185, 'pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6186, '1.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6187, '2.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6188, '3.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6189, '4.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6190, '5.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/5.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6191, '6.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/6.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6192, 'bg10.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg10.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6193, 'bg11.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg11.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6194, 'bg12.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg12.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6195, 'bg13.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg13.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6196, 'bg14.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg14.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6197, 'bg15.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg15.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6198, 'bg16.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg16.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6199, 'bg17.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg17.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6200, 'bg18.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg18.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6201, 'bg19.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg19.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6202, 'bg20.png', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click', '/vendor/fastknife/ajcaptcha/resources/defaultImages/pic-click/bg20.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6203, 'fonts', '/vendor/fastknife/ajcaptcha/resources', '/vendor/fastknife/ajcaptcha/resources/fonts', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6204, 'WenQuanZhengHei.ttf', '/vendor/fastknife/ajcaptcha/resources/fonts', '/vendor/fastknife/ajcaptcha/resources/fonts/WenQuanZhengHei.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6205, 'license.txt', '/vendor/fastknife/ajcaptcha/resources/fonts', '/vendor/fastknife/ajcaptcha/resources/fonts/license.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6206, 'src', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6207, 'Domain', '/vendor/fastknife/ajcaptcha/src', '/vendor/fastknife/ajcaptcha/src/Domain', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6208, 'Factory.php', '/vendor/fastknife/ajcaptcha/src/Domain', '/vendor/fastknife/ajcaptcha/src/Domain/Factory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6209, 'Logic', '/vendor/fastknife/ajcaptcha/src/Domain', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6210, 'BaseData.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/BaseData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6211, 'BaseImage.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/BaseImage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6212, 'BlockData.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/BlockData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6213, 'BlockImage.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/BlockImage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6214, 'Cache.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6215, 'WordData.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/WordData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6216, 'WordImage.php', '/vendor/fastknife/ajcaptcha/src/Domain/Logic', '/vendor/fastknife/ajcaptcha/src/Domain/Logic/WordImage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6217, 'Vo', '/vendor/fastknife/ajcaptcha/src/Domain', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6218, 'BackgroundVo.php', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', '/vendor/fastknife/ajcaptcha/src/Domain/Vo/BackgroundVo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6219, 'ImageVo.php', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', '/vendor/fastknife/ajcaptcha/src/Domain/Vo/ImageVo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6220, 'OffsetVo.php', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', '/vendor/fastknife/ajcaptcha/src/Domain/Vo/OffsetVo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6221, 'PointVo.php', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', '/vendor/fastknife/ajcaptcha/src/Domain/Vo/PointVo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6222, 'TemplateVo.php', '/vendor/fastknife/ajcaptcha/src/Domain/Vo', '/vendor/fastknife/ajcaptcha/src/Domain/Vo/TemplateVo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6223, 'Exception', '/vendor/fastknife/ajcaptcha/src', '/vendor/fastknife/ajcaptcha/src/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6224, 'BlockException.php', '/vendor/fastknife/ajcaptcha/src/Exception', '/vendor/fastknife/ajcaptcha/src/Exception/BlockException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6225, 'ParamException.php', '/vendor/fastknife/ajcaptcha/src/Exception', '/vendor/fastknife/ajcaptcha/src/Exception/ParamException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6226, 'WordException.php', '/vendor/fastknife/ajcaptcha/src/Exception', '/vendor/fastknife/ajcaptcha/src/Exception/WordException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6227, 'Service', '/vendor/fastknife/ajcaptcha/src', '/vendor/fastknife/ajcaptcha/src/Service', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6228, 'BlockPuzzleCaptchaService.php', '/vendor/fastknife/ajcaptcha/src/Service', '/vendor/fastknife/ajcaptcha/src/Service/BlockPuzzleCaptchaService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6229, 'ClickWordCaptchaService.php', '/vendor/fastknife/ajcaptcha/src/Service', '/vendor/fastknife/ajcaptcha/src/Service/ClickWordCaptchaService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6230, 'Service.php', '/vendor/fastknife/ajcaptcha/src/Service', '/vendor/fastknife/ajcaptcha/src/Service/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6231, 'Utils', '/vendor/fastknife/ajcaptcha/src', '/vendor/fastknife/ajcaptcha/src/Utils', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6232, 'AesUtils.php', '/vendor/fastknife/ajcaptcha/src/Utils', '/vendor/fastknife/ajcaptcha/src/Utils/AesUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6233, 'CacheUtils.php', '/vendor/fastknife/ajcaptcha/src/Utils', '/vendor/fastknife/ajcaptcha/src/Utils/CacheUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6234, 'MathUtils.php', '/vendor/fastknife/ajcaptcha/src/Utils', '/vendor/fastknife/ajcaptcha/src/Utils/MathUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6235, 'RandomUtils.php', '/vendor/fastknife/ajcaptcha/src/Utils', '/vendor/fastknife/ajcaptcha/src/Utils/RandomUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6236, 'config.php', '/vendor/fastknife/ajcaptcha/src', '/vendor/fastknife/ajcaptcha/src/config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6237, 'test', '/vendor/fastknife/ajcaptcha', '/vendor/fastknife/ajcaptcha/test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6238, 'BlockPuzzleController.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/BlockPuzzleController.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6239, 'ClickWordController.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/ClickWordController.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6240, 'autoload.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6241, 'check.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/check.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6242, 'get.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/get.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6243, 'laravel', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/laravel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6244, 'IndexController.php', '/vendor/fastknife/ajcaptcha/test/laravel', '/vendor/fastknife/ajcaptcha/test/laravel/IndexController.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6245, 'captcha.php', '/vendor/fastknife/ajcaptcha/test/laravel', '/vendor/fastknife/ajcaptcha/test/laravel/captcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6246, 'readme.md', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6247, 'testAes.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/testAes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6248, 'testCache.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/testCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6249, 'testImage.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/testImage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6250, 'thinkphp', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/thinkphp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6251, 'Index.php', '/vendor/fastknife/ajcaptcha/test/thinkphp', '/vendor/fastknife/ajcaptcha/test/thinkphp/Index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6252, 'captcha.php', '/vendor/fastknife/ajcaptcha/test/thinkphp', '/vendor/fastknife/ajcaptcha/test/thinkphp/captcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6253, 'verification.php', '/vendor/fastknife/ajcaptcha/test', '/vendor/fastknife/ajcaptcha/test/verification.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6254, 'firebase', '/vendor', '/vendor/firebase', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6255, 'php-jwt', '/vendor/firebase', '/vendor/firebase/php-jwt', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6256, 'LICENSE', '/vendor/firebase/php-jwt', '/vendor/firebase/php-jwt/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6257, 'README.md', '/vendor/firebase/php-jwt', '/vendor/firebase/php-jwt/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6258, 'composer.json', '/vendor/firebase/php-jwt', '/vendor/firebase/php-jwt/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6259, 'src', '/vendor/firebase/php-jwt', '/vendor/firebase/php-jwt/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6260, 'BeforeValidException.php', '/vendor/firebase/php-jwt/src', '/vendor/firebase/php-jwt/src/BeforeValidException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6261, 'ExpiredException.php', '/vendor/firebase/php-jwt/src', '/vendor/firebase/php-jwt/src/ExpiredException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6262, 'JWT.php', '/vendor/firebase/php-jwt/src', '/vendor/firebase/php-jwt/src/JWT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6263, 'SignatureInvalidException.php', '/vendor/firebase/php-jwt/src', '/vendor/firebase/php-jwt/src/SignatureInvalidException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6264, 'godruoyi', '/vendor', '/vendor/godruoyi', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6265, 'php-snowflake', '/vendor/godruoyi', '/vendor/godruoyi/php-snowflake', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6266, '.editorconfig', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/.editorconfig', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6267, '.styleci.yml', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/.styleci.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6268, 'LICENSE', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6269, 'README-zh_CN.md', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/README-zh_CN.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6270, 'README.md', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6271, 'composer.json', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6272, 'src', '/vendor/godruoyi/php-snowflake', '/vendor/godruoyi/php-snowflake/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6273, 'LaravelSequenceResolver.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/LaravelSequenceResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6274, 'RandomSequenceResolver.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/RandomSequenceResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6275, 'RedisSequenceResolver.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/RedisSequenceResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6276, 'SequenceResolver.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/SequenceResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6277, 'Snowflake.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/Snowflake.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6278, 'SwooleSequenceResolver.php', '/vendor/godruoyi/php-snowflake/src', '/vendor/godruoyi/php-snowflake/src/SwooleSequenceResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6279, 'google', '/vendor', '/vendor/google', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6280, 'auth', '/vendor/google', '/vendor/google/auth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6281, 'COPYING', '/vendor/google/auth', '/vendor/google/auth/COPYING', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6282, 'LICENSE', '/vendor/google/auth', '/vendor/google/auth/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6283, 'README.md', '/vendor/google/auth', '/vendor/google/auth/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6284, 'SECURITY.md', '/vendor/google/auth', '/vendor/google/auth/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6285, 'autoload.php', '/vendor/google/auth', '/vendor/google/auth/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6286, 'composer.json', '/vendor/google/auth', '/vendor/google/auth/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6287, 'phpstan.neon.dist', '/vendor/google/auth', '/vendor/google/auth/phpstan.neon.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6288, 'src', '/vendor/google/auth', '/vendor/google/auth/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6289, 'AccessToken.php', '/vendor/google/auth/src', '/vendor/google/auth/src/AccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6290, 'ApplicationDefaultCredentials.php', '/vendor/google/auth/src', '/vendor/google/auth/src/ApplicationDefaultCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6291, 'Cache', '/vendor/google/auth/src', '/vendor/google/auth/src/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6292, 'InvalidArgumentException.php', '/vendor/google/auth/src/Cache', '/vendor/google/auth/src/Cache/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6293, 'Item.php', '/vendor/google/auth/src/Cache', '/vendor/google/auth/src/Cache/Item.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6294, 'MemoryCacheItemPool.php', '/vendor/google/auth/src/Cache', '/vendor/google/auth/src/Cache/MemoryCacheItemPool.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6295, 'SysVCacheItemPool.php', '/vendor/google/auth/src/Cache', '/vendor/google/auth/src/Cache/SysVCacheItemPool.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6296, 'TypedItem.php', '/vendor/google/auth/src/Cache', '/vendor/google/auth/src/Cache/TypedItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6297, 'CacheTrait.php', '/vendor/google/auth/src', '/vendor/google/auth/src/CacheTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6298, 'Credentials', '/vendor/google/auth/src', '/vendor/google/auth/src/Credentials', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6299, 'AppIdentityCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/AppIdentityCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6300, 'GCECredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/GCECredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6301, 'IAMCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/IAMCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6302, 'InsecureCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/InsecureCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6303, 'ServiceAccountCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/ServiceAccountCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6304, 'ServiceAccountJwtAccessCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6305, 'UserRefreshCredentials.php', '/vendor/google/auth/src/Credentials', '/vendor/google/auth/src/Credentials/UserRefreshCredentials.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6306, 'CredentialsLoader.php', '/vendor/google/auth/src', '/vendor/google/auth/src/CredentialsLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6307, 'FetchAuthTokenCache.php', '/vendor/google/auth/src', '/vendor/google/auth/src/FetchAuthTokenCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6308, 'FetchAuthTokenInterface.php', '/vendor/google/auth/src', '/vendor/google/auth/src/FetchAuthTokenInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6309, 'GCECache.php', '/vendor/google/auth/src', '/vendor/google/auth/src/GCECache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6310, 'GetQuotaProjectInterface.php', '/vendor/google/auth/src', '/vendor/google/auth/src/GetQuotaProjectInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6311, 'HttpHandler', '/vendor/google/auth/src', '/vendor/google/auth/src/HttpHandler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6312, 'Guzzle5HttpHandler.php', '/vendor/google/auth/src/HttpHandler', '/vendor/google/auth/src/HttpHandler/Guzzle5HttpHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6313, 'Guzzle6HttpHandler.php', '/vendor/google/auth/src/HttpHandler', '/vendor/google/auth/src/HttpHandler/Guzzle6HttpHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6314, 'Guzzle7HttpHandler.php', '/vendor/google/auth/src/HttpHandler', '/vendor/google/auth/src/HttpHandler/Guzzle7HttpHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6315, 'HttpClientCache.php', '/vendor/google/auth/src/HttpHandler', '/vendor/google/auth/src/HttpHandler/HttpClientCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6316, 'HttpHandlerFactory.php', '/vendor/google/auth/src/HttpHandler', '/vendor/google/auth/src/HttpHandler/HttpHandlerFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6317, 'Iam.php', '/vendor/google/auth/src', '/vendor/google/auth/src/Iam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6318, 'Middleware', '/vendor/google/auth/src', '/vendor/google/auth/src/Middleware', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6319, 'AuthTokenMiddleware.php', '/vendor/google/auth/src/Middleware', '/vendor/google/auth/src/Middleware/AuthTokenMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6320, 'ProxyAuthTokenMiddleware.php', '/vendor/google/auth/src/Middleware', '/vendor/google/auth/src/Middleware/ProxyAuthTokenMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6321, 'ScopedAccessTokenMiddleware.php', '/vendor/google/auth/src/Middleware', '/vendor/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6322, 'SimpleMiddleware.php', '/vendor/google/auth/src/Middleware', '/vendor/google/auth/src/Middleware/SimpleMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6323, 'OAuth2.php', '/vendor/google/auth/src', '/vendor/google/auth/src/OAuth2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6324, 'ProjectIdProviderInterface.php', '/vendor/google/auth/src', '/vendor/google/auth/src/ProjectIdProviderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6325, 'ServiceAccountSignerTrait.php', '/vendor/google/auth/src', '/vendor/google/auth/src/ServiceAccountSignerTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6326, 'SignBlobInterface.php', '/vendor/google/auth/src', '/vendor/google/auth/src/SignBlobInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6327, 'UpdateMetadataInterface.php', '/vendor/google/auth/src', '/vendor/google/auth/src/UpdateMetadataInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6328, 'common-protos', '/vendor/google', '/vendor/google/common-protos', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6329, 'CHANGELOG.md', '/vendor/google/common-protos', '/vendor/google/common-protos/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6330, 'CODE_OF_CONDUCT.md', '/vendor/google/common-protos', '/vendor/google/common-protos/CODE_OF_CONDUCT.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6331, 'CONTRIBUTING.md', '/vendor/google/common-protos', '/vendor/google/common-protos/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6332, 'LICENSE', '/vendor/google/common-protos', '/vendor/google/common-protos/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6333, 'README.md', '/vendor/google/common-protos', '/vendor/google/common-protos/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6334, 'SECURITY.md', '/vendor/google/common-protos', '/vendor/google/common-protos/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6335, 'composer.json', '/vendor/google/common-protos', '/vendor/google/common-protos/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6336, 'metadata', '/vendor/google/common-protos', '/vendor/google/common-protos/metadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6337, 'Api', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Api', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6338, 'Annotations.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Annotations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6339, 'Auth.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Auth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6340, 'Backend.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Backend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6341, 'Billing.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Billing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6342, 'Client.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6343, 'ConfigChange.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/ConfigChange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6344, 'Consumer.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Consumer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6345, 'Context.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Context.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6346, 'Control.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Control.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6347, 'Distribution.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Distribution.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6348, 'Documentation.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Documentation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6349, 'Endpoint.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Endpoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6350, 'Expr', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Expr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6351, 'V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6352, 'CelService.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/CelService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6353, 'Checked.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/Checked.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6354, 'ConformanceService.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/ConformanceService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6355, 'Explain.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/Explain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6356, 'PBEval.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/PBEval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6357, 'Syntax.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/Syntax.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6358, 'Value.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1', '/vendor/google/common-protos/metadata/Api/Expr/V1Alpha1/Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6359, 'V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6360, 'Decl.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1/Decl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6361, 'Expr.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1/Expr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6362, 'PBEval.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1/PBEval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6363, 'Source.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1/Source.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6364, 'Value.php', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1', '/vendor/google/common-protos/metadata/Api/Expr/V1Beta1/Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6365, 'FieldBehavior.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/FieldBehavior.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6366, 'Http.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Http.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6367, 'Httpbody.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Httpbody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6368, 'Label.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Label.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6369, 'LaunchStage.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/LaunchStage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6370, 'Log.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Log.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6371, 'Logging.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Logging.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6372, 'Metric.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Metric.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6373, 'MonitoredResource.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/MonitoredResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6374, 'Monitoring.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Monitoring.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6375, 'Quota.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Quota.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6376, 'Resource.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Resource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6377, 'Routing.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Routing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6378, 'Service.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6379, 'SourceInfo.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/SourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6380, 'SystemParameter.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/SystemParameter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6381, 'Usage.php', '/vendor/google/common-protos/metadata/Api', '/vendor/google/common-protos/metadata/Api/Usage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6382, 'Cloud', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Cloud', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6383, 'ExtendedOperations.php', '/vendor/google/common-protos/metadata/Cloud', '/vendor/google/common-protos/metadata/Cloud/ExtendedOperations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6384, 'Location', '/vendor/google/common-protos/metadata/Cloud', '/vendor/google/common-protos/metadata/Cloud/Location', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6385, 'Locations.php', '/vendor/google/common-protos/metadata/Cloud/Location', '/vendor/google/common-protos/metadata/Cloud/Location/Locations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6386, 'Iam', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Iam', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6387, 'V1', '/vendor/google/common-protos/metadata/Iam', '/vendor/google/common-protos/metadata/Iam/V1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6388, 'IamPolicy.php', '/vendor/google/common-protos/metadata/Iam/V1', '/vendor/google/common-protos/metadata/Iam/V1/IamPolicy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6389, 'Logging', '/vendor/google/common-protos/metadata/Iam/V1', '/vendor/google/common-protos/metadata/Iam/V1/Logging', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6390, 'AuditData.php', '/vendor/google/common-protos/metadata/Iam/V1/Logging', '/vendor/google/common-protos/metadata/Iam/V1/Logging/AuditData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6391, 'Options.php', '/vendor/google/common-protos/metadata/Iam/V1', '/vendor/google/common-protos/metadata/Iam/V1/Options.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6392, 'Policy.php', '/vendor/google/common-protos/metadata/Iam/V1', '/vendor/google/common-protos/metadata/Iam/V1/Policy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6393, 'Logging', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Logging', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6394, 'Type', '/vendor/google/common-protos/metadata/Logging', '/vendor/google/common-protos/metadata/Logging/Type', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6395, 'HttpRequest.php', '/vendor/google/common-protos/metadata/Logging/Type', '/vendor/google/common-protos/metadata/Logging/Type/HttpRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6396, 'LogSeverity.php', '/vendor/google/common-protos/metadata/Logging/Type', '/vendor/google/common-protos/metadata/Logging/Type/LogSeverity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6397, 'Rpc', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Rpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6398, 'Code.php', '/vendor/google/common-protos/metadata/Rpc', '/vendor/google/common-protos/metadata/Rpc/Code.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6399, 'ErrorDetails.php', '/vendor/google/common-protos/metadata/Rpc', '/vendor/google/common-protos/metadata/Rpc/ErrorDetails.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6400, 'Status.php', '/vendor/google/common-protos/metadata/Rpc', '/vendor/google/common-protos/metadata/Rpc/Status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6401, 'Type', '/vendor/google/common-protos/metadata', '/vendor/google/common-protos/metadata/Type', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6402, 'CalendarPeriod.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/CalendarPeriod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6403, 'Color.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6404, 'Date.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Date.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6405, 'Datetime.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Datetime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6406, 'Dayofweek.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Dayofweek.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6407, 'Expr.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Expr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6408, 'Fraction.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Fraction.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6409, 'Interval.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Interval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6410, 'Latlng.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Latlng.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6411, 'Money.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Money.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6412, 'Month.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Month.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6413, 'PostalAddress.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/PostalAddress.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6414, 'Quaternion.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Quaternion.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6415, 'Timeofday.php', '/vendor/google/common-protos/metadata/Type', '/vendor/google/common-protos/metadata/Type/Timeofday.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6416, 'renovate.json', '/vendor/google/common-protos', '/vendor/google/common-protos/renovate.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6417, 'src', '/vendor/google/common-protos', '/vendor/google/common-protos/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6418, 'Api', '/vendor/google/common-protos/src', '/vendor/google/common-protos/src/Api', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6419, 'Advice.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Advice.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6420, 'AuthProvider.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/AuthProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6421, 'AuthRequirement.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/AuthRequirement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6422, 'Authentication.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Authentication.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6423, 'AuthenticationRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/AuthenticationRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6424, 'Backend.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Backend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6425, 'BackendRule', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/BackendRule', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6426, 'PathTranslation.php', '/vendor/google/common-protos/src/Api/BackendRule', '/vendor/google/common-protos/src/Api/BackendRule/PathTranslation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6427, 'BackendRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/BackendRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6428, 'BackendRule_PathTranslation.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/BackendRule_PathTranslation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6429, 'Billing', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Billing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6430, 'BillingDestination.php', '/vendor/google/common-protos/src/Api/Billing', '/vendor/google/common-protos/src/Api/Billing/BillingDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6431, 'Billing.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Billing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6432, 'Billing_BillingDestination.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Billing_BillingDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6433, 'ChangeType.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ChangeType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6434, 'ConfigChange.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ConfigChange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6435, 'Context.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Context.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6436, 'ContextRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ContextRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6437, 'Control.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Control.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6438, 'CustomHttpPattern.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/CustomHttpPattern.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6439, 'Distribution', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6440, 'BucketOptions', '/vendor/google/common-protos/src/Api/Distribution', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6441, 'Explicit.php', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions/Explicit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6442, 'Exponential.php', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions/Exponential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6443, 'Linear.php', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions/Linear.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6444, 'BucketOptions.php', '/vendor/google/common-protos/src/Api/Distribution', '/vendor/google/common-protos/src/Api/Distribution/BucketOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6445, 'Exemplar.php', '/vendor/google/common-protos/src/Api/Distribution', '/vendor/google/common-protos/src/Api/Distribution/Exemplar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6446, 'Range.php', '/vendor/google/common-protos/src/Api/Distribution', '/vendor/google/common-protos/src/Api/Distribution/Range.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6447, 'Distribution.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6448, 'Distribution_BucketOptions.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_BucketOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6449, 'Distribution_BucketOptions_Explicit.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_BucketOptions_Explicit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6450, 'Distribution_BucketOptions_Exponential.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_BucketOptions_Exponential.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6451, 'Distribution_BucketOptions_Linear.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_BucketOptions_Linear.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6452, 'Distribution_Exemplar.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_Exemplar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6453, 'Distribution_Range.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Distribution_Range.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6454, 'Documentation.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Documentation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6455, 'DocumentationRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/DocumentationRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6456, 'Endpoint.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Endpoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6457, 'Expr', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Expr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6458, 'V1alpha1', '/vendor/google/common-protos/src/Api/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6459, 'CheckRequest.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/CheckRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6460, 'CheckResponse.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/CheckResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6461, 'CheckedExpr.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/CheckedExpr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6462, 'Constant.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Constant.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6463, 'Decl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6464, 'FunctionDecl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl/FunctionDecl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6465, 'Overload.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl/FunctionDecl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl/FunctionDecl/Overload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6466, 'FunctionDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl/FunctionDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6467, 'IdentDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl/IdentDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6468, 'Decl.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6469, 'Decl_FunctionDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl_FunctionDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6470, 'Decl_FunctionDecl_Overload.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl_FunctionDecl_Overload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6471, 'Decl_IdentDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Decl_IdentDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6472, 'EnumValue.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EnumValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6473, 'ErrorSet.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ErrorSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6474, 'EvalRequest.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6475, 'EvalResponse.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6476, 'EvalState', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalState', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6477, 'Result.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalState', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalState/Result.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6478, 'EvalState.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalState.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6479, 'EvalState_Result.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/EvalState_Result.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6480, 'Explain', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Explain', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6481, 'ExprStep.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Explain', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Explain/ExprStep.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6482, 'Explain.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Explain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6483, 'Explain_ExprStep.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Explain_ExprStep.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6484, 'Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6485, 'Call.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6486, 'Comprehension.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/Comprehension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6487, 'CreateList.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/CreateList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6488, 'CreateStruct', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/CreateStruct', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6489, 'Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/CreateStruct', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/CreateStruct/Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6490, 'CreateStruct.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/CreateStruct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6491, 'Ident.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/Ident.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6492, 'Select.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6493, 'Expr.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6494, 'ExprValue.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ExprValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6495, 'Expr_Call.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6496, 'Expr_Comprehension.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_Comprehension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6497, 'Expr_CreateList.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_CreateList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6498, 'Expr_CreateStruct.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_CreateStruct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6499, 'Expr_CreateStruct_Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_CreateStruct_Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6500, 'Expr_Ident.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_Ident.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6501, 'Expr_Select.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Expr_Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6502, 'IssueDetails', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/IssueDetails', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6503, 'Severity.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/IssueDetails', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/IssueDetails/Severity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6504, 'IssueDetails.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/IssueDetails.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6505, 'IssueDetails_Severity.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/IssueDetails_Severity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6506, 'ListValue.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ListValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6507, 'MapValue', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/MapValue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6508, 'Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/MapValue', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/MapValue/Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6509, 'MapValue.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/MapValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6510, 'MapValue_Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/MapValue_Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6511, 'ParseRequest.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ParseRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6512, 'ParseResponse.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ParseResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6513, 'ParsedExpr.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/ParsedExpr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6514, 'Reference.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Reference.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6515, 'SourceInfo.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/SourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6516, 'SourcePosition.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/SourcePosition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6517, 'Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6518, 'AbstractType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/AbstractType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6519, 'FunctionType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/FunctionType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6520, 'ListType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/ListType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6521, 'MapType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/MapType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6522, 'PrimitiveType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/PrimitiveType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6523, 'WellKnownType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type/WellKnownType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6524, 'Type.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6525, 'Type_AbstractType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_AbstractType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6526, 'Type_FunctionType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_FunctionType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6527, 'Type_ListType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_ListType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6528, 'Type_MapType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_MapType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6529, 'Type_PrimitiveType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_PrimitiveType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6530, 'Type_WellKnownType.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Type_WellKnownType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6531, 'UnknownSet.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/UnknownSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6532, 'Value.php', '/vendor/google/common-protos/src/Api/Expr/V1alpha1', '/vendor/google/common-protos/src/Api/Expr/V1alpha1/Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6533, 'V1beta1', '/vendor/google/common-protos/src/Api/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6534, 'Decl.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Decl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6535, 'DeclType.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/DeclType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6536, 'EnumValue.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EnumValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6537, 'ErrorSet.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/ErrorSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6538, 'EvalState', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EvalState', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6539, 'Result.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EvalState', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EvalState/Result.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6540, 'EvalState.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EvalState.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6541, 'EvalState_Result.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/EvalState_Result.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6542, 'Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6543, 'Call.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6544, 'Comprehension.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/Comprehension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6545, 'CreateList.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/CreateList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6546, 'CreateStruct', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/CreateStruct', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6547, 'Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/CreateStruct', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/CreateStruct/Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6548, 'CreateStruct.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/CreateStruct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6549, 'Ident.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/Ident.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6550, 'Select.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6551, 'Expr.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6552, 'ExprValue.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/ExprValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6553, 'Expr_Call.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6554, 'Expr_Comprehension.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_Comprehension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6555, 'Expr_CreateList.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_CreateList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6556, 'Expr_CreateStruct.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_CreateStruct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6557, 'Expr_CreateStruct_Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_CreateStruct_Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6558, 'Expr_Ident.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_Ident.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6559, 'Expr_Select.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Expr_Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6560, 'FunctionDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/FunctionDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6561, 'IdRef.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/IdRef.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6562, 'IdentDecl.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/IdentDecl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6563, 'ListValue.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/ListValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6564, 'Literal.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Literal.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6565, 'MapValue', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/MapValue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6566, 'Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1/MapValue', '/vendor/google/common-protos/src/Api/Expr/V1beta1/MapValue/Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6567, 'MapValue.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/MapValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6568, 'MapValue_Entry.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/MapValue_Entry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6569, 'ParsedExpr.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/ParsedExpr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6570, 'SourceInfo.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/SourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6571, 'SourcePosition.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/SourcePosition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6572, 'UnknownSet.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/UnknownSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6573, 'Value.php', '/vendor/google/common-protos/src/Api/Expr/V1beta1', '/vendor/google/common-protos/src/Api/Expr/V1beta1/Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6574, 'FieldBehavior.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/FieldBehavior.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6575, 'Http.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Http.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6576, 'HttpBody.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/HttpBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6577, 'HttpRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/HttpRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6578, 'LabelDescriptor', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/LabelDescriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6579, 'ValueType.php', '/vendor/google/common-protos/src/Api/LabelDescriptor', '/vendor/google/common-protos/src/Api/LabelDescriptor/ValueType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6580, 'LabelDescriptor.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/LabelDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6581, 'LabelDescriptor_ValueType.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/LabelDescriptor_ValueType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6582, 'LaunchStage.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/LaunchStage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6583, 'LogDescriptor.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/LogDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6584, 'Logging', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Logging', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6585, 'LoggingDestination.php', '/vendor/google/common-protos/src/Api/Logging', '/vendor/google/common-protos/src/Api/Logging/LoggingDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6586, 'Logging.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Logging.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6587, 'Logging_LoggingDestination.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Logging_LoggingDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6588, 'Metric.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Metric.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6589, 'MetricDescriptor', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricDescriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6590, 'MetricDescriptorMetadata.php', '/vendor/google/common-protos/src/Api/MetricDescriptor', '/vendor/google/common-protos/src/Api/MetricDescriptor/MetricDescriptorMetadata.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6591, 'MetricKind.php', '/vendor/google/common-protos/src/Api/MetricDescriptor', '/vendor/google/common-protos/src/Api/MetricDescriptor/MetricKind.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6592, 'ValueType.php', '/vendor/google/common-protos/src/Api/MetricDescriptor', '/vendor/google/common-protos/src/Api/MetricDescriptor/ValueType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6593, 'MetricDescriptor.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6594, 'MetricDescriptor_MetricDescriptorMetadata.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricDescriptor_MetricDescriptorMetadata.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6595, 'MetricDescriptor_MetricKind.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricDescriptor_MetricKind.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6596, 'MetricDescriptor_ValueType.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricDescriptor_ValueType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6597, 'MetricRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MetricRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6598, 'MonitoredResource.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MonitoredResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6599, 'MonitoredResourceDescriptor.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MonitoredResourceDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6600, 'MonitoredResourceMetadata.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/MonitoredResourceMetadata.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6601, 'Monitoring', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Monitoring', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6602, 'MonitoringDestination.php', '/vendor/google/common-protos/src/Api/Monitoring', '/vendor/google/common-protos/src/Api/Monitoring/MonitoringDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6603, 'Monitoring.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Monitoring.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6604, 'Monitoring_MonitoringDestination.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Monitoring_MonitoringDestination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6605, 'OAuthRequirements.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/OAuthRequirements.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6606, 'Page.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Page.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6607, 'ProjectProperties.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ProjectProperties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6608, 'Property', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Property', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6609, 'PropertyType.php', '/vendor/google/common-protos/src/Api/Property', '/vendor/google/common-protos/src/Api/Property/PropertyType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6610, 'Property.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Property.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6611, 'Property_PropertyType.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Property_PropertyType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6612, 'Quota.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Quota.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6613, 'QuotaLimit.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/QuotaLimit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6614, 'ResourceDescriptor', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ResourceDescriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6615, 'History.php', '/vendor/google/common-protos/src/Api/ResourceDescriptor', '/vendor/google/common-protos/src/Api/ResourceDescriptor/History.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6616, 'ResourceDescriptor.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ResourceDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6617, 'ResourceDescriptor_History.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ResourceDescriptor_History.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6618, 'ResourceReference.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/ResourceReference.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6619, 'RoutingParameter.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/RoutingParameter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6620, 'RoutingRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/RoutingRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6621, 'Service.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6622, 'SourceInfo.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/SourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6623, 'SystemParameter.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/SystemParameter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6624, 'SystemParameterRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/SystemParameterRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6625, 'SystemParameters.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/SystemParameters.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6626, 'Usage.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/Usage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6627, 'UsageRule.php', '/vendor/google/common-protos/src/Api', '/vendor/google/common-protos/src/Api/UsageRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6628, 'Cloud', '/vendor/google/common-protos/src', '/vendor/google/common-protos/src/Cloud', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6629, 'Iam', '/vendor/google/common-protos/src/Cloud', '/vendor/google/common-protos/src/Cloud/Iam', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6630, 'V1', '/vendor/google/common-protos/src/Cloud/Iam', '/vendor/google/common-protos/src/Cloud/Iam/V1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6631, 'AuditConfigDelta', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/AuditConfigDelta', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6632, 'Action.php', '/vendor/google/common-protos/src/Cloud/Iam/V1/AuditConfigDelta', '/vendor/google/common-protos/src/Cloud/Iam/V1/AuditConfigDelta/Action.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6633, 'AuditConfigDelta.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/AuditConfigDelta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6634, 'AuditConfigDelta_Action.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/AuditConfigDelta_Action.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6635, 'Binding.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/Binding.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6636, 'BindingDelta', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/BindingDelta', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6637, 'Action.php', '/vendor/google/common-protos/src/Cloud/Iam/V1/BindingDelta', '/vendor/google/common-protos/src/Cloud/Iam/V1/BindingDelta/Action.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6638, 'BindingDelta.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/BindingDelta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6639, 'BindingDelta_Action.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/BindingDelta_Action.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6640, 'GetIamPolicyRequest.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/GetIamPolicyRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6641, 'GetPolicyOptions.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/GetPolicyOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6642, 'Policy.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/Policy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6643, 'PolicyDelta.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/PolicyDelta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6644, 'SetIamPolicyRequest.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/SetIamPolicyRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6645, 'TestIamPermissionsRequest.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/TestIamPermissionsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6646, 'TestIamPermissionsResponse.php', '/vendor/google/common-protos/src/Cloud/Iam/V1', '/vendor/google/common-protos/src/Cloud/Iam/V1/TestIamPermissionsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6647, 'Location', '/vendor/google/common-protos/src/Cloud', '/vendor/google/common-protos/src/Cloud/Location', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6648, 'GetLocationRequest.php', '/vendor/google/common-protos/src/Cloud/Location', '/vendor/google/common-protos/src/Cloud/Location/GetLocationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6649, 'ListLocationsRequest.php', '/vendor/google/common-protos/src/Cloud/Location', '/vendor/google/common-protos/src/Cloud/Location/ListLocationsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6650, 'ListLocationsResponse.php', '/vendor/google/common-protos/src/Cloud/Location', '/vendor/google/common-protos/src/Cloud/Location/ListLocationsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6651, 'Location.php', '/vendor/google/common-protos/src/Cloud/Location', '/vendor/google/common-protos/src/Cloud/Location/Location.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6652, 'Logging', '/vendor/google/common-protos/src/Cloud', '/vendor/google/common-protos/src/Cloud/Logging', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6653, 'Type', '/vendor/google/common-protos/src/Cloud/Logging', '/vendor/google/common-protos/src/Cloud/Logging/Type', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6654, 'HttpRequest.php', '/vendor/google/common-protos/src/Cloud/Logging/Type', '/vendor/google/common-protos/src/Cloud/Logging/Type/HttpRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6655, 'LogSeverity.php', '/vendor/google/common-protos/src/Cloud/Logging/Type', '/vendor/google/common-protos/src/Cloud/Logging/Type/LogSeverity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6656, 'OperationResponseMapping.php', '/vendor/google/common-protos/src/Cloud', '/vendor/google/common-protos/src/Cloud/OperationResponseMapping.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6657, 'Iam', '/vendor/google/common-protos/src', '/vendor/google/common-protos/src/Iam', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6658, 'V1', '/vendor/google/common-protos/src/Iam', '/vendor/google/common-protos/src/Iam/V1', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6659, 'Logging', '/vendor/google/common-protos/src/Iam/V1', '/vendor/google/common-protos/src/Iam/V1/Logging', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6660, 'AuditData.php', '/vendor/google/common-protos/src/Iam/V1/Logging', '/vendor/google/common-protos/src/Iam/V1/Logging/AuditData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6661, 'Rpc', '/vendor/google/common-protos/src', '/vendor/google/common-protos/src/Rpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6662, 'BadRequest', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/BadRequest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6663, 'FieldViolation.php', '/vendor/google/common-protos/src/Rpc/BadRequest', '/vendor/google/common-protos/src/Rpc/BadRequest/FieldViolation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6664, 'BadRequest.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/BadRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6665, 'BadRequest_FieldViolation.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/BadRequest_FieldViolation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6666, 'Code.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/Code.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6667, 'DebugInfo.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/DebugInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6668, 'ErrorInfo.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/ErrorInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6669, 'Help', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/Help', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6670, 'Link.php', '/vendor/google/common-protos/src/Rpc/Help', '/vendor/google/common-protos/src/Rpc/Help/Link.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6671, 'Help.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/Help.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6672, 'Help_Link.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/Help_Link.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6673, 'LocalizedMessage.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/LocalizedMessage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6674, 'PreconditionFailure', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/PreconditionFailure', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6675, 'Violation.php', '/vendor/google/common-protos/src/Rpc/PreconditionFailure', '/vendor/google/common-protos/src/Rpc/PreconditionFailure/Violation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6676, 'PreconditionFailure.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/PreconditionFailure.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6677, 'PreconditionFailure_Violation.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/PreconditionFailure_Violation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6678, 'QuotaFailure', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/QuotaFailure', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6679, 'Violation.php', '/vendor/google/common-protos/src/Rpc/QuotaFailure', '/vendor/google/common-protos/src/Rpc/QuotaFailure/Violation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6680, 'QuotaFailure.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/QuotaFailure.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6681, 'QuotaFailure_Violation.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/QuotaFailure_Violation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6682, 'RequestInfo.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/RequestInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6683, 'ResourceInfo.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/ResourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6684, 'RetryInfo.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/RetryInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6685, 'Status.php', '/vendor/google/common-protos/src/Rpc', '/vendor/google/common-protos/src/Rpc/Status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6686, 'Type', '/vendor/google/common-protos/src', '/vendor/google/common-protos/src/Type', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6687, 'CalendarPeriod.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/CalendarPeriod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6688, 'Color.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6689, 'Date.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Date.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6690, 'DateTime.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/DateTime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6691, 'DayOfWeek.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/DayOfWeek.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6692, 'Expr.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Expr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6693, 'Fraction.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Fraction.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6694, 'Interval.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Interval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6695, 'LatLng.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/LatLng.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6696, 'Money.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Money.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6697, 'Month.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Month.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6698, 'PostalAddress.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/PostalAddress.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6699, 'Quaternion.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/Quaternion.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6700, 'TimeOfDay.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/TimeOfDay.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6701, 'TimeZone.php', '/vendor/google/common-protos/src/Type', '/vendor/google/common-protos/src/Type/TimeZone.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6702, 'gax', '/vendor/google', '/vendor/google/gax', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6703, 'CHANGELOG.md', '/vendor/google/gax', '/vendor/google/gax/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6704, 'CODE_OF_CONDUCT.md', '/vendor/google/gax', '/vendor/google/gax/CODE_OF_CONDUCT.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6705, 'LICENSE', '/vendor/google/gax', '/vendor/google/gax/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6706, 'README.md', '/vendor/google/gax', '/vendor/google/gax/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6707, 'SECURITY.md', '/vendor/google/gax', '/vendor/google/gax/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6708, 'VERSION', '/vendor/google/gax', '/vendor/google/gax/VERSION', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6709, 'composer.json', '/vendor/google/gax', '/vendor/google/gax/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6710, 'metadata', '/vendor/google/gax', '/vendor/google/gax/metadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6711, 'ApiCore', '/vendor/google/gax/metadata', '/vendor/google/gax/metadata/ApiCore', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6712, 'Testing', '/vendor/google/gax/metadata/ApiCore', '/vendor/google/gax/metadata/ApiCore/Testing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6713, 'Mocks.php', '/vendor/google/gax/metadata/ApiCore/Testing', '/vendor/google/gax/metadata/ApiCore/Testing/Mocks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6714, 'Google', '/vendor/google/gax/metadata', '/vendor/google/gax/metadata/Google', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6715, 'ApiCore', '/vendor/google/gax/metadata/Google', '/vendor/google/gax/metadata/Google/ApiCore', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6716, 'Tests', '/vendor/google/gax/metadata/Google/ApiCore', '/vendor/google/gax/metadata/Google/ApiCore/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6717, 'Unit', '/vendor/google/gax/metadata/Google/ApiCore/Tests', '/vendor/google/gax/metadata/Google/ApiCore/Tests/Unit', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6718, 'Example.php', '/vendor/google/gax/metadata/Google/ApiCore/Tests/Unit', '/vendor/google/gax/metadata/Google/ApiCore/Tests/Unit/Example.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6719, 'README.md', '/vendor/google/gax/metadata', '/vendor/google/gax/metadata/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6720, 'phpstan.neon.dist', '/vendor/google/gax', '/vendor/google/gax/phpstan.neon.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6721, 'phpunit.xml.dist', '/vendor/google/gax', '/vendor/google/gax/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6722, 'renovate.json', '/vendor/google/gax', '/vendor/google/gax/renovate.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6723, 'src', '/vendor/google/gax', '/vendor/google/gax/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6724, 'AgentHeader.php', '/vendor/google/gax/src', '/vendor/google/gax/src/AgentHeader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6725, 'ApiException.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ApiException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6726, 'ApiStatus.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ApiStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6727, 'ArrayTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ArrayTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6728, 'BidiStream.php', '/vendor/google/gax/src', '/vendor/google/gax/src/BidiStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6729, 'Call.php', '/vendor/google/gax/src', '/vendor/google/gax/src/Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6730, 'ClientStream.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ClientStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6731, 'CredentialsWrapper.php', '/vendor/google/gax/src', '/vendor/google/gax/src/CredentialsWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6732, 'FixedSizeCollection.php', '/vendor/google/gax/src', '/vendor/google/gax/src/FixedSizeCollection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6733, 'GPBLabel.php', '/vendor/google/gax/src', '/vendor/google/gax/src/GPBLabel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6734, 'GPBType.php', '/vendor/google/gax/src', '/vendor/google/gax/src/GPBType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6735, 'GapicClientTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/GapicClientTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6736, 'GrpcSupportTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/GrpcSupportTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6737, 'Middleware', '/vendor/google/gax/src', '/vendor/google/gax/src/Middleware', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6738, 'CredentialsWrapperMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/CredentialsWrapperMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6739, 'FixedHeaderMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/FixedHeaderMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6740, 'OperationsMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/OperationsMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6741, 'OptionsFilterMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/OptionsFilterMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6742, 'PagedMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/PagedMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6743, 'ResponseMetadataMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/ResponseMetadataMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6744, 'RetryMiddleware.php', '/vendor/google/gax/src/Middleware', '/vendor/google/gax/src/Middleware/RetryMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6745, 'OperationResponse.php', '/vendor/google/gax/src', '/vendor/google/gax/src/OperationResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6746, 'Page.php', '/vendor/google/gax/src', '/vendor/google/gax/src/Page.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6747, 'PageStreamingDescriptor.php', '/vendor/google/gax/src', '/vendor/google/gax/src/PageStreamingDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6748, 'PagedListResponse.php', '/vendor/google/gax/src', '/vendor/google/gax/src/PagedListResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6749, 'PathTemplate.php', '/vendor/google/gax/src', '/vendor/google/gax/src/PathTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6750, 'PollingTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/PollingTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6751, 'RequestBuilder.php', '/vendor/google/gax/src', '/vendor/google/gax/src/RequestBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6752, 'RequestParamsHeaderDescriptor.php', '/vendor/google/gax/src', '/vendor/google/gax/src/RequestParamsHeaderDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6753, 'ResourceTemplate', '/vendor/google/gax/src', '/vendor/google/gax/src/ResourceTemplate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6754, 'AbsoluteResourceTemplate.php', '/vendor/google/gax/src/ResourceTemplate', '/vendor/google/gax/src/ResourceTemplate/AbsoluteResourceTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6755, 'Parser.php', '/vendor/google/gax/src/ResourceTemplate', '/vendor/google/gax/src/ResourceTemplate/Parser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6756, 'RelativeResourceTemplate.php', '/vendor/google/gax/src/ResourceTemplate', '/vendor/google/gax/src/ResourceTemplate/RelativeResourceTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6757, 'ResourceTemplateInterface.php', '/vendor/google/gax/src/ResourceTemplate', '/vendor/google/gax/src/ResourceTemplate/ResourceTemplateInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6758, 'Segment.php', '/vendor/google/gax/src/ResourceTemplate', '/vendor/google/gax/src/ResourceTemplate/Segment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6759, 'RetrySettings.php', '/vendor/google/gax/src', '/vendor/google/gax/src/RetrySettings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6760, 'Serializer.php', '/vendor/google/gax/src', '/vendor/google/gax/src/Serializer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6761, 'ServerStream.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ServerStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6762, 'ServerStreamingCallInterface.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ServerStreamingCallInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6763, 'ServiceAddressTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ServiceAddressTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6764, 'Testing', '/vendor/google/gax/src', '/vendor/google/gax/src/Testing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6765, 'GeneratedTest.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/GeneratedTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6766, 'MessageAwareArrayComparator.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MessageAwareArrayComparator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6767, 'MessageAwareExporter.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MessageAwareExporter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6768, 'MockBidiStreamingCall.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockBidiStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6769, 'MockClientStreamingCall.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockClientStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6770, 'MockGrpcTransport.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockGrpcTransport.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6771, 'MockRequest.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6772, 'MockRequestBody.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockRequestBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6773, 'MockResponse.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6774, 'MockServerStreamingCall.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockServerStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6775, 'MockStatus.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6776, 'MockStubTrait.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockStubTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6777, 'MockTransport.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockTransport.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6778, 'MockUnaryCall.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/MockUnaryCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6779, 'ProtobufGPBEmptyComparator.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/ProtobufGPBEmptyComparator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6780, 'ProtobufMessageComparator.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/ProtobufMessageComparator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6781, 'ReceivedRequest.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/ReceivedRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6782, 'SerializationTrait.php', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/SerializationTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6783, 'mocks.proto', '/vendor/google/gax/src/Testing', '/vendor/google/gax/src/Testing/mocks.proto', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6784, 'Transport', '/vendor/google/gax/src', '/vendor/google/gax/src/Transport', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6785, 'Grpc', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/Grpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6786, 'ForwardingCall.php', '/vendor/google/gax/src/Transport/Grpc', '/vendor/google/gax/src/Transport/Grpc/ForwardingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6787, 'ForwardingServerStreamingCall.php', '/vendor/google/gax/src/Transport/Grpc', '/vendor/google/gax/src/Transport/Grpc/ForwardingServerStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6788, 'ForwardingUnaryCall.php', '/vendor/google/gax/src/Transport/Grpc', '/vendor/google/gax/src/Transport/Grpc/ForwardingUnaryCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6789, 'ServerStreamingCallWrapper.php', '/vendor/google/gax/src/Transport/Grpc', '/vendor/google/gax/src/Transport/Grpc/ServerStreamingCallWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6790, 'UnaryInterceptorInterface.php', '/vendor/google/gax/src/Transport/Grpc', '/vendor/google/gax/src/Transport/Grpc/UnaryInterceptorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6791, 'GrpcFallbackTransport.php', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/GrpcFallbackTransport.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6792, 'GrpcTransport.php', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/GrpcTransport.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6793, 'HttpUnaryTransportTrait.php', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/HttpUnaryTransportTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6794, 'Rest', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/Rest', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6795, 'JsonStreamDecoder.php', '/vendor/google/gax/src/Transport/Rest', '/vendor/google/gax/src/Transport/Rest/JsonStreamDecoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6796, 'RestServerStreamingCall.php', '/vendor/google/gax/src/Transport/Rest', '/vendor/google/gax/src/Transport/Rest/RestServerStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6797, 'RestTransport.php', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/RestTransport.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6798, 'TransportInterface.php', '/vendor/google/gax/src/Transport', '/vendor/google/gax/src/Transport/TransportInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6799, 'UriTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/UriTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6800, 'ValidationException.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ValidationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6801, 'ValidationTrait.php', '/vendor/google/gax/src', '/vendor/google/gax/src/ValidationTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6802, 'Version.php', '/vendor/google/gax/src', '/vendor/google/gax/src/Version.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6803, 'grpc-gcp', '/vendor/google', '/vendor/google/grpc-gcp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6804, '.gitmodules', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/.gitmodules', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6805, '.php_cs.dist', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6806, 'LICENSE', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6807, 'README.md', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6808, 'cloudprober', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/cloudprober', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6809, 'bins', '/vendor/google/grpc-gcp/cloudprober', '/vendor/google/grpc-gcp/cloudprober/bins', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6810, 'opt', '/vendor/google/grpc-gcp/cloudprober/bins', '/vendor/google/grpc-gcp/cloudprober/bins/opt', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6811, 'grpc_php_plugin', '/vendor/google/grpc-gcp/cloudprober/bins/opt', '/vendor/google/grpc-gcp/cloudprober/bins/opt/grpc_php_plugin', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6812, 'cloudprober.cfg', '/vendor/google/grpc-gcp/cloudprober', '/vendor/google/grpc-gcp/cloudprober/cloudprober.cfg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6813, 'codegen.sh', '/vendor/google/grpc-gcp/cloudprober', '/vendor/google/grpc-gcp/cloudprober/codegen.sh', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6814, 'composer.json', '/vendor/google/grpc-gcp/cloudprober', '/vendor/google/grpc-gcp/cloudprober/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6815, 'grpc_gpc_prober', '/vendor/google/grpc-gcp/cloudprober', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6816, 'firestore_probes.php', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober/firestore_probes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6817, 'prober.php', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober/prober.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6818, 'spanner_probes.php', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober/spanner_probes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6819, 'stackdriver_util.php', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober', '/vendor/google/grpc-gcp/cloudprober/grpc_gpc_prober/stackdriver_util.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6820, 'composer.json', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6821, 'doc', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/doc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6822, 'gRPC-client-user-guide.md', '/vendor/google/grpc-gcp/doc', '/vendor/google/grpc-gcp/doc/gRPC-client-user-guide.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6823, 'src', '/vendor/google/grpc-gcp', '/vendor/google/grpc-gcp/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6824, 'ChannelRef.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/ChannelRef.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6825, 'Config.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6826, 'CreatedByDeserializeCheck.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/CreatedByDeserializeCheck.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6827, 'GCPBidiStreamingCall.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GCPBidiStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6828, 'GCPCallInvoker.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GCPCallInvoker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6829, 'GCPClientStreamCall.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GCPClientStreamCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6830, 'GCPServerStreamCall.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GCPServerStreamCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6831, 'GCPUnaryCall.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GCPUnaryCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6832, 'GcpBaseCall.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GcpBaseCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6833, 'GcpExtensionChannel.php', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/GcpExtensionChannel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6834, 'generated', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/generated', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6835, 'GPBMetadata', '/vendor/google/grpc-gcp/src/generated', '/vendor/google/grpc-gcp/src/generated/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6836, 'GrpcGcp.php', '/vendor/google/grpc-gcp/src/generated/GPBMetadata', '/vendor/google/grpc-gcp/src/generated/GPBMetadata/GrpcGcp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6837, 'Grpc', '/vendor/google/grpc-gcp/src/generated', '/vendor/google/grpc-gcp/src/generated/Grpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6838, 'Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6839, 'AffinityConfig.php', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp/AffinityConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6840, 'AffinityConfig_Command.php', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp/AffinityConfig_Command.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6841, 'ApiConfig.php', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp/ApiConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6842, 'ChannelPoolConfig.php', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp/ChannelPoolConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6843, 'MethodConfig.php', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp', '/vendor/google/grpc-gcp/src/generated/Grpc/Gcp/MethodConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6844, 'grpc_gcp.proto', '/vendor/google/grpc-gcp/src', '/vendor/google/grpc-gcp/src/grpc_gcp.proto', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6845, 'longrunning', '/vendor/google', '/vendor/google/longrunning', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6846, '.gitattributes', '/vendor/google/longrunning', '/vendor/google/longrunning/.gitattributes', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6847, 'CODE_OF_CONDUCT.md', '/vendor/google/longrunning', '/vendor/google/longrunning/CODE_OF_CONDUCT.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6848, 'CONTRIBUTING.md', '/vendor/google/longrunning', '/vendor/google/longrunning/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6849, 'LICENSE', '/vendor/google/longrunning', '/vendor/google/longrunning/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6850, 'README.md', '/vendor/google/longrunning', '/vendor/google/longrunning/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6851, 'SECURITY.md', '/vendor/google/longrunning', '/vendor/google/longrunning/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6852, 'VERSION', '/vendor/google/longrunning', '/vendor/google/longrunning/VERSION', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6853, 'composer.json', '/vendor/google/longrunning', '/vendor/google/longrunning/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6854, 'metadata', '/vendor/google/longrunning', '/vendor/google/longrunning/metadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6855, 'Longrunning', '/vendor/google/longrunning/metadata', '/vendor/google/longrunning/metadata/Longrunning', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6856, 'Operations.php', '/vendor/google/longrunning/metadata/Longrunning', '/vendor/google/longrunning/metadata/Longrunning/Operations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6857, 'README.md', '/vendor/google/longrunning/metadata', '/vendor/google/longrunning/metadata/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6858, 'src', '/vendor/google/longrunning', '/vendor/google/longrunning/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6859, 'ApiCore', '/vendor/google/longrunning/src', '/vendor/google/longrunning/src/ApiCore', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6860, 'LongRunning', '/vendor/google/longrunning/src/ApiCore', '/vendor/google/longrunning/src/ApiCore/LongRunning', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6861, 'Gapic', '/vendor/google/longrunning/src/ApiCore/LongRunning', '/vendor/google/longrunning/src/ApiCore/LongRunning/Gapic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6862, 'OperationsGapicClient.php', '/vendor/google/longrunning/src/ApiCore/LongRunning/Gapic', '/vendor/google/longrunning/src/ApiCore/LongRunning/Gapic/OperationsGapicClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6863, 'OperationsClient.php', '/vendor/google/longrunning/src/ApiCore/LongRunning', '/vendor/google/longrunning/src/ApiCore/LongRunning/OperationsClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6864, 'resources', '/vendor/google/longrunning/src/ApiCore/LongRunning', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6865, 'operations_client_config.json', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources/operations_client_config.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6866, 'operations_descriptor_config.php', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources/operations_descriptor_config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6867, 'operations_rest_client_config.php', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources', '/vendor/google/longrunning/src/ApiCore/LongRunning/resources/operations_rest_client_config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6868, 'LongRunning', '/vendor/google/longrunning/src', '/vendor/google/longrunning/src/LongRunning', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6869, 'CancelOperationRequest.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/CancelOperationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6870, 'DeleteOperationRequest.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/DeleteOperationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6871, 'GetOperationRequest.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/GetOperationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6872, 'ListOperationsRequest.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/ListOperationsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6873, 'ListOperationsResponse.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/ListOperationsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6874, 'Operation.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/Operation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6875, 'OperationInfo.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/OperationInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6876, 'OperationsGrpcClient.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/OperationsGrpcClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6877, 'WaitOperationRequest.php', '/vendor/google/longrunning/src/LongRunning', '/vendor/google/longrunning/src/LongRunning/WaitOperationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6878, 'protobuf', '/vendor/google', '/vendor/google/protobuf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6879, 'LICENSE', '/vendor/google/protobuf', '/vendor/google/protobuf/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6880, 'README.md', '/vendor/google/protobuf', '/vendor/google/protobuf/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6881, 'composer.json', '/vendor/google/protobuf', '/vendor/google/protobuf/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6882, 'src', '/vendor/google/protobuf', '/vendor/google/protobuf/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6883, 'GPBMetadata', '/vendor/google/protobuf/src', '/vendor/google/protobuf/src/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6884, 'Google', '/vendor/google/protobuf/src/GPBMetadata', '/vendor/google/protobuf/src/GPBMetadata/Google', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6885, 'Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6886, 'Any.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Any.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6887, 'Api.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Api.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6888, 'Duration.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Duration.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6889, 'FieldMask.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/FieldMask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6890, 'GPBEmpty.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/GPBEmpty.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6891, 'Internal', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Internal', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6892, 'Descriptor.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Internal', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6893, 'SourceContext.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/SourceContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6894, 'Struct.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Struct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6895, 'Timestamp.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Timestamp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6896, 'Type.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6897, 'Wrappers.php', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf', '/vendor/google/protobuf/src/GPBMetadata/Google/Protobuf/Wrappers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6898, 'Google', '/vendor/google/protobuf/src', '/vendor/google/protobuf/src/Google', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6899, 'Protobuf', '/vendor/google/protobuf/src/Google', '/vendor/google/protobuf/src/Google/Protobuf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6900, 'Any.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Any.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6901, 'Api.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Api.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6902, 'BoolValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/BoolValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6903, 'BytesValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/BytesValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6904, 'Descriptor.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Descriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6905, 'DescriptorPool.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/DescriptorPool.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6906, 'DoubleValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/DoubleValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6907, 'Duration.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Duration.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6908, 'Enum.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Enum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6909, 'EnumDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/EnumDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6910, 'EnumValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/EnumValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6911, 'EnumValueDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/EnumValueDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6912, 'Field', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Field', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6913, 'Cardinality.php', '/vendor/google/protobuf/src/Google/Protobuf/Field', '/vendor/google/protobuf/src/Google/Protobuf/Field/Cardinality.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6914, 'Kind.php', '/vendor/google/protobuf/src/Google/Protobuf/Field', '/vendor/google/protobuf/src/Google/Protobuf/Field/Kind.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6915, 'Field.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Field.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6916, 'FieldDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/FieldDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6917, 'FieldMask.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/FieldMask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6918, 'Field_Cardinality.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Field_Cardinality.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6919, 'Field_Kind.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Field_Kind.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6920, 'FloatValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/FloatValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6921, 'GPBEmpty.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/GPBEmpty.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6922, 'Int32Value.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Int32Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6923, 'Int64Value.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Int64Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6924, 'Internal', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Internal', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6925, 'AnyBase.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/AnyBase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6926, 'CodedInputStream.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedInputStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6927, 'CodedOutputStream.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/CodedOutputStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6928, 'Descriptor.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/Descriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6929, 'DescriptorPool.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorPool.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6930, 'DescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6931, 'ExtensionRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6932, 'ReservedRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6933, 'DescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6934, 'DescriptorProto_ExtensionRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6935, 'DescriptorProto_ReservedRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6936, 'EnumBuilderContext.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumBuilderContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6937, 'EnumDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6938, 'EnumDescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6939, 'EnumReservedRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6940, 'EnumDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6941, 'EnumDescriptorProto_EnumReservedRange.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6942, 'EnumOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6943, 'EnumValueDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6944, 'EnumValueOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/EnumValueOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6945, 'ExtensionRangeOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/ExtensionRangeOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6946, 'FieldDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6947, 'FieldDescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6948, 'Label.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6949, 'Type.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6950, 'FieldDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6951, 'FieldDescriptorProto_Label.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6952, 'FieldDescriptorProto_Type.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6953, 'FieldOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6954, 'CType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/CType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6955, 'JSType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions/JSType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6956, 'FieldOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6957, 'FieldOptions_CType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_CType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6958, 'FieldOptions_JSType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FieldOptions_JSType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6959, 'FileDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6960, 'FileDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6961, 'FileDescriptorSet.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileDescriptorSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6962, 'FileOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6963, 'OptimizeMode.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6964, 'FileOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6965, 'FileOptions_OptimizeMode.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6966, 'GPBDecodeException.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBDecodeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6967, 'GPBJsonWire.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBJsonWire.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6968, 'GPBLabel.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBLabel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6969, 'GPBType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6970, 'GPBUtil.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBUtil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6971, 'GPBWire.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWire.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6972, 'GPBWireType.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GPBWireType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6973, 'GeneratedCodeInfo', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6974, 'Annotation.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6975, 'GeneratedCodeInfo.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6976, 'GeneratedCodeInfo_Annotation.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6977, 'GetPublicDescriptorTrait.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6978, 'HasPublicDescriptorTrait.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6979, 'MapEntry.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MapEntry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6980, 'MapField.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MapField.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6981, 'MapFieldIter.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MapFieldIter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6982, 'Message.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/Message.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6983, 'MessageBuilderContext.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageBuilderContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6984, 'MessageOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MessageOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6985, 'MethodDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6986, 'MethodOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6987, 'IdempotencyLevel.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6988, 'MethodOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6989, 'MethodOptions_IdempotencyLevel.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6990, 'OneofDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6991, 'OneofDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6992, 'OneofField.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofField.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6993, 'OneofOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/OneofOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6994, 'RawInputStream.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/RawInputStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6995, 'RepeatedField.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedField.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6996, 'RepeatedFieldIter.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/RepeatedFieldIter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6997, 'ServiceDescriptorProto.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceDescriptorProto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6998, 'ServiceOptions.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/ServiceOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(6999, 'SourceCodeInfo', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7000, 'Location.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo', '/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7001, 'SourceCodeInfo.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7002, 'SourceCodeInfo_Location.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7003, 'TimestampBase.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/TimestampBase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7004, 'UninterpretedOption', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7005, 'NamePart.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption', '/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7006, 'UninterpretedOption.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7007, 'UninterpretedOption_NamePart.php', '/vendor/google/protobuf/src/Google/Protobuf/Internal', '/vendor/google/protobuf/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7008, 'ListValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/ListValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7009, 'Method.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Method.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7010, 'Mixin.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Mixin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7011, 'NullValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/NullValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7012, 'OneofDescriptor.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/OneofDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7013, 'Option.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Option.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7014, 'SourceContext.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/SourceContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7015, 'StringValue.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/StringValue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7016, 'Struct.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Struct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7017, 'Syntax.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Syntax.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7018, 'Timestamp.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Timestamp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7019, 'Type.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7020, 'UInt32Value.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/UInt32Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7021, 'UInt64Value.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/UInt64Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7022, 'Value.php', '/vendor/google/protobuf/src/Google/Protobuf', '/vendor/google/protobuf/src/Google/Protobuf/Value.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7023, 'phpdoc.dist.xml', '/vendor/google/protobuf/src', '/vendor/google/protobuf/src/phpdoc.dist.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7024, 'grpc', '/vendor', '/vendor/grpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7025, 'grpc', '/vendor/grpc', '/vendor/grpc/grpc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7026, 'LICENSE', '/vendor/grpc/grpc', '/vendor/grpc/grpc/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7027, 'MAINTAINERS.md', '/vendor/grpc/grpc', '/vendor/grpc/grpc/MAINTAINERS.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7028, 'README.md', '/vendor/grpc/grpc', '/vendor/grpc/grpc/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7029, 'composer.json', '/vendor/grpc/grpc', '/vendor/grpc/grpc/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7030, 'etc', '/vendor/grpc/grpc', '/vendor/grpc/grpc/etc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7031, 'roots.pem', '/vendor/grpc/grpc/etc', '/vendor/grpc/grpc/etc/roots.pem', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7032, 'src', '/vendor/grpc/grpc', '/vendor/grpc/grpc/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7033, 'lib', '/vendor/grpc/grpc/src', '/vendor/grpc/grpc/src/lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7034, 'AbstractCall.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/AbstractCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7035, 'BaseStub.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/BaseStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7036, 'BidiStreamingCall.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/BidiStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7037, 'CallInvoker.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/CallInvoker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7038, 'ClientStreamingCall.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/ClientStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7039, 'DefaultCallInvoker.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/DefaultCallInvoker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7040, 'Interceptor.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/Interceptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7041, 'Internal', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/Internal', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7042, 'InterceptorChannel.php', '/vendor/grpc/grpc/src/lib/Internal', '/vendor/grpc/grpc/src/lib/Internal/InterceptorChannel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7043, 'MethodDescriptor.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/MethodDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7044, 'RpcServer.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/RpcServer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7045, 'ServerCallReader.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/ServerCallReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7046, 'ServerCallWriter.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/ServerCallWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7047, 'ServerContext.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/ServerContext.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7048, 'ServerStreamingCall.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/ServerStreamingCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7049, 'Status.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/Status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7050, 'UnaryCall.php', '/vendor/grpc/grpc/src/lib', '/vendor/grpc/grpc/src/lib/UnaryCall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7051, 'guzzle', '/vendor', '/vendor/guzzle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7052, 'guzzle', '/vendor/guzzle', '/vendor/guzzle/guzzle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7053, '.gitignore', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7054, '.travis.yml', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7055, 'CHANGELOG.md', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7056, 'LICENSE', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7057, 'README.md', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7058, 'UPGRADING.md', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/UPGRADING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7059, 'build.xml', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/build.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7060, 'composer.json', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7061, 'docs', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/docs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7062, 'Makefile', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/Makefile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7063, '_downloads', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/_downloads', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7064, 'guzzle-schema-1.0.json', '/vendor/guzzle/guzzle/docs/_downloads', '/vendor/guzzle/guzzle/docs/_downloads/guzzle-schema-1.0.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7065, '_static', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/_static', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7066, 'guzzle-icon.png', '/vendor/guzzle/guzzle/docs/_static', '/vendor/guzzle/guzzle/docs/_static/guzzle-icon.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7067, 'homepage.css', '/vendor/guzzle/guzzle/docs/_static', '/vendor/guzzle/guzzle/docs/_static/homepage.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7068, 'logo.png', '/vendor/guzzle/guzzle/docs/_static', '/vendor/guzzle/guzzle/docs/_static/logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7069, 'prettify.css', '/vendor/guzzle/guzzle/docs/_static', '/vendor/guzzle/guzzle/docs/_static/prettify.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7070, 'prettify.js', '/vendor/guzzle/guzzle/docs/_static', '/vendor/guzzle/guzzle/docs/_static/prettify.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7071, '_templates', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/_templates', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7072, 'index.html', '/vendor/guzzle/guzzle/docs/_templates', '/vendor/guzzle/guzzle/docs/_templates/index.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7073, 'leftbar.html', '/vendor/guzzle/guzzle/docs/_templates', '/vendor/guzzle/guzzle/docs/_templates/leftbar.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7074, 'nav_links.html', '/vendor/guzzle/guzzle/docs/_templates', '/vendor/guzzle/guzzle/docs/_templates/nav_links.html', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7075, 'batching', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/batching', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7076, 'batching.rst', '/vendor/guzzle/guzzle/docs/batching', '/vendor/guzzle/guzzle/docs/batching/batching.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7077, 'conf.py', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/conf.py', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7078, 'docs.rst', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/docs.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7079, 'getting-started', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/getting-started', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7080, 'faq.rst', '/vendor/guzzle/guzzle/docs/getting-started', '/vendor/guzzle/guzzle/docs/getting-started/faq.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7081, 'installation.rst', '/vendor/guzzle/guzzle/docs/getting-started', '/vendor/guzzle/guzzle/docs/getting-started/installation.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7082, 'overview.rst', '/vendor/guzzle/guzzle/docs/getting-started', '/vendor/guzzle/guzzle/docs/getting-started/overview.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7083, 'http-client', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/http-client', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7084, 'client.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/client.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7085, 'entity-bodies.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/entity-bodies.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7086, 'http-redirects.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/http-redirects.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7087, 'request.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/request.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7088, 'response.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/response.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7089, 'uri-templates.rst', '/vendor/guzzle/guzzle/docs/http-client', '/vendor/guzzle/guzzle/docs/http-client/uri-templates.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7090, 'index.rst', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/index.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7091, 'iterators', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/iterators', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7092, 'guzzle-iterators.rst', '/vendor/guzzle/guzzle/docs/iterators', '/vendor/guzzle/guzzle/docs/iterators/guzzle-iterators.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7093, 'resource-iterators.rst', '/vendor/guzzle/guzzle/docs/iterators', '/vendor/guzzle/guzzle/docs/iterators/resource-iterators.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7094, 'plugins', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/plugins', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7095, 'async-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/async-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7096, 'backoff-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/backoff-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7097, 'cache-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/cache-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7098, 'cookie-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/cookie-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7099, 'creating-plugins.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/creating-plugins.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7100, 'curl-auth-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/curl-auth-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7101, 'history-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/history-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7102, 'log-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/log-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7103, 'md5-validator-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/md5-validator-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7104, 'mock-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/mock-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7105, 'oauth-plugin.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/oauth-plugin.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7106, 'plugins-list.rst.inc', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/plugins-list.rst.inc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7107, 'plugins-overview.rst', '/vendor/guzzle/guzzle/docs/plugins', '/vendor/guzzle/guzzle/docs/plugins/plugins-overview.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7108, 'requirements.txt', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/requirements.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7109, 'testing', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/testing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7110, 'unit-testing.rst', '/vendor/guzzle/guzzle/docs/testing', '/vendor/guzzle/guzzle/docs/testing/unit-testing.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7111, 'webservice-client', '/vendor/guzzle/guzzle/docs', '/vendor/guzzle/guzzle/docs/webservice-client', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7112, 'guzzle-service-descriptions.rst', '/vendor/guzzle/guzzle/docs/webservice-client', '/vendor/guzzle/guzzle/docs/webservice-client/guzzle-service-descriptions.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7113, 'using-the-service-builder.rst', '/vendor/guzzle/guzzle/docs/webservice-client', '/vendor/guzzle/guzzle/docs/webservice-client/using-the-service-builder.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7114, 'webservice-client.rst', '/vendor/guzzle/guzzle/docs/webservice-client', '/vendor/guzzle/guzzle/docs/webservice-client/webservice-client.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7115, 'phar-stub.php', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/phar-stub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7116, 'phing', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/phing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7117, 'build.properties.dist', '/vendor/guzzle/guzzle/phing', '/vendor/guzzle/guzzle/phing/build.properties.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7118, 'imports', '/vendor/guzzle/guzzle/phing', '/vendor/guzzle/guzzle/phing/imports', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7119, 'dependencies.xml', '/vendor/guzzle/guzzle/phing/imports', '/vendor/guzzle/guzzle/phing/imports/dependencies.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7120, 'deploy.xml', '/vendor/guzzle/guzzle/phing/imports', '/vendor/guzzle/guzzle/phing/imports/deploy.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7121, 'tasks', '/vendor/guzzle/guzzle/phing', '/vendor/guzzle/guzzle/phing/tasks', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7122, 'ComposerLintTask.php', '/vendor/guzzle/guzzle/phing/tasks', '/vendor/guzzle/guzzle/phing/tasks/ComposerLintTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7123, 'GuzzlePearPharPackageTask.php', '/vendor/guzzle/guzzle/phing/tasks', '/vendor/guzzle/guzzle/phing/tasks/GuzzlePearPharPackageTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7124, 'GuzzleSubSplitTask.php', '/vendor/guzzle/guzzle/phing/tasks', '/vendor/guzzle/guzzle/phing/tasks/GuzzleSubSplitTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7125, 'phpunit.xml.dist', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7126, 'src', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7127, 'Guzzle', '/vendor/guzzle/guzzle/src', '/vendor/guzzle/guzzle/src/Guzzle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7128, 'Batch', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Batch', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7129, 'AbstractBatchDecorator.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7130, 'Batch.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7131, 'BatchBuilder.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7132, 'BatchClosureDivisor.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7133, 'BatchClosureTransfer.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7134, 'BatchCommandTransfer.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7135, 'BatchDivisorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7136, 'BatchInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7137, 'BatchRequestTransfer.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7138, 'BatchSizeDivisor.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7139, 'BatchTransferInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7140, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7141, 'BatchTransferException.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7142, 'ExceptionBufferingBatch.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7143, 'FlushingBatch.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7144, 'HistoryBatch.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7145, 'NotifyingBatch.php', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7146, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Batch', '/vendor/guzzle/guzzle/src/Guzzle/Batch/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7147, 'Cache', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7148, 'AbstractCacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7149, 'CacheAdapterFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7150, 'CacheAdapterInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7151, 'ClosureCacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7152, 'DoctrineCacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7153, 'NullCacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7154, 'Zf1CacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7155, 'Zf2CacheAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7156, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Cache/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7157, 'Common', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7158, 'AbstractHasDispatcher.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7159, 'Collection.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7160, 'Event.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7161, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7162, 'BadMethodCallException.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7163, 'ExceptionCollection.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7164, 'GuzzleException.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7165, 'InvalidArgumentException.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7166, 'RuntimeException.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7167, 'UnexpectedValueException.php', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7168, 'FromConfigInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7169, 'HasDispatcherInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7170, 'ToArrayInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7171, 'Version.php', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7172, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Common', '/vendor/guzzle/guzzle/src/Guzzle/Common/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7173, 'Http', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7174, 'AbstractEntityBodyDecorator.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7175, 'CachingEntityBody.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7176, 'Client.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7177, 'ClientInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7178, 'Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7179, 'CurlHandle.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7180, 'CurlMulti.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7181, 'CurlMultiInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7182, 'CurlMultiProxy.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7183, 'CurlVersion.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7184, 'RequestMediator.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl', '/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7185, 'EntityBody.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7186, 'EntityBodyInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7187, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7188, 'BadResponseException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7189, 'ClientErrorResponseException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7190, 'CouldNotRewindStreamException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7191, 'CurlException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7192, 'HttpException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7193, 'MultiTransferException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7194, 'RequestException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7195, 'ServerErrorResponseException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7196, 'TooManyRedirectsException.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7197, 'IoEmittingEntityBody.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7198, 'Message', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7199, 'AbstractMessage.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7200, 'EntityEnclosingRequest.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7201, 'EntityEnclosingRequestInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7202, 'Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7203, 'CacheControl.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7204, 'HeaderCollection.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7205, 'HeaderFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7206, 'HeaderFactoryInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7207, 'HeaderInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7208, 'Link.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7209, 'Header.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7210, 'MessageInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7211, 'PostFile.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7212, 'PostFileInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7213, 'Request.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7214, 'RequestFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7215, 'RequestFactoryInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7216, 'RequestInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7217, 'Response.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message', '/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7218, 'Mimetypes.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7219, 'QueryAggregator', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7220, 'CommaAggregator.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7221, 'DuplicateAggregator.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7222, 'PhpAggregator.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7223, 'QueryAggregatorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7224, 'QueryString.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7225, 'ReadLimitEntityBody.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7226, 'RedirectPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7227, 'Resources', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7228, 'cacert.pem', '/vendor/guzzle/guzzle/src/Guzzle/Http/Resources', '/vendor/guzzle/guzzle/src/Guzzle/Http/Resources/cacert.pem', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7229, 'StaticClient.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7230, 'Url.php', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7231, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Http', '/vendor/guzzle/guzzle/src/Guzzle/Http/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7232, 'Inflection', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7233, 'Inflector.php', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', '/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7234, 'InflectorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', '/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7235, 'MemoizingInflector.php', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', '/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7236, 'PreComputedInflector.php', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', '/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7237, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Inflection', '/vendor/guzzle/guzzle/src/Guzzle/Inflection/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7238, 'Iterator', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7239, 'AppendIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7240, 'ChunkedIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7241, 'FilterIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7242, 'MapIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7243, 'MethodProxyIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7244, 'README.md', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7245, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Iterator', '/vendor/guzzle/guzzle/src/Guzzle/Iterator/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7246, 'Log', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7247, 'AbstractLogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7248, 'ArrayLogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7249, 'ClosureLogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7250, 'LogAdapterInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7251, 'MessageFormatter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7252, 'MonologLogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7253, 'PsrLogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7254, 'Zf1LogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7255, 'Zf2LogAdapter.php', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7256, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Log', '/vendor/guzzle/guzzle/src/Guzzle/Log/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7257, 'Parser', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Parser', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7258, 'Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7259, 'CookieParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7260, 'CookieParserInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7261, 'Message', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7262, 'AbstractMessageParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7263, 'MessageParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7264, 'MessageParserInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7265, 'PeclHttpMessageParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7266, 'ParserRegistry.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7267, 'UriTemplate', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7268, 'PeclUriTemplate.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7269, 'UriTemplate.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7270, 'UriTemplateInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate', '/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7271, 'Url', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Url', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7272, 'UrlParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Url', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7273, 'UrlParserInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Url', '/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7274, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Parser', '/vendor/guzzle/guzzle/src/Guzzle/Parser/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7275, 'Plugin', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7276, 'Async', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7277, 'AsyncPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7278, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7279, 'Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7280, 'AbstractBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7281, 'AbstractErrorCodeBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7282, 'BackoffLogger.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7283, 'BackoffPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7284, 'BackoffStrategyInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7285, 'CallbackBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7286, 'ConstantBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7287, 'CurlBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7288, 'ExponentialBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7289, 'HttpBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7290, 'LinearBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7291, 'ReasonPhraseBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7292, 'TruncatedBackoffStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7293, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7294, 'Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7295, 'CacheKeyProviderInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7296, 'CachePlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7297, 'CacheStorageInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7298, 'CallbackCanCacheStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7299, 'CanCacheStrategyInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7300, 'DefaultCacheKeyProvider.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7301, 'DefaultCacheStorage.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7302, 'DefaultCanCacheStrategy.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7303, 'DefaultRevalidation.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7304, 'DenyRevalidation.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7305, 'RevalidationInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7306, 'SkipRevalidation.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7307, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7308, 'Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7309, 'Cookie.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7310, 'CookieJar', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7311, 'ArrayCookieJar.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7312, 'CookieJarInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7313, 'FileCookieJar.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7314, 'CookiePlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7315, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7316, 'InvalidCookieException.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7317, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7318, 'CurlAuth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7319, 'CurlAuthPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7320, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7321, 'ErrorResponse', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7322, 'ErrorResponseExceptionInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7323, 'ErrorResponsePlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7324, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7325, 'ErrorResponseException.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7326, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7327, 'History', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/History', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7328, 'HistoryPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/History', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7329, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/History', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7330, 'Log', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7331, 'LogPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7332, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7333, 'Md5', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7334, 'CommandContentMd5Plugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7335, 'Md5ValidatorPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7336, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7337, 'Mock', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7338, 'MockPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7339, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7340, 'Oauth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7341, 'OauthPlugin.php', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7342, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7343, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Plugin', '/vendor/guzzle/guzzle/src/Guzzle/Plugin/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7344, 'Service', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Service', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7345, 'AbstractConfigLoader.php', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7346, 'Builder', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7347, 'ServiceBuilder.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7348, 'ServiceBuilderInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7349, 'ServiceBuilderLoader.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder', '/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7350, 'CachingConfigLoader.php', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7351, 'Client.php', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7352, 'ClientInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7353, 'Command', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7354, 'AbstractCommand.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7355, 'ClosureCommand.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7356, 'CommandInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7357, 'CreateResponseClassEvent.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7358, 'DefaultRequestSerializer.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7359, 'DefaultResponseParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7360, 'Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7361, 'AliasFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7362, 'CompositeFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7363, 'ConcreteClassFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7364, 'FactoryInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7365, 'MapFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7366, 'ServiceDescriptionFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7367, 'LocationVisitor', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7368, 'Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7369, 'AbstractRequestVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7370, 'BodyVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7371, 'HeaderVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7372, 'JsonVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7373, 'PostFieldVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7374, 'PostFileVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7375, 'QueryVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7376, 'RequestVisitorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7377, 'ResponseBodyVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7378, 'XmlVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7379, 'Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7380, 'AbstractResponseVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7381, 'BodyVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7382, 'HeaderVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7383, 'JsonVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7384, 'ReasonPhraseVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7385, 'ResponseVisitorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7386, 'StatusCodeVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7387, 'XmlVisitor.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7388, 'VisitorFlyweight.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7389, 'OperationCommand.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7390, 'OperationResponseParser.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7391, 'RequestSerializerInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7392, 'ResponseClassInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7393, 'ResponseParserInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command', '/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7394, 'ConfigLoaderInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7395, 'Description', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7396, 'Operation.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7397, 'OperationInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7398, 'Parameter.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7399, 'SchemaFormatter.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7400, 'SchemaValidator.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7401, 'ServiceDescription.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7402, 'ServiceDescriptionInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7403, 'ServiceDescriptionLoader.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7404, 'ValidatorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description', '/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7405, 'Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7406, 'CommandException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7407, 'CommandTransferException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7408, 'DescriptionBuilderException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7409, 'InconsistentClientTransferException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7410, 'ResponseClassException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7411, 'ServiceBuilderException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7412, 'ServiceNotFoundException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7413, 'ValidationException.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception', '/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7414, 'Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7415, 'AbstractResourceIteratorFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7416, 'CompositeResourceIteratorFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7417, 'MapResourceIteratorFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7418, 'Model.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7419, 'ResourceIterator.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7420, 'ResourceIteratorApplyBatched.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7421, 'ResourceIteratorClassFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7422, 'ResourceIteratorFactoryInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7423, 'ResourceIteratorInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource', '/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7424, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Service', '/vendor/guzzle/guzzle/src/Guzzle/Service/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7425, 'Stream', '/vendor/guzzle/guzzle/src/Guzzle', '/vendor/guzzle/guzzle/src/Guzzle/Stream', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7426, 'PhpStreamRequestFactory.php', '/vendor/guzzle/guzzle/src/Guzzle/Stream', '/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7427, 'Stream.php', '/vendor/guzzle/guzzle/src/Guzzle/Stream', '/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7428, 'StreamInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Stream', '/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7429, 'StreamRequestFactoryInterface.php', '/vendor/guzzle/guzzle/src/Guzzle/Stream', '/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7430, 'composer.json', '/vendor/guzzle/guzzle/src/Guzzle/Stream', '/vendor/guzzle/guzzle/src/Guzzle/Stream/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7431, 'tests', '/vendor/guzzle/guzzle', '/vendor/guzzle/guzzle/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7432, 'Guzzle', '/vendor/guzzle/guzzle/tests', '/vendor/guzzle/guzzle/tests/Guzzle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7433, 'Tests', '/vendor/guzzle/guzzle/tests/Guzzle', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7434, 'Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7435, 'AbstractBatchDecoratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/AbstractBatchDecoratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7436, 'BatchBuilderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchBuilderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7437, 'BatchClosureDivisorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchClosureDivisorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7438, 'BatchClosureTransferTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchClosureTransferTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7439, 'BatchCommandTransferTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchCommandTransferTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7440, 'BatchRequestTransferTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchRequestTransferTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7441, 'BatchSizeDivisorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchSizeDivisorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7442, 'BatchTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/BatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7443, 'ExceptionBufferingBatchTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/ExceptionBufferingBatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7444, 'FlushingBatchTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/FlushingBatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7445, 'HistoryBatchTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/HistoryBatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7446, 'NotifyingBatchTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Batch/NotifyingBatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7447, 'Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7448, 'CacheAdapterFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache/CacheAdapterFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7449, 'CacheAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache/CacheAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7450, 'ClosureCacheAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache/ClosureCacheAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7451, 'NullCacheAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache/NullCacheAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7452, 'Zf2CacheAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Cache/Zf2CacheAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7453, 'Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7454, 'AbstractHasDispatcherTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/AbstractHasDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7455, 'CollectionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/CollectionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7456, 'EventTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/EventTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7457, 'Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7458, 'BatchTransferExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception/BatchTransferExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7459, 'ExceptionCollectionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/Exception/ExceptionCollectionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7460, 'VersionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Common/VersionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7461, 'GuzzleTestCase.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/GuzzleTestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7462, 'Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7463, 'AbstractEntityBodyDecoratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/AbstractEntityBodyDecoratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7464, 'CachingEntityBodyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/CachingEntityBodyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7465, 'ClientTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7466, 'Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7467, 'CurlHandleTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlHandleTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7468, 'CurlMultiProxyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlMultiProxyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7469, 'CurlMultiTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlMultiTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7470, 'CurlVersionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/CurlVersionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7471, 'RequestMediatorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Curl/RequestMediatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7472, 'EntityBodyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/EntityBodyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7473, 'Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7474, 'CurlExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/CurlExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7475, 'ExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/ExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7476, 'MultiTransferExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Exception/MultiTransferExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7477, 'IoEmittingEntityBodyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/IoEmittingEntityBodyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7478, 'Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7479, 'AbstractMessageTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/AbstractMessageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7480, 'EntityEnclosingRequestTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/EntityEnclosingRequestTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7481, 'Header', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7482, 'HeaderFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header/HeaderFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7483, 'LinkTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/Header/LinkTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7484, 'HeaderComparison.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderComparison.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7485, 'HeaderComparisonTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderComparisonTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7486, 'HeaderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/HeaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7487, 'PostFileTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/PostFileTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7488, 'RequestFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/RequestFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7489, 'RequestTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/RequestTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7490, 'ResponseTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Message/ResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7491, 'MimetypesTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/MimetypesTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7492, 'QueryAggregator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7493, 'CommaAggregatorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/CommaAggregatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7494, 'DuplicateAggregatorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/DuplicateAggregatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7495, 'PhpAggregatorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryAggregator/PhpAggregatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7496, 'QueryStringTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/QueryStringTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7497, 'ReadLimitEntityBodyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/ReadLimitEntityBodyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7498, 'RedirectPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/RedirectPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7499, 'Server.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/Server.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7500, 'StaticClientTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/StaticClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7501, 'UrlTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/UrlTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7502, 'server.js', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Http/server.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7503, 'Inflection', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7504, 'InflectorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection/InflectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7505, 'MemoizingInflectorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection/MemoizingInflectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7506, 'PreComputedInflectorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Inflection/PreComputedInflectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7507, 'Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7508, 'AppendIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator/AppendIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7509, 'ChunkedIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator/ChunkedIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7510, 'FilterIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator/FilterIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7511, 'MapIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator/MapIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7512, 'MethodProxyIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Iterator/MethodProxyIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7513, 'Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7514, 'ArrayLogAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/ArrayLogAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7515, 'ClosureLogAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/ClosureLogAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7516, 'MessageFormatterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/MessageFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7517, 'PsrLogAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/PsrLogAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7518, 'Zf2LogAdapterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Log/Zf2LogAdapterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7519, 'Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7520, 'CustomResponseModel.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/CustomResponseModel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7521, 'ErrorResponseMock.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/ErrorResponseMock.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7522, 'ExceptionMock.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/ExceptionMock.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7523, 'MockMulti.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockMulti.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7524, 'MockObserver.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockObserver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7525, 'MockSubject.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/MockSubject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7526, 'Parser', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7527, 'Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7528, 'CookieParserProvider.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie/CookieParserProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7529, 'CookieParserTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Cookie/CookieParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7530, 'Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7531, 'MessageParserProvider.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/MessageParserProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7532, 'MessageParserTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/MessageParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7533, 'PeclHttpMessageParserTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/Message/PeclHttpMessageParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7534, 'ParserRegistryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/ParserRegistryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7535, 'UriTemplate', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7536, 'AbstractUriTemplateTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/AbstractUriTemplateTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7537, 'PeclUriTemplateTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/PeclUriTemplateTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7538, 'UriTemplateTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Parser/UriTemplate/UriTemplateTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7539, 'Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7540, 'Async', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Async', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7541, 'AsyncPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Async', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Async/AsyncPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7542, 'Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7543, 'AbstractBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/AbstractBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7544, 'BackoffLoggerTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/BackoffLoggerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7545, 'BackoffPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/BackoffPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7546, 'CallbackBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/CallbackBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7547, 'ConstantBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ConstantBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7548, 'CurlBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/CurlBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7549, 'ExponentialBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ExponentialBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7550, 'HttpBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/HttpBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7551, 'LinearBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/LinearBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7552, 'ReasonPhraseBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/ReasonPhraseBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7553, 'TruncatedBackoffStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Backoff/TruncatedBackoffStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7554, 'Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7555, 'CachePluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/CachePluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7556, 'CallbackCanCacheStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/CallbackCanCacheStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7557, 'DefaultCacheStorageTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultCacheStorageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7558, 'DefaultCanCacheStrategyTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultCanCacheStrategyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7559, 'DefaultRevalidationTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DefaultRevalidationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7560, 'DenyRevalidationTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/DenyRevalidationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7561, 'SkipRevalidationTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cache/SkipRevalidationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7562, 'Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7563, 'CookieJar', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7564, 'ArrayCookieJarTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar/ArrayCookieJarTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7565, 'FileCookieJarTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieJar/FileCookieJarTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7566, 'CookiePluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookiePluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7567, 'CookieTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Cookie/CookieTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7568, 'CurlAuth', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/CurlAuth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7569, 'CurlAuthPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/CurlAuth', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/CurlAuth/CurlAuthPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7570, 'ErrorResponse', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/ErrorResponse', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7571, 'ErrorResponsePluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/ErrorResponse', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/ErrorResponse/ErrorResponsePluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7572, 'History', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/History', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7573, 'HistoryPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/History', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/History/HistoryPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7574, 'Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7575, 'LogPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Log', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Log/LogPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7576, 'Md5', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7577, 'CommandContentMd5PluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5/CommandContentMd5PluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7578, 'Md5ValidatorPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Md5/Md5ValidatorPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7579, 'Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Mock', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7580, 'MockPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Mock/MockPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7581, 'Oauth', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Oauth', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7582, 'OauthPluginTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Oauth', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Plugin/Oauth/OauthPluginTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7583, 'Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7584, 'AbstractConfigLoaderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/AbstractConfigLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7585, 'Builder', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7586, 'ServiceBuilderLoaderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder/ServiceBuilderLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7587, 'ServiceBuilderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Builder/ServiceBuilderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7588, 'CachingConfigLoaderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/CachingConfigLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7589, 'ClientTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/ClientTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7590, 'Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7591, 'AbstractCommandTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/AbstractCommandTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7592, 'ClosureCommandTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/ClosureCommandTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7593, 'CommandTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/CommandTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7594, 'DefaultRequestSerializerTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/DefaultRequestSerializerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7595, 'DefaultResponseParserTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/DefaultResponseParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7596, 'Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7597, 'AliasFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/AliasFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7598, 'CompositeFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/CompositeFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7599, 'ConcreteClassFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/ConcreteClassFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7600, 'MapFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/MapFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7601, 'ServiceDescriptionFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/Factory/ServiceDescriptionFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7602, 'LocationVisitor', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7603, 'Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7604, 'AbstractVisitorTestCase.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/AbstractVisitorTestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7605, 'BodyVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/BodyVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7606, 'HeaderVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/HeaderVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7607, 'JsonVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/JsonVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7608, 'PostFieldVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/PostFieldVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7609, 'PostFileVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/PostFileVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7610, 'QueryVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/QueryVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7611, 'ResponseBodyVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/ResponseBodyVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7612, 'XmlVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Request/XmlVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7613, 'Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7614, 'AbstractResponseVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/AbstractResponseVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7615, 'BodyVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/BodyVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7616, 'HeaderVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/HeaderVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7617, 'JsonVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/JsonVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7618, 'ReasonPhraseVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/ReasonPhraseVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7619, 'StatusCodeVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/StatusCodeVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7620, 'XmlVisitorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/Response/XmlVisitorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7621, 'VisitorFlyweightTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/LocationVisitor/VisitorFlyweightTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7622, 'OperationCommandTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/OperationCommandTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7623, 'OperationResponseParserTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Command/OperationResponseParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7624, 'Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7625, 'OperationTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/OperationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7626, 'ParameterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ParameterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7627, 'SchemaFormatterTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7628, 'SchemaValidatorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/SchemaValidatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7629, 'ServiceDescriptionLoaderTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ServiceDescriptionLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7630, 'ServiceDescriptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Description/ServiceDescriptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7631, 'Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7632, 'CommandTransferExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/CommandTransferExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7633, 'InconsistentClientTransferExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/InconsistentClientTransferExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7634, 'ValidationExceptionTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Exception/ValidationExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7635, 'Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7636, 'Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7637, 'IterableCommand.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/IterableCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7638, 'MockCommand.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/MockCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7639, 'OtherCommand.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/OtherCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7640, 'Sub', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/Sub', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7641, 'Sub.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/Sub', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Command/Sub/Sub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7642, 'MockClient.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/MockClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7643, 'Model', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Model', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7644, 'MockCommandIterator.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Model', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Mock/Model/MockCommandIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7645, 'Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7646, 'CompositeResourceIteratorFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/CompositeResourceIteratorFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7647, 'MapResourceIteratorFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/MapResourceIteratorFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7648, 'ModelTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ModelTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7649, 'ResourceIteratorClassFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ResourceIteratorClassFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7650, 'ResourceIteratorTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Service/Resource/ResourceIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7651, 'Stream', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Stream', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7652, 'PhpStreamRequestFactoryTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Stream', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Stream/PhpStreamRequestFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7653, 'StreamTest.php', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Stream', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/Stream/StreamTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7654, 'TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7655, 'FileBody.txt', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/FileBody.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7656, 'description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7657, 'bar.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/bar.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7658, 'baz.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/baz.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7659, 'foo.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/foo.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7660, 'recursive.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/description/recursive.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7661, 'mock_response', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/mock_response', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7662, 'services', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7663, 'json1.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services/json1.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7664, 'json2.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services/json2.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7665, 'services.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/services/services.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7666, 'test_service.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/test_service.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7667, 'test_service2.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/test_service2.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7668, 'test_service_3.json', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData', '/vendor/guzzle/guzzle/tests/Guzzle/Tests/TestData/test_service_3.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7669, 'bootstrap.php', '/vendor/guzzle/guzzle/tests', '/vendor/guzzle/guzzle/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7670, 'guzzlehttp', '/vendor', '/vendor/guzzlehttp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7671, 'guzzle', '/vendor/guzzlehttp', '/vendor/guzzlehttp/guzzle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7672, '.php_cs', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/.php_cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7673, 'CHANGELOG.md', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7674, 'Dockerfile', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/Dockerfile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7675, 'LICENSE', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7676, 'README.md', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7677, 'UPGRADING.md', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/UPGRADING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7678, 'composer.json', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7679, 'src', '/vendor/guzzlehttp/guzzle', '/vendor/guzzlehttp/guzzle/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7680, 'Client.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7681, 'ClientInterface.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/ClientInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7682, 'Cookie', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Cookie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7683, 'CookieJar.php', '/vendor/guzzlehttp/guzzle/src/Cookie', '/vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7684, 'CookieJarInterface.php', '/vendor/guzzlehttp/guzzle/src/Cookie', '/vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7685, 'FileCookieJar.php', '/vendor/guzzlehttp/guzzle/src/Cookie', '/vendor/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7686, 'SessionCookieJar.php', '/vendor/guzzlehttp/guzzle/src/Cookie', '/vendor/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7687, 'SetCookie.php', '/vendor/guzzlehttp/guzzle/src/Cookie', '/vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7688, 'Exception', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7689, 'BadResponseException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/BadResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7690, 'ClientException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/ClientException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7691, 'ConnectException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/ConnectException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7692, 'GuzzleException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7693, 'InvalidArgumentException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7694, 'RequestException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7695, 'SeekException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/SeekException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7696, 'ServerException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/ServerException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7697, 'TooManyRedirectsException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7698, 'TransferException.php', '/vendor/guzzlehttp/guzzle/src/Exception', '/vendor/guzzlehttp/guzzle/src/Exception/TransferException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7699, 'Handler', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Handler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7700, 'CurlFactory.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7701, 'CurlFactoryInterface.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7702, 'CurlHandler.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7703, 'CurlMultiHandler.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7704, 'EasyHandle.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7705, 'MockHandler.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/MockHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7706, 'Proxy.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/Proxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7707, 'StreamHandler.php', '/vendor/guzzlehttp/guzzle/src/Handler', '/vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7708, 'HandlerStack.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/HandlerStack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7709, 'MessageFormatter.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/MessageFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7710, 'Middleware.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Middleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7711, 'Pool.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Pool.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7712, 'PrepareBodyMiddleware.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7713, 'RedirectMiddleware.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7714, 'RequestOptions.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/RequestOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7715, 'RetryMiddleware.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/RetryMiddleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7716, 'TransferStats.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/TransferStats.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7717, 'UriTemplate.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/UriTemplate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7718, 'Utils.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/Utils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7719, 'functions.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7720, 'functions_include.php', '/vendor/guzzlehttp/guzzle/src', '/vendor/guzzlehttp/guzzle/src/functions_include.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7721, 'promises', '/vendor/guzzlehttp', '/vendor/guzzlehttp/promises', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7722, 'CHANGELOG.md', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7723, 'LICENSE', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7724, 'Makefile', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/Makefile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7725, 'README.md', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7726, 'composer.json', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7727, 'src', '/vendor/guzzlehttp/promises', '/vendor/guzzlehttp/promises/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7728, 'AggregateException.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/AggregateException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7729, 'CancellationException.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/CancellationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7730, 'Coroutine.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/Coroutine.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7731, 'EachPromise.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/EachPromise.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7732, 'FulfilledPromise.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/FulfilledPromise.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7733, 'Promise.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/Promise.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7734, 'PromiseInterface.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/PromiseInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7735, 'PromisorInterface.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/PromisorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7736, 'RejectedPromise.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/RejectedPromise.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7737, 'RejectionException.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/RejectionException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7738, 'TaskQueue.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/TaskQueue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7739, 'TaskQueueInterface.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/TaskQueueInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7740, 'functions.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7741, 'functions_include.php', '/vendor/guzzlehttp/promises/src', '/vendor/guzzlehttp/promises/src/functions_include.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7742, 'psr7', '/vendor/guzzlehttp', '/vendor/guzzlehttp/psr7', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7743, '.editorconfig', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/.editorconfig', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7744, 'CHANGELOG.md', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7745, 'LICENSE', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7746, 'README.md', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7747, 'composer.json', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7748, 'src', '/vendor/guzzlehttp/psr7', '/vendor/guzzlehttp/psr7/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7749, 'AppendStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/AppendStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7750, 'BufferStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/BufferStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7751, 'CachingStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/CachingStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7752, 'DroppingStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/DroppingStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7753, 'FnStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/FnStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7754, 'Header.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Header.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7755, 'InflateStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/InflateStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7756, 'LazyOpenStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/LazyOpenStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7757, 'LimitStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/LimitStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7758, 'Message.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Message.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7759, 'MessageTrait.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/MessageTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7760, 'MimeType.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/MimeType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7761, 'MultipartStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/MultipartStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7762, 'NoSeekStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/NoSeekStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7763, 'PumpStream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/PumpStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7764, 'Query.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Query.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7765, 'Request.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7766, 'Response.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7767, 'Rfc7230.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Rfc7230.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7768, 'ServerRequest.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/ServerRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7769, 'Stream.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Stream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7770, 'StreamDecoratorTrait.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/StreamDecoratorTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7771, 'StreamWrapper.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/StreamWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7772, 'UploadedFile.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/UploadedFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7773, 'Uri.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Uri.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7774, 'UriNormalizer.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/UriNormalizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7775, 'UriResolver.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/UriResolver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7776, 'Utils.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/Utils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7777, 'functions.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7778, 'functions_include.php', '/vendor/guzzlehttp/psr7/src', '/vendor/guzzlehttp/psr7/src/functions_include.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7779, 'intervention', '/vendor', '/vendor/intervention', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7780, 'image', '/vendor/intervention', '/vendor/intervention/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7781, 'LICENSE', '/vendor/intervention/image', '/vendor/intervention/image/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7782, 'composer.json', '/vendor/intervention/image', '/vendor/intervention/image/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7783, 'provides.json', '/vendor/intervention/image', '/vendor/intervention/image/provides.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7784, 'src', '/vendor/intervention/image', '/vendor/intervention/image/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7785, 'Intervention', '/vendor/intervention/image/src', '/vendor/intervention/image/src/Intervention', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7786, 'Image', '/vendor/intervention/image/src/Intervention', '/vendor/intervention/image/src/Intervention/Image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7787, 'AbstractColor.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractColor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7788, 'AbstractDecoder.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractDecoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7789, 'AbstractDriver.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractDriver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7790, 'AbstractEncoder.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractEncoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7791, 'AbstractFont.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractFont.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7792, 'AbstractShape.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/AbstractShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7793, 'Commands', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Commands', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7794, 'AbstractCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/AbstractCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7795, 'Argument.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/Argument.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7796, 'ChecksumCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/ChecksumCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7797, 'CircleCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/CircleCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7798, 'EllipseCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/EllipseCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7799, 'ExifCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/ExifCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7800, 'IptcCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/IptcCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7801, 'LineCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/LineCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7802, 'OrientateCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/OrientateCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7803, 'PolygonCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/PolygonCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7804, 'PsrResponseCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/PsrResponseCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7805, 'RectangleCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/RectangleCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7806, 'ResponseCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/ResponseCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7807, 'StreamCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/StreamCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7808, 'TextCommand.php', '/vendor/intervention/image/src/Intervention/Image/Commands', '/vendor/intervention/image/src/Intervention/Image/Commands/TextCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7809, 'Constraint.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Constraint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7810, 'Exception', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7811, 'ImageException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/ImageException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7812, 'InvalidArgumentException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7813, 'MissingDependencyException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/MissingDependencyException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7814, 'NotFoundException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/NotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7815, 'NotReadableException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/NotReadableException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7816, 'NotSupportedException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/NotSupportedException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7817, 'NotWritableException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/NotWritableException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7818, 'RuntimeException.php', '/vendor/intervention/image/src/Intervention/Image/Exception', '/vendor/intervention/image/src/Intervention/Image/Exception/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7819, 'Facades', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Facades', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7820, 'Image.php', '/vendor/intervention/image/src/Intervention/Image/Facades', '/vendor/intervention/image/src/Intervention/Image/Facades/Image.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7821, 'File.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7822, 'Filters', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Filters', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7823, 'DemoFilter.php', '/vendor/intervention/image/src/Intervention/Image/Filters', '/vendor/intervention/image/src/Intervention/Image/Filters/DemoFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7824, 'FilterInterface.php', '/vendor/intervention/image/src/Intervention/Image/Filters', '/vendor/intervention/image/src/Intervention/Image/Filters/FilterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7825, 'Gd', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Gd', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7826, 'Color.php', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7827, 'Commands', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7828, 'BackupCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BackupCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7829, 'BlurCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BlurCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7830, 'BrightnessCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/BrightnessCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7831, 'ColorizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ColorizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7832, 'ContrastCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ContrastCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7833, 'CropCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/CropCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7834, 'DestroyCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/DestroyCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7835, 'FillCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FillCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7836, 'FitCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FitCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7837, 'FlipCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/FlipCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7838, 'GammaCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GammaCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7839, 'GetSizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GetSizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7840, 'GreyscaleCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/GreyscaleCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7841, 'HeightenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/HeightenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7842, 'InsertCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InsertCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7843, 'InterlaceCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InterlaceCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7844, 'InvertCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/InvertCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7845, 'LimitColorsCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/LimitColorsCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7846, 'MaskCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/MaskCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7847, 'OpacityCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/OpacityCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7848, 'PickColorCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PickColorCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7849, 'PixelCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7850, 'PixelateCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/PixelateCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7851, 'ResetCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResetCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7852, 'ResizeCanvasCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCanvasCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7853, 'ResizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/ResizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7854, 'RotateCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/RotateCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7855, 'SharpenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/SharpenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7856, 'TrimCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/TrimCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7857, 'WidenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands', '/vendor/intervention/image/src/Intervention/Image/Gd/Commands/WidenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7858, 'Decoder.php', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Decoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7859, 'Driver.php', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Driver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7860, 'Encoder.php', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Encoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7861, 'Font.php', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7862, 'Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7863, 'CircleShape.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/CircleShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7864, 'EllipseShape.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/EllipseShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7865, 'LineShape.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/LineShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7866, 'PolygonShape.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/PolygonShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7867, 'RectangleShape.php', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes', '/vendor/intervention/image/src/Intervention/Image/Gd/Shapes/RectangleShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7868, 'Image.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Image.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7869, 'ImageManager.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7870, 'ImageManagerStatic.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageManagerStatic.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7871, 'ImageServiceProvider.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7872, 'ImageServiceProviderLaravel4.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravel4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7873, 'ImageServiceProviderLaravelRecent.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLaravelRecent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7874, 'ImageServiceProviderLeague.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLeague.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7875, 'ImageServiceProviderLumen.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/ImageServiceProviderLumen.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7876, 'Imagick', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Imagick', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7877, 'Color.php', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7878, 'Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7879, 'BackupCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BackupCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7880, 'BlurCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BlurCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7881, 'BrightnessCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/BrightnessCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7882, 'ColorizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ColorizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7883, 'ContrastCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ContrastCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7884, 'CropCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/CropCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7885, 'DestroyCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/DestroyCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7886, 'ExifCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ExifCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7887, 'FillCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FillCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7888, 'FitCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FitCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7889, 'FlipCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/FlipCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7890, 'GammaCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GammaCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7891, 'GetSizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GetSizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7892, 'GreyscaleCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/GreyscaleCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7893, 'HeightenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/HeightenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7894, 'InsertCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InsertCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7895, 'InterlaceCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InterlaceCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7896, 'InvertCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7897, 'LimitColorsCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/LimitColorsCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7898, 'MaskCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/MaskCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7899, 'OpacityCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/OpacityCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7900, 'PickColorCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PickColorCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7901, 'PixelCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7902, 'PixelateCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/PixelateCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7903, 'ResetCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResetCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7904, 'ResizeCanvasCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCanvasCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7905, 'ResizeCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/ResizeCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7906, 'RotateCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/RotateCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7907, 'SharpenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/SharpenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7908, 'TrimCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/TrimCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7909, 'WidenCommand.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands', '/vendor/intervention/image/src/Intervention/Image/Imagick/Commands/WidenCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7910, 'Decoder.php', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Decoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7911, 'Driver.php', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Driver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7912, 'Encoder.php', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Encoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7913, 'Font.php', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7914, 'Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7915, 'CircleShape.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/CircleShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7916, 'EllipseShape.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/EllipseShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7917, 'LineShape.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/LineShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7918, 'PolygonShape.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/PolygonShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7919, 'RectangleShape.php', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes', '/vendor/intervention/image/src/Intervention/Image/Imagick/Shapes/RectangleShape.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7920, 'Point.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Point.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7921, 'Response.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7922, 'Size.php', '/vendor/intervention/image/src/Intervention/Image', '/vendor/intervention/image/src/Intervention/Image/Size.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7923, 'config', '/vendor/intervention/image/src', '/vendor/intervention/image/src/config', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7924, 'config.php', '/vendor/intervention/image/src/config', '/vendor/intervention/image/src/config/config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7925, 'league', '/vendor', '/vendor/league', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7926, 'flysystem', '/vendor/league', '/vendor/league/flysystem', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7927, 'INFO.md', '/vendor/league/flysystem', '/vendor/league/flysystem/INFO.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7928, 'LICENSE', '/vendor/league/flysystem', '/vendor/league/flysystem/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7929, 'composer.json', '/vendor/league/flysystem', '/vendor/league/flysystem/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7930, 'config.subsplit-publish.json', '/vendor/league/flysystem', '/vendor/league/flysystem/config.subsplit-publish.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7931, 'docker-compose.yml', '/vendor/league/flysystem', '/vendor/league/flysystem/docker-compose.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7932, 'readme.md', '/vendor/league/flysystem', '/vendor/league/flysystem/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7933, 'src', '/vendor/league/flysystem', '/vendor/league/flysystem/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7934, 'Config.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7935, 'CorruptedPathDetected.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/CorruptedPathDetected.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7936, 'DirectoryAttributes.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/DirectoryAttributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7937, 'DirectoryListing.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/DirectoryListing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7938, 'FileAttributes.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FileAttributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7939, 'Filesystem.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/Filesystem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7940, 'FilesystemAdapter.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7941, 'FilesystemException.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7942, 'FilesystemOperationFailed.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemOperationFailed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7943, 'FilesystemOperator.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemOperator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7944, 'FilesystemReader.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7945, 'FilesystemWriter.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/FilesystemWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7946, 'InvalidStreamProvided.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/InvalidStreamProvided.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7947, 'InvalidVisibilityProvided.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/InvalidVisibilityProvided.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7948, 'Local', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/Local', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7949, 'LocalFilesystemAdapter.php', '/vendor/league/flysystem/src/Local', '/vendor/league/flysystem/src/Local/LocalFilesystemAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7950, 'MountManager.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/MountManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7951, 'PathNormalizer.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/PathNormalizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7952, 'PathPrefixer.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/PathPrefixer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7953, 'PathTraversalDetected.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/PathTraversalDetected.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7954, 'PortableVisibilityGuard.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/PortableVisibilityGuard.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7955, 'ProxyArrayAccessToProperties.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/ProxyArrayAccessToProperties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7956, 'StorageAttributes.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/StorageAttributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7957, 'SymbolicLinkEncountered.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/SymbolicLinkEncountered.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7958, 'UnableToCheckFileExistence.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToCheckFileExistence.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7959, 'UnableToCopyFile.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToCopyFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7960, 'UnableToCreateDirectory.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToCreateDirectory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7961, 'UnableToDeleteDirectory.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToDeleteDirectory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7962, 'UnableToDeleteFile.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToDeleteFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7963, 'UnableToMountFilesystem.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToMountFilesystem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7964, 'UnableToMoveFile.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToMoveFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7965, 'UnableToReadFile.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToReadFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7966, 'UnableToResolveFilesystemMount.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToResolveFilesystemMount.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7967, 'UnableToRetrieveMetadata.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToRetrieveMetadata.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7968, 'UnableToSetVisibility.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToSetVisibility.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7969, 'UnableToWriteFile.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnableToWriteFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7970, 'UnixVisibility', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnixVisibility', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7971, 'PortableVisibilityConverter.php', '/vendor/league/flysystem/src/UnixVisibility', '/vendor/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7972, 'VisibilityConverter.php', '/vendor/league/flysystem/src/UnixVisibility', '/vendor/league/flysystem/src/UnixVisibility/VisibilityConverter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7973, 'UnreadableFileEncountered.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/UnreadableFileEncountered.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7974, 'Visibility.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/Visibility.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7975, 'WhitespacePathNormalizer.php', '/vendor/league/flysystem/src', '/vendor/league/flysystem/src/WhitespacePathNormalizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7976, 'mime-type-detection', '/vendor/league', '/vendor/league/mime-type-detection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7977, 'CHANGELOG.md', '/vendor/league/mime-type-detection', '/vendor/league/mime-type-detection/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7978, 'LICENSE', '/vendor/league/mime-type-detection', '/vendor/league/mime-type-detection/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7979, 'composer.json', '/vendor/league/mime-type-detection', '/vendor/league/mime-type-detection/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7980, 'src', '/vendor/league/mime-type-detection', '/vendor/league/mime-type-detection/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7981, 'EmptyExtensionToMimeTypeMap.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7982, 'ExtensionMimeTypeDetector.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/ExtensionMimeTypeDetector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7983, 'ExtensionToMimeTypeMap.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/ExtensionToMimeTypeMap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7984, 'FinfoMimeTypeDetector.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/FinfoMimeTypeDetector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7985, 'GeneratedExtensionToMimeTypeMap.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7986, 'MimeTypeDetector.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/MimeTypeDetector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7987, 'OverridingExtensionToMimeTypeMap.php', '/vendor/league/mime-type-detection/src', '/vendor/league/mime-type-detection/src/OverridingExtensionToMimeTypeMap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7988, 'lizhichao', '/vendor', '/vendor/lizhichao', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7989, 'one-sm', '/vendor/lizhichao', '/vendor/lizhichao/one-sm', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7990, '.github', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/.github', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7991, 'FUNDING.yml', '/vendor/lizhichao/one-sm/.github', '/vendor/lizhichao/one-sm/.github/FUNDING.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7992, 'workflows', '/vendor/lizhichao/one-sm/.github', '/vendor/lizhichao/one-sm/.github/workflows', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7993, 'sm.yml', '/vendor/lizhichao/one-sm/.github/workflows', '/vendor/lizhichao/one-sm/.github/workflows/sm.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7994, '.gitignore', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7995, '.php_cs.dist', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7996, 'README.md', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7997, 'bench.php', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/bench.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7998, 'composer.json', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(7999, 'src', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8000, 'Sm3.php', '/vendor/lizhichao/one-sm/src', '/vendor/lizhichao/one-sm/src/Sm3.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8001, 'Sm4.php', '/vendor/lizhichao/one-sm/src', '/vendor/lizhichao/one-sm/src/Sm4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8002, 'test.php', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8003, 'tests', '/vendor/lizhichao/one-sm', '/vendor/lizhichao/one-sm/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8004, 'sm3.php', '/vendor/lizhichao/one-sm/tests', '/vendor/lizhichao/one-sm/tests/sm3.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8005, 'sm4.php', '/vendor/lizhichao/one-sm/tests', '/vendor/lizhichao/one-sm/tests/sm4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8006, 'word', '/vendor/lizhichao', '/vendor/lizhichao/word', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8007, '.gitignore', '/vendor/lizhichao/word', '/vendor/lizhichao/word/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8008, 'Data', '/vendor/lizhichao/word', '/vendor/lizhichao/word/Data', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8009, 'dict.igb', '/vendor/lizhichao/word/Data', '/vendor/lizhichao/word/Data/dict.igb', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8010, 'dict.json', '/vendor/lizhichao/word/Data', '/vendor/lizhichao/word/Data/dict.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8011, 'dict.txt', '/vendor/lizhichao/word/Data', '/vendor/lizhichao/word/Data/dict.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8012, 'LICENSE', '/vendor/lizhichao/word', '/vendor/lizhichao/word/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8013, 'Lib', '/vendor/lizhichao/word', '/vendor/lizhichao/word/Lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8014, 'VicDict.php', '/vendor/lizhichao/word/Lib', '/vendor/lizhichao/word/Lib/VicDict.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8015, 'VicWord.php', '/vendor/lizhichao/word/Lib', '/vendor/lizhichao/word/Lib/VicWord.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8016, 'README.md', '/vendor/lizhichao/word', '/vendor/lizhichao/word/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8017, 'addDict.php', '/vendor/lizhichao/word', '/vendor/lizhichao/word/addDict.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8018, 'composer.json', '/vendor/lizhichao/word', '/vendor/lizhichao/word/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8019, 'demo.php', '/vendor/lizhichao/word', '/vendor/lizhichao/word/demo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8020, 'maennchen', '/vendor', '/vendor/maennchen', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8021, 'zipstream-php', '/vendor/maennchen', '/vendor/maennchen/zipstream-php', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8022, '.github', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/.github', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8023, 'FUNDING.yml', '/vendor/maennchen/zipstream-php/.github', '/vendor/maennchen/zipstream-php/.github/FUNDING.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8024, 'ISSUE_TEMPLATE.md', '/vendor/maennchen/zipstream-php/.github', '/vendor/maennchen/zipstream-php/.github/ISSUE_TEMPLATE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8025, '.gitignore', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8026, '.travis.yml', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8027, 'CHANGELOG.md', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8028, 'CONTRIBUTING.md', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8029, 'LICENSE', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8030, 'README.md', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8031, 'composer.json', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8032, 'phpunit.xml.dist', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8033, 'psalm.xml', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/psalm.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8034, 'src', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8035, 'Bigint.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/Bigint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8036, 'DeflateStream.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/DeflateStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8037, 'Exception', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8038, 'EncodingException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/EncodingException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8039, 'FileNotFoundException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/FileNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8040, 'FileNotReadableException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/FileNotReadableException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8041, 'IncompatibleOptionsException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8042, 'OverflowException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/OverflowException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8043, 'StreamNotReadableException.php', '/vendor/maennchen/zipstream-php/src/Exception', '/vendor/maennchen/zipstream-php/src/Exception/StreamNotReadableException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8044, 'Exception.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8045, 'File.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8046, 'Option', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/Option', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8047, 'Archive.php', '/vendor/maennchen/zipstream-php/src/Option', '/vendor/maennchen/zipstream-php/src/Option/Archive.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8048, 'File.php', '/vendor/maennchen/zipstream-php/src/Option', '/vendor/maennchen/zipstream-php/src/Option/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8049, 'Method.php', '/vendor/maennchen/zipstream-php/src/Option', '/vendor/maennchen/zipstream-php/src/Option/Method.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8050, 'Version.php', '/vendor/maennchen/zipstream-php/src/Option', '/vendor/maennchen/zipstream-php/src/Option/Version.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8051, 'Stream.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/Stream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8052, 'ZipStream.php', '/vendor/maennchen/zipstream-php/src', '/vendor/maennchen/zipstream-php/src/ZipStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8053, 'test', '/vendor/maennchen/zipstream-php', '/vendor/maennchen/zipstream-php/test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8054, 'BigintTest.php', '/vendor/maennchen/zipstream-php/test', '/vendor/maennchen/zipstream-php/test/BigintTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8055, 'ZipStreamTest.php', '/vendor/maennchen/zipstream-php/test', '/vendor/maennchen/zipstream-php/test/ZipStreamTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8056, 'bootstrap.php', '/vendor/maennchen/zipstream-php/test', '/vendor/maennchen/zipstream-php/test/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8057, 'bug', '/vendor/maennchen/zipstream-php/test', '/vendor/maennchen/zipstream-php/test/bug', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8058, 'BugHonorFileTimeTest.php', '/vendor/maennchen/zipstream-php/test/bug', '/vendor/maennchen/zipstream-php/test/bug/BugHonorFileTimeTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8059, 'markbaker', '/vendor', '/vendor/markbaker', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8060, 'complex', '/vendor/markbaker', '/vendor/markbaker/complex', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8061, 'README.md', '/vendor/markbaker/complex', '/vendor/markbaker/complex/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8062, 'classes', '/vendor/markbaker/complex', '/vendor/markbaker/complex/classes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8063, 'Autoloader.php', '/vendor/markbaker/complex/classes', '/vendor/markbaker/complex/classes/Autoloader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8064, 'Bootstrap.php', '/vendor/markbaker/complex/classes', '/vendor/markbaker/complex/classes/Bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8065, 'src', '/vendor/markbaker/complex/classes', '/vendor/markbaker/complex/classes/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8066, 'Complex.php', '/vendor/markbaker/complex/classes/src', '/vendor/markbaker/complex/classes/src/Complex.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8067, 'Exception.php', '/vendor/markbaker/complex/classes/src', '/vendor/markbaker/complex/classes/src/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8068, 'functions', '/vendor/markbaker/complex/classes/src', '/vendor/markbaker/complex/classes/src/functions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8069, 'abs.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/abs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8070, 'acos.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8071, 'acosh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acosh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8072, 'acot.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8073, 'acoth.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acoth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8074, 'acsc.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acsc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8075, 'acsch.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/acsch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8076, 'argument.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/argument.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8077, 'asec.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/asec.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8078, 'asech.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/asech.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8079, 'asin.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/asin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8080, 'asinh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/asinh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8081, 'atan.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/atan.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8082, 'atanh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/atanh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8083, 'conjugate.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/conjugate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8084, 'cos.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/cos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8085, 'cosh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/cosh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8086, 'cot.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/cot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8087, 'coth.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/coth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8088, 'csc.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/csc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8089, 'csch.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/csch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8090, 'exp.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/exp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8091, 'inverse.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/inverse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8092, 'ln.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/ln.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8093, 'log10.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/log10.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8094, 'log2.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/log2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8095, 'negative.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/negative.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8096, 'pow.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/pow.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8097, 'rho.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/rho.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8098, 'sec.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/sec.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8099, 'sech.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/sech.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8100, 'sin.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/sin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8101, 'sinh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/sinh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8102, 'sqrt.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/sqrt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8103, 'tan.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/tan.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8104, 'tanh.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/tanh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8105, 'theta.php', '/vendor/markbaker/complex/classes/src/functions', '/vendor/markbaker/complex/classes/src/functions/theta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8106, 'operations', '/vendor/markbaker/complex/classes/src', '/vendor/markbaker/complex/classes/src/operations', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8107, 'add.php', '/vendor/markbaker/complex/classes/src/operations', '/vendor/markbaker/complex/classes/src/operations/add.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8108, 'divideby.php', '/vendor/markbaker/complex/classes/src/operations', '/vendor/markbaker/complex/classes/src/operations/divideby.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8109, 'divideinto.php', '/vendor/markbaker/complex/classes/src/operations', '/vendor/markbaker/complex/classes/src/operations/divideinto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8110, 'multiply.php', '/vendor/markbaker/complex/classes/src/operations', '/vendor/markbaker/complex/classes/src/operations/multiply.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8111, 'subtract.php', '/vendor/markbaker/complex/classes/src/operations', '/vendor/markbaker/complex/classes/src/operations/subtract.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8112, 'composer.json', '/vendor/markbaker/complex', '/vendor/markbaker/complex/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8113, 'examples', '/vendor/markbaker/complex', '/vendor/markbaker/complex/examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8114, 'complexTest.php', '/vendor/markbaker/complex/examples', '/vendor/markbaker/complex/examples/complexTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8115, 'testFunctions.php', '/vendor/markbaker/complex/examples', '/vendor/markbaker/complex/examples/testFunctions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8116, 'testOperations.php', '/vendor/markbaker/complex/examples', '/vendor/markbaker/complex/examples/testOperations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8117, 'license.md', '/vendor/markbaker/complex', '/vendor/markbaker/complex/license.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8118, 'matrix', '/vendor/markbaker', '/vendor/markbaker/matrix', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8119, 'README.md', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8120, 'buildPhar.php', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/buildPhar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8121, 'classes', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/classes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8122, 'Autoloader.php', '/vendor/markbaker/matrix/classes', '/vendor/markbaker/matrix/classes/Autoloader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8123, 'Bootstrap.php', '/vendor/markbaker/matrix/classes', '/vendor/markbaker/matrix/classes/Bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8124, 'src', '/vendor/markbaker/matrix/classes', '/vendor/markbaker/matrix/classes/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8125, 'Builder.php', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/Builder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8126, 'Exception.php', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8127, 'Functions.php', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/Functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8128, 'Matrix.php', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/Matrix.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8129, 'Operators', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/Operators', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8130, 'Addition.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/Addition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8131, 'DirectSum.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/DirectSum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8132, 'Division.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/Division.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8133, 'Multiplication.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/Multiplication.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8134, 'Operator.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/Operator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8135, 'Subtraction.php', '/vendor/markbaker/matrix/classes/src/Operators', '/vendor/markbaker/matrix/classes/src/Operators/Subtraction.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8136, 'functions', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/functions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8137, 'adjoint.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/adjoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8138, 'antidiagonal.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/antidiagonal.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8139, 'cofactors.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/cofactors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8140, 'determinant.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/determinant.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8141, 'diagonal.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/diagonal.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8142, 'identity.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/identity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8143, 'inverse.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/inverse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8144, 'minors.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/minors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8145, 'trace.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/trace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8146, 'transpose.php', '/vendor/markbaker/matrix/classes/src/functions', '/vendor/markbaker/matrix/classes/src/functions/transpose.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8147, 'operations', '/vendor/markbaker/matrix/classes/src', '/vendor/markbaker/matrix/classes/src/operations', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8148, 'add.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/add.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8149, 'directsum.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/directsum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8150, 'divideby.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/divideby.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8151, 'divideinto.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/divideinto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8152, 'multiply.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/multiply.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8153, 'subtract.php', '/vendor/markbaker/matrix/classes/src/operations', '/vendor/markbaker/matrix/classes/src/operations/subtract.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8154, 'composer.7.2.json', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/composer.7.2.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8155, 'composer.json', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8156, 'examples', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8157, 'test.php', '/vendor/markbaker/matrix/examples', '/vendor/markbaker/matrix/examples/test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8158, 'infection.json.dist', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/infection.json.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8159, 'license.md', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/license.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8160, 'phpstan.neon', '/vendor/markbaker/matrix', '/vendor/markbaker/matrix/phpstan.neon', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8161, 'monolog', '/vendor', '/vendor/monolog', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8162, 'monolog', '/vendor/monolog', '/vendor/monolog/monolog', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8163, '.php_cs', '/vendor/monolog/monolog', '/vendor/monolog/monolog/.php_cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8164, 'CHANGELOG.md', '/vendor/monolog/monolog', '/vendor/monolog/monolog/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8165, 'LICENSE', '/vendor/monolog/monolog', '/vendor/monolog/monolog/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8166, 'README.md', '/vendor/monolog/monolog', '/vendor/monolog/monolog/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8167, 'composer.json', '/vendor/monolog/monolog', '/vendor/monolog/monolog/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8168, 'doc', '/vendor/monolog/monolog', '/vendor/monolog/monolog/doc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8169, '01-usage.md', '/vendor/monolog/monolog/doc', '/vendor/monolog/monolog/doc/01-usage.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8170, '02-handlers-formatters-processors.md', '/vendor/monolog/monolog/doc', '/vendor/monolog/monolog/doc/02-handlers-formatters-processors.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8171, '03-utilities.md', '/vendor/monolog/monolog/doc', '/vendor/monolog/monolog/doc/03-utilities.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8172, '04-extending.md', '/vendor/monolog/monolog/doc', '/vendor/monolog/monolog/doc/04-extending.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8173, 'sockets.md', '/vendor/monolog/monolog/doc', '/vendor/monolog/monolog/doc/sockets.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8174, 'phpunit.xml.dist', '/vendor/monolog/monolog', '/vendor/monolog/monolog/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8175, 'src', '/vendor/monolog/monolog', '/vendor/monolog/monolog/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8176, 'Monolog', '/vendor/monolog/monolog/src', '/vendor/monolog/monolog/src/Monolog', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8177, 'ErrorHandler.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/ErrorHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8178, 'Formatter', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Formatter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8179, 'ChromePHPFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8180, 'ElasticaFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8181, 'FlowdockFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8182, 'FluentdFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8183, 'FormatterInterface.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8184, 'GelfMessageFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8185, 'HtmlFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8186, 'JsonFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8187, 'LineFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/LineFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8188, 'LogglyFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8189, 'LogstashFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8190, 'MongoDBFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8191, 'NormalizerFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8192, 'ScalarFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8193, 'WildfireFormatter.php', '/vendor/monolog/monolog/src/Monolog/Formatter', '/vendor/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8194, 'Handler', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Handler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8195, 'AbstractHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/AbstractHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8196, 'AbstractProcessingHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8197, 'AbstractSyslogHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8198, 'AmqpHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/AmqpHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8199, 'BrowserConsoleHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8200, 'BufferHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/BufferHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8201, 'ChromePHPHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8202, 'CouchDBHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8203, 'CubeHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/CubeHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8204, 'Curl', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/Curl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8205, 'Util.php', '/vendor/monolog/monolog/src/Monolog/Handler/Curl', '/vendor/monolog/monolog/src/Monolog/Handler/Curl/Util.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8206, 'DeduplicationHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8207, 'DoctrineCouchDBHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8208, 'DynamoDbHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8209, 'ElasticSearchHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8210, 'ErrorLogHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8211, 'FilterHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FilterHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8212, 'FingersCrossed', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8213, 'ActivationStrategyInterface.php', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8214, 'ChannelLevelActivationStrategy.php', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8215, 'ErrorLevelActivationStrategy.php', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8216, 'FingersCrossedHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8217, 'FirePHPHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8218, 'FleepHookHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8219, 'FlowdockHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8220, 'GelfHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/GelfHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8221, 'GroupHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/GroupHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8222, 'HandlerInterface.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/HandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8223, 'HandlerWrapper.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8224, 'HipChatHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/HipChatHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8225, 'IFTTTHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8226, 'InsightOpsHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8227, 'LogEntriesHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8228, 'LogglyHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8229, 'MailHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/MailHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8230, 'MandrillHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/MandrillHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8231, 'MissingExtensionException.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8232, 'MongoDBHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8233, 'NativeMailerHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8234, 'NewRelicHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8235, 'NullHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/NullHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8236, 'PHPConsoleHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8237, 'PsrHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/PsrHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8238, 'PushoverHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/PushoverHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8239, 'RavenHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/RavenHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8240, 'RedisHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/RedisHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8241, 'RollbarHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/RollbarHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8242, 'RotatingFileHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8243, 'SamplingHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SamplingHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8244, 'Slack', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/Slack', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8245, 'SlackRecord.php', '/vendor/monolog/monolog/src/Monolog/Handler/Slack', '/vendor/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8246, 'SlackHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SlackHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8247, 'SlackWebhookHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8248, 'SlackbotHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8249, 'SocketHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SocketHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8250, 'StreamHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8251, 'SwiftMailerHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8252, 'SyslogHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SyslogHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8253, 'SyslogUdp', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8254, 'UdpSocket.php', '/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp', '/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8255, 'SyslogUdpHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8256, 'TestHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/TestHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8257, 'WhatFailureGroupHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8258, 'ZendMonitorHandler.php', '/vendor/monolog/monolog/src/Monolog/Handler', '/vendor/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8259, 'Logger.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Logger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8260, 'Processor', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Processor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8261, 'GitProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/GitProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8262, 'IntrospectionProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8263, 'MemoryPeakUsageProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8264, 'MemoryProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8265, 'MemoryUsageProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8266, 'MercurialProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8267, 'ProcessIdProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8268, 'ProcessorInterface.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8269, 'PsrLogMessageProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8270, 'TagProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/TagProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8271, 'UidProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/UidProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8272, 'WebProcessor.php', '/vendor/monolog/monolog/src/Monolog/Processor', '/vendor/monolog/monolog/src/Monolog/Processor/WebProcessor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8273, 'Registry.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Registry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8274, 'ResettableInterface.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/ResettableInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8275, 'SignalHandler.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/SignalHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8276, 'Utils.php', '/vendor/monolog/monolog/src/Monolog', '/vendor/monolog/monolog/src/Monolog/Utils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8277, 'tests', '/vendor/monolog/monolog', '/vendor/monolog/monolog/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8278, 'Monolog', '/vendor/monolog/monolog/tests', '/vendor/monolog/monolog/tests/Monolog', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8279, 'ErrorHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/ErrorHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8280, 'Formatter', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/Formatter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8281, 'ChromePHPFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/ChromePHPFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8282, 'ElasticaFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/ElasticaFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8283, 'FlowdockFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/FlowdockFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8284, 'FluentdFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/FluentdFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8285, 'GelfMessageFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/GelfMessageFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8286, 'JsonFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/JsonFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8287, 'LineFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/LineFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8288, 'LogglyFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/LogglyFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8289, 'LogstashFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/LogstashFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8290, 'MongoDBFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/MongoDBFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8291, 'NormalizerFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/NormalizerFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8292, 'ScalarFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/ScalarFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8293, 'WildfireFormatterTest.php', '/vendor/monolog/monolog/tests/Monolog/Formatter', '/vendor/monolog/monolog/tests/Monolog/Formatter/WildfireFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8294, 'Handler', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/Handler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8295, 'AbstractHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/AbstractHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8296, 'AbstractProcessingHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/AbstractProcessingHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8297, 'AmqpHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/AmqpHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8298, 'BrowserConsoleHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/BrowserConsoleHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8299, 'BufferHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/BufferHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8300, 'ChromePHPHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/ChromePHPHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8301, 'CouchDBHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/CouchDBHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8302, 'DeduplicationHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/DeduplicationHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8303, 'DoctrineCouchDBHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/DoctrineCouchDBHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8304, 'DynamoDbHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/DynamoDbHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8305, 'ElasticSearchHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/ElasticSearchHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8306, 'ErrorLogHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/ErrorLogHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8307, 'FilterHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/FilterHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8308, 'FingersCrossedHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/FingersCrossedHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8309, 'FirePHPHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/FirePHPHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8310, 'Fixtures', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8311, '.gitkeep', '/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures', '/vendor/monolog/monolog/tests/Monolog/Handler/Fixtures/.gitkeep', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8312, 'FleepHookHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/FleepHookHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8313, 'FlowdockHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/FlowdockHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8314, 'GelfHandlerLegacyTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/GelfHandlerLegacyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8315, 'GelfHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/GelfHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8316, 'GelfMockMessagePublisher.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/GelfMockMessagePublisher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8317, 'GroupHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/GroupHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8318, 'HandlerWrapperTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/HandlerWrapperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8319, 'HipChatHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/HipChatHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8320, 'InsightOpsHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/InsightOpsHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8321, 'LogEntriesHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/LogEntriesHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8322, 'MailHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/MailHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8323, 'MockRavenClient.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/MockRavenClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8324, 'MongoDBHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/MongoDBHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8325, 'NativeMailerHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/NativeMailerHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8326, 'NewRelicHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/NewRelicHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8327, 'NullHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/NullHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8328, 'PHPConsoleHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/PHPConsoleHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8329, 'PsrHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/PsrHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8330, 'PushoverHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/PushoverHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8331, 'RavenHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/RavenHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8332, 'RedisHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/RedisHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8333, 'RollbarHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/RollbarHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8334, 'RotatingFileHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/RotatingFileHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8335, 'SamplingHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SamplingHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8336, 'Slack', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/Slack', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8337, 'SlackRecordTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler/Slack', '/vendor/monolog/monolog/tests/Monolog/Handler/Slack/SlackRecordTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8338, 'SlackHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SlackHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8339, 'SlackWebhookHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SlackWebhookHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8340, 'SlackbotHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SlackbotHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8341, 'SocketHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SocketHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8342, 'StreamHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/StreamHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8343, 'SwiftMailerHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SwiftMailerHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8344, 'SyslogHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SyslogHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8345, 'SyslogUdpHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/SyslogUdpHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8346, 'TestHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/TestHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8347, 'UdpSocketTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/UdpSocketTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8348, 'WhatFailureGroupHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/WhatFailureGroupHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8349, 'ZendMonitorHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog/Handler', '/vendor/monolog/monolog/tests/Monolog/Handler/ZendMonitorHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8350, 'LoggerTest.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/LoggerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8351, 'Processor', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/Processor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8352, 'GitProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/GitProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8353, 'IntrospectionProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/IntrospectionProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8354, 'MemoryPeakUsageProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/MemoryPeakUsageProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8355, 'MemoryUsageProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/MemoryUsageProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8356, 'MercurialProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/MercurialProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8357, 'ProcessIdProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/ProcessIdProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8358, 'PsrLogMessageProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/PsrLogMessageProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8359, 'TagProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/TagProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8360, 'UidProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/UidProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8361, 'WebProcessorTest.php', '/vendor/monolog/monolog/tests/Monolog/Processor', '/vendor/monolog/monolog/tests/Monolog/Processor/WebProcessorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8362, 'PsrLogCompatTest.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/PsrLogCompatTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8363, 'RegistryTest.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/RegistryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8364, 'SignalHandlerTest.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/SignalHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8365, 'TestCase.php', '/vendor/monolog/monolog/tests/Monolog', '/vendor/monolog/monolog/tests/Monolog/TestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8366, 'mtdowling', '/vendor', '/vendor/mtdowling', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8367, 'jmespath.php', '/vendor/mtdowling', '/vendor/mtdowling/jmespath.php', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8368, '.gitignore', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8369, '.travis.yml', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8370, 'CHANGELOG.md', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8371, 'LICENSE', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8372, 'Makefile', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/Makefile', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8373, 'README.rst', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/README.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8374, 'bin', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/bin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8375, 'jp.php', '/vendor/mtdowling/jmespath.php/bin', '/vendor/mtdowling/jmespath.php/bin/jp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8376, 'perf.php', '/vendor/mtdowling/jmespath.php/bin', '/vendor/mtdowling/jmespath.php/bin/perf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8377, 'composer.json', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8378, 'phpunit.xml.dist', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8379, 'src', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8380, 'AstRuntime.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/AstRuntime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8381, 'CompilerRuntime.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/CompilerRuntime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8382, 'DebugRuntime.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/DebugRuntime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8383, 'Env.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/Env.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8384, 'FnDispatcher.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/FnDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8385, 'JmesPath.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/JmesPath.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8386, 'Lexer.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/Lexer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8387, 'Parser.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/Parser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8388, 'SyntaxErrorException.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/SyntaxErrorException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8389, 'TreeCompiler.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/TreeCompiler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8390, 'TreeInterpreter.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/TreeInterpreter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8391, 'Utils.php', '/vendor/mtdowling/jmespath.php/src', '/vendor/mtdowling/jmespath.php/src/Utils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8392, 'tests', '/vendor/mtdowling/jmespath.php', '/vendor/mtdowling/jmespath.php/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8393, 'ComplianceTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/ComplianceTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8394, 'EnvTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/EnvTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8395, 'FnDispatcherTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/FnDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8396, 'LexerTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/LexerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8397, 'ParserTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/ParserTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8398, 'SyntaxErrorExceptionTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/SyntaxErrorExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8399, 'TreeCompilerTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/TreeCompilerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8400, 'TreeInterpreterTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/TreeInterpreterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8401, 'UtilsTest.php', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/UtilsTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8402, 'compliance', '/vendor/mtdowling/jmespath.php/tests', '/vendor/mtdowling/jmespath.php/tests/compliance', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8403, 'basic.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/basic.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8404, 'boolean.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/boolean.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8405, 'current.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/current.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8406, 'escape.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/escape.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8407, 'filters.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/filters.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8408, 'functions.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/functions.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8409, 'identifiers.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/identifiers.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8410, 'indices.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/indices.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8411, 'literal.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/literal.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8412, 'multiselect.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/multiselect.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8413, 'perf', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8414, 'basic.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/basic.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8415, 'deep_hierarchy.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/deep_hierarchy.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8416, 'deep_projection.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/deep_projection.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8417, 'functions.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/functions.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8418, 'multiwildcard.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/multiwildcard.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8419, 'wildcardindex.json', '/vendor/mtdowling/jmespath.php/tests/compliance/perf', '/vendor/mtdowling/jmespath.php/tests/compliance/perf/wildcardindex.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8420, 'pipe.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/pipe.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8421, 'slice.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/slice.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8422, 'syntax.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/syntax.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8423, 'unicode.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/unicode.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8424, 'wildcard.json', '/vendor/mtdowling/jmespath.php/tests/compliance', '/vendor/mtdowling/jmespath.php/tests/compliance/wildcard.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8425, 'myclabs', '/vendor', '/vendor/myclabs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8426, 'php-enum', '/vendor/myclabs', '/vendor/myclabs/php-enum', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8427, 'LICENSE', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8428, 'README.md', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8429, 'SECURITY.md', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/SECURITY.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8430, 'composer.json', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8431, 'psalm.xml', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/psalm.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8432, 'src', '/vendor/myclabs/php-enum', '/vendor/myclabs/php-enum/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8433, 'Enum.php', '/vendor/myclabs/php-enum/src', '/vendor/myclabs/php-enum/src/Enum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8434, 'PHPUnit', '/vendor/myclabs/php-enum/src', '/vendor/myclabs/php-enum/src/PHPUnit', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8435, 'Comparator.php', '/vendor/myclabs/php-enum/src/PHPUnit', '/vendor/myclabs/php-enum/src/PHPUnit/Comparator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8436, 'nesbot', '/vendor', '/vendor/nesbot', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8437, 'carbon', '/vendor/nesbot', '/vendor/nesbot/carbon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8438, '.github', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/.github', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8439, 'FUNDING.yml', '/vendor/nesbot/carbon/.github', '/vendor/nesbot/carbon/.github/FUNDING.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8440, 'ISSUE_TEMPLATE.md', '/vendor/nesbot/carbon/.github', '/vendor/nesbot/carbon/.github/ISSUE_TEMPLATE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8441, '.multi-tester.yml', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/.multi-tester.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8442, 'LICENSE', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8443, 'composer.json', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8444, 'contributing.md', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/contributing.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8445, 'phpmd.xml', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/phpmd.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8446, 'readme.md', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/readme.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8447, 'src', '/vendor/nesbot/carbon', '/vendor/nesbot/carbon/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8448, 'Carbon', '/vendor/nesbot/carbon/src', '/vendor/nesbot/carbon/src/Carbon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8449, 'Carbon.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Carbon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8450, 'CarbonImmutable.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/CarbonImmutable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8451, 'CarbonInterface.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/CarbonInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8452, 'CarbonInterval.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/CarbonInterval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8453, 'CarbonPeriod.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/CarbonPeriod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8454, 'CarbonTimeZone.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/CarbonTimeZone.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8455, 'Exceptions', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Exceptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8456, 'InvalidDateException.php', '/vendor/nesbot/carbon/src/Carbon/Exceptions', '/vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidDateException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8457, 'Factory.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Factory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8458, 'FactoryImmutable.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/FactoryImmutable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8459, 'Lang', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Lang', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8460, 'aa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/aa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8461, 'aa_DJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/aa_DJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8462, 'aa_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8463, 'aa_ER@saaho.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/aa_ER@saaho.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8464, 'aa_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/aa_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8465, 'af.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/af.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8466, 'af_NA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/af_NA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8467, 'af_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/af_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8468, 'agq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/agq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8469, 'agr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/agr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8470, 'agr_PE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/agr_PE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8471, 'ak.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ak.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8472, 'ak_GH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ak_GH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8473, 'am.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/am.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8474, 'am_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/am_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8475, 'an.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/an.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8476, 'an_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/an_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8477, 'anp.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/anp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8478, 'anp_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/anp_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8479, 'ar.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8480, 'ar_AE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_AE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8481, 'ar_BH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_BH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8482, 'ar_DJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_DJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8483, 'ar_DZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_DZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8484, 'ar_EG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_EG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8485, 'ar_EH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_EH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8486, 'ar_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8487, 'ar_IL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_IL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8488, 'ar_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8489, 'ar_IQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_IQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8490, 'ar_JO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_JO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8491, 'ar_KM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_KM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8492, 'ar_KW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_KW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8493, 'ar_LB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_LB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8494, 'ar_LY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_LY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8495, 'ar_MA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_MA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8496, 'ar_MR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_MR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8497, 'ar_OM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_OM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8498, 'ar_PS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_PS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8499, 'ar_QA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_QA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8500, 'ar_SA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_SA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8501, 'ar_SD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_SD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8502, 'ar_SO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_SO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8503, 'ar_SS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_SS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8504, 'ar_SY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_SY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8505, 'ar_Shakl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_Shakl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8506, 'ar_TD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_TD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8507, 'ar_TN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_TN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8508, 'ar_YE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ar_YE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8509, 'as.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/as.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8510, 'as_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/as_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8511, 'asa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/asa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8512, 'ast.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ast.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8513, 'ast_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ast_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8514, 'ayc.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ayc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8515, 'ayc_PE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ayc_PE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8516, 'az.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/az.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8517, 'az_AZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/az_AZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8518, 'az_Cyrl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/az_Cyrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8519, 'az_IR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/az_IR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8520, 'az_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/az_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8521, 'bas.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bas.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8522, 'be.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/be.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8523, 'be_BY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/be_BY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8524, 'be_BY@latin.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/be_BY@latin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8525, 'bem.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8526, 'bem_ZM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bem_ZM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8527, 'ber.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8528, 'ber_DZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ber_DZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8529, 'ber_MA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ber_MA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8530, 'bez.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bez.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8531, 'bg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8532, 'bg_BG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bg_BG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8533, 'bhb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bhb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8534, 'bhb_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bhb_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8535, 'bho.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bho.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8536, 'bho_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bho_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8537, 'bi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8538, 'bi_VU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bi_VU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8539, 'bm.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8540, 'bn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8541, 'bn_BD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bn_BD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8542, 'bn_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bn_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8543, 'bo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8544, 'bo_CN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bo_CN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8545, 'bo_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bo_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8546, 'br.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/br.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8547, 'br_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/br_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8548, 'brx.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/brx.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8549, 'brx_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/brx_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8550, 'bs.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8551, 'bs_BA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bs_BA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8552, 'bs_Cyrl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bs_Cyrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8553, 'bs_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/bs_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8554, 'byn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/byn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8555, 'byn_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/byn_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8556, 'ca.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8557, 'ca_AD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca_AD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8558, 'ca_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8559, 'ca_ES_Valencia.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca_ES_Valencia.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8560, 'ca_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8561, 'ca_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ca_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8562, 'ccp.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ccp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8563, 'ccp_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ccp_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8564, 'ce.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ce.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8565, 'ce_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ce_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8566, 'cgg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cgg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8567, 'chr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/chr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8568, 'chr_US.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/chr_US.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8569, 'cmn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cmn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8570, 'cmn_TW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cmn_TW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8571, 'crh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/crh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8572, 'crh_UA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/crh_UA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8573, 'cs.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8574, 'cs_CZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cs_CZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8575, 'csb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/csb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8576, 'csb_PL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/csb_PL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8577, 'cu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8578, 'cv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8579, 'cv_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cv_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8580, 'cy.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8581, 'cy_GB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/cy_GB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8582, 'da.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/da.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8583, 'da_DK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/da_DK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8584, 'da_GL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/da_GL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8585, 'dav.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dav.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8586, 'de.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8587, 'de_AT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_AT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8588, 'de_BE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_BE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8589, 'de_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8590, 'de_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8591, 'de_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8592, 'de_LI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_LI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8593, 'de_LU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/de_LU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8594, 'dje.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dje.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8595, 'doi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/doi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8596, 'doi_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/doi_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8597, 'dsb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dsb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8598, 'dsb_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dsb_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8599, 'dua.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dua.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8600, 'dv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8601, 'dv_MV.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dv_MV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8602, 'dyo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dyo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8603, 'dz.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dz.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8604, 'dz_BT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/dz_BT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8605, 'ebu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ebu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8606, 'ee.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ee.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8607, 'ee_TG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ee_TG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8608, 'el.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/el.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8609, 'el_CY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/el_CY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8610, 'el_GR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/el_GR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8611, 'en.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8612, 'en_001.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_001.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8613, 'en_150.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_150.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8614, 'en_AG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_AG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8615, 'en_AI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_AI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8616, 'en_AS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_AS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8617, 'en_AT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_AT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8618, 'en_AU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_AU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8619, 'en_BB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8620, 'en_BE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8621, 'en_BI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8622, 'en_BM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8623, 'en_BS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8624, 'en_BW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8625, 'en_BZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_BZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8626, 'en_CA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8627, 'en_CC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8628, 'en_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8629, 'en_CK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8630, 'en_CM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8631, 'en_CX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8632, 'en_CY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_CY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8633, 'en_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8634, 'en_DG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_DG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8635, 'en_DK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_DK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8636, 'en_DM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_DM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8637, 'en_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8638, 'en_FI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_FI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8639, 'en_FJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_FJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8640, 'en_FK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_FK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8641, 'en_FM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_FM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8642, 'en_GB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8643, 'en_GD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8644, 'en_GG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8645, 'en_GH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8646, 'en_GI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8647, 'en_GM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8648, 'en_GU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8649, 'en_GY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_GY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8650, 'en_HK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_HK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8651, 'en_IE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_IE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8652, 'en_IL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_IL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8653, 'en_IM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_IM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8654, 'en_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8655, 'en_IO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_IO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8656, 'en_ISO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_ISO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8657, 'en_JE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_JE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8658, 'en_JM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_JM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8659, 'en_KE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_KE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8660, 'en_KI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_KI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8661, 'en_KN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_KN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8662, 'en_KY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_KY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8663, 'en_LC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_LC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8664, 'en_LR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_LR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8665, 'en_LS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_LS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8666, 'en_MG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8667, 'en_MH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8668, 'en_MO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8669, 'en_MP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8670, 'en_MS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8671, 'en_MT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8672, 'en_MU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8673, 'en_MW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8674, 'en_MY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_MY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8675, 'en_NA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8676, 'en_NF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8677, 'en_NG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8678, 'en_NL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8679, 'en_NR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8680, 'en_NU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8681, 'en_NZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_NZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8682, 'en_PG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8683, 'en_PH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8684, 'en_PK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8685, 'en_PN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8686, 'en_PR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8687, 'en_PW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_PW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8688, 'en_RW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_RW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8689, 'en_SB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8690, 'en_SC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8691, 'en_SD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8692, 'en_SE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8693, 'en_SG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8694, 'en_SH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8695, 'en_SI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8696, 'en_SL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8697, 'en_SS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8698, 'en_SX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8699, 'en_SZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_SZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8700, 'en_TC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8701, 'en_TK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8702, 'en_TO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8703, 'en_TT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8704, 'en_TV.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8705, 'en_TZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_TZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8706, 'en_UG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_UG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8707, 'en_UM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_UM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8708, 'en_US.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_US.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8709, 'en_US_Posix.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_US_Posix.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8710, 'en_VC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_VC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8711, 'en_VG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_VG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8712, 'en_VI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_VI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8713, 'en_VU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_VU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8714, 'en_WS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_WS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8715, 'en_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8716, 'en_ZM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_ZM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8717, 'en_ZW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/en_ZW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8718, 'eo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/eo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8719, 'es.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8720, 'es_419.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_419.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8721, 'es_AR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_AR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8722, 'es_BO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_BO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8723, 'es_BR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_BR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8724, 'es_BZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_BZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8725, 'es_CL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_CL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8726, 'es_CO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_CO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8727, 'es_CR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_CR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8728, 'es_CU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_CU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8729, 'es_DO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_DO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8730, 'es_EA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_EA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8731, 'es_EC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_EC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8732, 'es_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8733, 'es_GQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_GQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8734, 'es_GT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_GT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8735, 'es_HN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_HN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8736, 'es_IC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_IC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8737, 'es_MX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_MX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8738, 'es_NI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_NI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8739, 'es_PA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_PA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8740, 'es_PE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_PE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8741, 'es_PH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_PH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8742, 'es_PR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_PR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8743, 'es_PY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_PY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8744, 'es_SV.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_SV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8745, 'es_US.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_US.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8746, 'es_UY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_UY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8747, 'es_VE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/es_VE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8748, 'et.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/et.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8749, 'et_EE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/et_EE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8750, 'eu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/eu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8751, 'eu_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/eu_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8752, 'ewo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ewo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8753, 'fa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8754, 'fa_AF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fa_AF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8755, 'fa_IR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fa_IR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8756, 'ff.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ff.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8757, 'ff_CM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ff_CM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8758, 'ff_GN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ff_GN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8759, 'ff_MR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ff_MR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8760, 'ff_SN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ff_SN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8761, 'fi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8762, 'fi_FI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fi_FI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8763, 'fil.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fil.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8764, 'fil_PH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fil_PH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8765, 'fo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8766, 'fo_DK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fo_DK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8767, 'fo_FO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fo_FO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8768, 'fr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8769, 'fr_BE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_BE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8770, 'fr_BF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_BF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8771, 'fr_BI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_BI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8772, 'fr_BJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_BJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8773, 'fr_BL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_BL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8774, 'fr_CA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8775, 'fr_CD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8776, 'fr_CF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8777, 'fr_CG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8778, 'fr_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8779, 'fr_CI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8780, 'fr_CM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_CM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8781, 'fr_DJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_DJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8782, 'fr_DZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_DZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8783, 'fr_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8784, 'fr_GA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_GA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8785, 'fr_GF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_GF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8786, 'fr_GN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_GN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8787, 'fr_GP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_GP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8788, 'fr_GQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_GQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8789, 'fr_HT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_HT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8790, 'fr_KM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_KM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8791, 'fr_LU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_LU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8792, 'fr_MA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8793, 'fr_MC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8794, 'fr_MF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8795, 'fr_MG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8796, 'fr_ML.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_ML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8797, 'fr_MQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8798, 'fr_MR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8799, 'fr_MU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_MU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8800, 'fr_NC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_NC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8801, 'fr_NE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_NE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8802, 'fr_PF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_PF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8803, 'fr_PM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_PM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8804, 'fr_RE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_RE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8805, 'fr_RW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_RW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8806, 'fr_SC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_SC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8807, 'fr_SN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_SN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8808, 'fr_SY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_SY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8809, 'fr_TD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_TD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8810, 'fr_TG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_TG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8811, 'fr_TN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_TN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8812, 'fr_VU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_VU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8813, 'fr_WF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_WF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8814, 'fr_YT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fr_YT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8815, 'fur.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fur.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8816, 'fur_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fur_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8817, 'fy.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8818, 'fy_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fy_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8819, 'fy_NL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/fy_NL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8820, 'ga.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ga.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8821, 'ga_IE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ga_IE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8822, 'gd.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gd.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8823, 'gd_GB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gd_GB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8824, 'gez.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gez.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8825, 'gez_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gez_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8826, 'gez_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gez_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8827, 'gl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8828, 'gl_ES.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gl_ES.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8829, 'gom.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gom.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8830, 'gom_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gom_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8831, 'gsw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gsw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8832, 'gsw_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gsw_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8833, 'gsw_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gsw_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8834, 'gsw_LI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gsw_LI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8835, 'gu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8836, 'gu_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gu_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8837, 'guz.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/guz.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8838, 'gv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8839, 'gv_GB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/gv_GB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8840, 'ha.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8841, 'ha_GH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ha_GH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8842, 'ha_NE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ha_NE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8843, 'ha_NG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ha_NG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8844, 'hak.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hak.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8845, 'hak_TW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hak_TW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8846, 'haw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/haw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8847, 'he.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/he.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8848, 'he_IL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/he_IL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8849, 'hi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8850, 'hi_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hi_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8851, 'hif.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hif.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8852, 'hif_FJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hif_FJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8853, 'hne.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hne.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8854, 'hne_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hne_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8855, 'hr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8856, 'hr_BA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hr_BA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8857, 'hr_HR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hr_HR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8858, 'hsb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hsb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8859, 'hsb_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hsb_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8860, 'ht.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ht.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8861, 'ht_HT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ht_HT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8862, 'hu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8863, 'hu_HU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hu_HU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8864, 'hy.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8865, 'hy_AM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/hy_AM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8866, 'i18n.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/i18n.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8867, 'ia.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ia.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8868, 'ia_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ia_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8869, 'id.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/id.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8870, 'id_ID.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/id_ID.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8871, 'ig.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8872, 'ig_NG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ig_NG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8873, 'ii.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ii.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8874, 'ik.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ik.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8875, 'ik_CA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ik_CA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8876, 'in.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/in.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8877, 'is.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/is.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8878, 'is_IS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/is_IS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8879, 'it.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/it.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8880, 'it_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/it_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8881, 'it_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/it_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8882, 'it_SM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/it_SM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8883, 'it_VA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/it_VA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8884, 'iu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/iu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8885, 'iu_CA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/iu_CA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8886, 'iw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/iw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8887, 'ja.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ja.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8888, 'ja_JP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ja_JP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8889, 'jgo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/jgo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8890, 'jmc.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/jmc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8891, 'jv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/jv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8892, 'ka.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ka.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8893, 'ka_GE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ka_GE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8894, 'kab.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kab.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8895, 'kab_DZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kab_DZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8896, 'kam.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8897, 'kde.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kde.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8898, 'kea.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kea.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8899, 'khq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/khq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8900, 'ki.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ki.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8901, 'kk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8902, 'kk_KZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kk_KZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8903, 'kkj.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kkj.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8904, 'kl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8905, 'kl_GL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kl_GL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8906, 'kln.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kln.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8907, 'km.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/km.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8908, 'km_KH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/km_KH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8909, 'kn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8910, 'kn_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kn_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8911, 'ko.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ko.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8912, 'ko_KP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ko_KP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8913, 'ko_KR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ko_KR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8914, 'kok.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kok.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8915, 'kok_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kok_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8916, 'ks.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8917, 'ks_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8918, 'ks_IN@devanagari.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ks_IN@devanagari.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8919, 'ksb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ksb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8920, 'ksf.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ksf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8921, 'ksh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ksh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8922, 'ku.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ku.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8923, 'ku_TR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ku_TR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8924, 'kw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8925, 'kw_GB.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/kw_GB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8926, 'ky.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ky.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8927, 'ky_KG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ky_KG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8928, 'lag.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8929, 'lb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8930, 'lb_LU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lb_LU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8931, 'lg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8932, 'lg_UG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lg_UG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8933, 'li.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/li.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8934, 'li_NL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/li_NL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8935, 'lij.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lij.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8936, 'lij_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lij_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8937, 'lkt.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lkt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8938, 'ln.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ln.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8939, 'ln_AO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ln_AO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8940, 'ln_CD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ln_CD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8941, 'ln_CF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ln_CF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8942, 'ln_CG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ln_CG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8943, 'lo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8944, 'lo_LA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lo_LA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8945, 'lrc.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lrc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8946, 'lrc_IQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lrc_IQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8947, 'lt.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8948, 'lt_LT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lt_LT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8949, 'lu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8950, 'luo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/luo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8951, 'luy.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/luy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8952, 'lv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8953, 'lv_LV.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lv_LV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8954, 'lzh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lzh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8955, 'lzh_TW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/lzh_TW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8956, 'mag.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8957, 'mag_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mag_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8958, 'mai.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mai.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8959, 'mai_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mai_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8960, 'mas.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mas.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8961, 'mas_TZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mas_TZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8962, 'me.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/me.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8963, 'mer.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8964, 'mfe.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mfe.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8965, 'mfe_MU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mfe_MU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8966, 'mg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8967, 'mg_MG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mg_MG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8968, 'mgh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mgh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8969, 'mgo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mgo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8970, 'mhr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mhr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8971, 'mhr_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mhr_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8972, 'mi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8973, 'mi_NZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mi_NZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8974, 'miq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/miq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8975, 'miq_NI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/miq_NI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8976, 'mjw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mjw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8977, 'mjw_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mjw_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8978, 'mk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8979, 'mk_MK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mk_MK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8980, 'ml.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ml.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8981, 'ml_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ml_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8982, 'mn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8983, 'mn_MN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mn_MN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8984, 'mni.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mni.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8985, 'mni_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mni_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8986, 'mo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8987, 'mr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8988, 'mr_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mr_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8989, 'ms.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ms.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8990, 'ms_BN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ms_BN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8991, 'ms_MY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ms_MY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8992, 'ms_SG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ms_SG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8993, 'mt.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8994, 'mt_MT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mt_MT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8995, 'mua.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mua.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8996, 'my.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/my.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8997, 'my_MM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/my_MM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8998, 'mzn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/mzn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(8999, 'nan.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nan.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9000, 'nan_TW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9001, 'nan_TW@latin.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nan_TW@latin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9002, 'naq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/naq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9003, 'nb.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9004, 'nb_NO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nb_NO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9005, 'nb_SJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nb_SJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9006, 'nd.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nd.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9007, 'nds.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nds.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9008, 'nds_DE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nds_DE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9009, 'nds_NL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nds_NL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9010, 'ne.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ne.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9011, 'ne_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ne_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9012, 'ne_NP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ne_NP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9013, 'nhn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nhn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9014, 'nhn_MX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nhn_MX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9015, 'niu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/niu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9016, 'niu_NU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/niu_NU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9017, 'nl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9018, 'nl_AW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_AW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9019, 'nl_BE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_BE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9020, 'nl_BQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_BQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9021, 'nl_CW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_CW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9022, 'nl_NL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_NL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9023, 'nl_SR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_SR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9024, 'nl_SX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nl_SX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9025, 'nmg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nmg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9026, 'nn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9027, 'nn_NO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nn_NO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9028, 'nnh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nnh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9029, 'no.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/no.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9030, 'nr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9031, 'nr_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nr_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9032, 'nso.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nso.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9033, 'nso_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nso_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9034, 'nus.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9035, 'nyn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/nyn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9036, 'oc.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/oc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9037, 'oc_FR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/oc_FR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9038, 'om.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/om.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9039, 'om_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/om_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9040, 'om_KE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/om_KE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9041, 'or.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/or.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9042, 'or_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/or_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9043, 'os.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/os.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9044, 'os_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/os_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9045, 'pa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9046, 'pa_Arab.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pa_Arab.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9047, 'pa_Guru.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pa_Guru.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9048, 'pa_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pa_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9049, 'pa_PK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pa_PK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9050, 'pap.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9051, 'pap_AW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pap_AW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9052, 'pap_CW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pap_CW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9053, 'pl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9054, 'pl_PL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pl_PL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9055, 'prg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/prg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9056, 'ps.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ps.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9057, 'ps_AF.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ps_AF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9058, 'pt.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9059, 'pt_AO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_AO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9060, 'pt_BR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_BR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9061, 'pt_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9062, 'pt_CV.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_CV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9063, 'pt_GQ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_GQ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9064, 'pt_GW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_GW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9065, 'pt_LU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_LU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9066, 'pt_MO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_MO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9067, 'pt_MZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_MZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9068, 'pt_PT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_PT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9069, 'pt_ST.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_ST.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9070, 'pt_TL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/pt_TL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9071, 'qu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/qu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9072, 'qu_BO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/qu_BO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9073, 'qu_EC.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/qu_EC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9074, 'quz.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/quz.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9075, 'quz_PE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/quz_PE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9076, 'raj.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/raj.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9077, 'raj_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/raj_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9078, 'rm.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9079, 'rn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9080, 'ro.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ro.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9081, 'ro_MD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ro_MD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9082, 'ro_RO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ro_RO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9083, 'rof.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rof.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9084, 'ru.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9085, 'ru_BY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_BY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9086, 'ru_KG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_KG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9087, 'ru_KZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_KZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9088, 'ru_MD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_MD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9089, 'ru_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9090, 'ru_UA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ru_UA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9091, 'rw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9092, 'rw_RW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rw_RW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9093, 'rwk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/rwk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9094, 'sa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9095, 'sa_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sa_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9096, 'sah.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sah.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9097, 'sah_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sah_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9098, 'saq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/saq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9099, 'sat.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sat.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9100, 'sat_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sat_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9101, 'sbp.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sbp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9102, 'sc.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9103, 'sc_IT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sc_IT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9104, 'scr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/scr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9105, 'sd.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sd.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9106, 'sd_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9107, 'sd_IN@devanagari.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sd_IN@devanagari.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9108, 'se.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/se.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9109, 'se_FI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/se_FI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9110, 'se_NO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/se_NO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9111, 'se_SE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/se_SE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9112, 'seh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/seh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9113, 'ses.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ses.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9114, 'sg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9115, 'sgs.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sgs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9116, 'sgs_LT.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sgs_LT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9117, 'sh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9118, 'shi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9119, 'shi_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shi_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9120, 'shi_Tfng.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shi_Tfng.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9121, 'shn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9122, 'shn_MM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shn_MM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9123, 'shs.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9124, 'shs_CA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/shs_CA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9125, 'si.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/si.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9126, 'si_LK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/si_LK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9127, 'sid.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sid.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9128, 'sid_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sid_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9129, 'sk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9130, 'sk_SK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sk_SK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9131, 'sl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9132, 'sl_SI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sl_SI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9133, 'sm.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9134, 'sm_WS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sm_WS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9135, 'smn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/smn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9136, 'sn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9137, 'so.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/so.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9138, 'so_DJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/so_DJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9139, 'so_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/so_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9140, 'so_KE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/so_KE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9141, 'so_SO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/so_SO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9142, 'sq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9143, 'sq_AL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sq_AL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9144, 'sq_MK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sq_MK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9145, 'sq_XK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sq_XK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9146, 'sr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9147, 'sr_Cyrl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9148, 'sr_Cyrl_BA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_BA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9149, 'sr_Cyrl_ME.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_ME.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9150, 'sr_Cyrl_XK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Cyrl_XK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9151, 'sr_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9152, 'sr_Latn_BA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_BA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9153, 'sr_Latn_ME.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_ME.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9154, 'sr_Latn_XK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_Latn_XK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9155, 'sr_ME.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_ME.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9156, 'sr_RS.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9157, 'sr_RS@latin.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sr_RS@latin.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9158, 'ss.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ss.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9159, 'ss_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ss_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9160, 'st.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/st.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9161, 'st_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/st_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9162, 'sv.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9163, 'sv_AX.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sv_AX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9164, 'sv_FI.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sv_FI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9165, 'sv_SE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sv_SE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9166, 'sw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9167, 'sw_CD.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sw_CD.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9168, 'sw_KE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sw_KE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9169, 'sw_TZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sw_TZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9170, 'sw_UG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/sw_UG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9171, 'szl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/szl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9172, 'szl_PL.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/szl_PL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9173, 'ta.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9174, 'ta_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ta_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9175, 'ta_LK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ta_LK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9176, 'ta_MY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ta_MY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9177, 'ta_SG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ta_SG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9178, 'tcy.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tcy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9179, 'tcy_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tcy_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9180, 'te.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/te.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9181, 'te_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/te_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9182, 'teo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/teo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9183, 'teo_KE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/teo_KE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9184, 'tet.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9185, 'tg.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tg.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9186, 'tg_TJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tg_TJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9187, 'th.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/th.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9188, 'th_TH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/th_TH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9189, 'the.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/the.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9190, 'the_NP.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/the_NP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9191, 'ti.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ti.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9192, 'ti_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ti_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9193, 'ti_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ti_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9194, 'tig.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9195, 'tig_ER.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tig_ER.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9196, 'tk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9197, 'tk_TM.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tk_TM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9198, 'tl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9199, 'tl_PH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tl_PH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9200, 'tlh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tlh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9201, 'tn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9202, 'tn_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tn_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9203, 'to.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/to.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9204, 'to_TO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/to_TO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9205, 'tpi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tpi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9206, 'tpi_PG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tpi_PG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9207, 'tr.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9208, 'tr_CY.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tr_CY.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9209, 'tr_TR.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tr_TR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9210, 'ts.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ts.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9211, 'ts_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ts_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9212, 'tt.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tt.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9213, 'tt_RU.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9214, 'tt_RU@iqtelif.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tt_RU@iqtelif.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9215, 'twq.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/twq.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9216, 'tzl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tzl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9217, 'tzm.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tzm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9218, 'tzm_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/tzm_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9219, 'ug.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ug.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9220, 'ug_CN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ug_CN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9221, 'uk.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9222, 'uk_UA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uk_UA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9223, 'unm.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/unm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9224, 'unm_US.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/unm_US.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9225, 'ur.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ur.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9226, 'ur_IN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ur_IN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9227, 'ur_PK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ur_PK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9228, 'uz.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9229, 'uz_Arab.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz_Arab.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9230, 'uz_Cyrl.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz_Cyrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9231, 'uz_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9232, 'uz_UZ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9233, 'uz_UZ@cyrillic.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/uz_UZ@cyrillic.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9234, 'vai.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vai.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9235, 'vai_Latn.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vai_Latn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9236, 'vai_Vaii.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vai_Vaii.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9237, 've.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ve.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9238, 've_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/ve_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9239, 'vi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9240, 'vi_VN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vi_VN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9241, 'vo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9242, 'vun.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/vun.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9243, 'wa.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wa.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9244, 'wa_BE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wa_BE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9245, 'wae.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wae.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9246, 'wae_CH.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wae_CH.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9247, 'wal.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wal.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9248, 'wal_ET.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wal_ET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9249, 'wo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9250, 'wo_SN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/wo_SN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9251, 'xh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/xh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9252, 'xh_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/xh_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9253, 'xog.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/xog.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9254, 'yav.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yav.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9255, 'yi.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9256, 'yi_US.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yi_US.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9257, 'yo.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9258, 'yo_BJ.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yo_BJ.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9259, 'yo_NG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yo_NG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9260, 'yue.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9261, 'yue_HK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yue_HK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9262, 'yue_Hans.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hans.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9263, 'yue_Hant.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yue_Hant.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9264, 'yuw.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yuw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9265, 'yuw_PG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/yuw_PG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9266, 'zgh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zgh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9267, 'zh.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9268, 'zh_CN.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_CN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9269, 'zh_HK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_HK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9270, 'zh_Hans.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9271, 'zh_Hans_HK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_HK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9272, 'zh_Hans_MO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_MO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9273, 'zh_Hans_SG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hans_SG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9274, 'zh_Hant.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9275, 'zh_Hant_HK.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_HK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9276, 'zh_Hant_MO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_Hant_MO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9277, 'zh_MO.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_MO.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9278, 'zh_SG.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_SG.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9279, 'zh_TW.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_TW.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9280, 'zh_YUE.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zh_YUE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9281, 'zu.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9282, 'zu_ZA.php', '/vendor/nesbot/carbon/src/Carbon/Lang', '/vendor/nesbot/carbon/src/Carbon/Lang/zu_ZA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9283, 'Language.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Language.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9284, 'Laravel', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Laravel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9285, 'ServiceProvider.php', '/vendor/nesbot/carbon/src/Carbon/Laravel', '/vendor/nesbot/carbon/src/Carbon/Laravel/ServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9286, 'List', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/List', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9287, 'languages.php', '/vendor/nesbot/carbon/src/Carbon/List', '/vendor/nesbot/carbon/src/Carbon/List/languages.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9288, 'regions.php', '/vendor/nesbot/carbon/src/Carbon/List', '/vendor/nesbot/carbon/src/Carbon/List/regions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9289, 'Traits', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9290, 'Boundaries.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Boundaries.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9291, 'Comparison.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Comparison.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9292, 'Converter.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Converter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9293, 'Creator.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Creator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9294, 'Date.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Date.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9295, 'Difference.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Difference.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9296, 'Localization.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Localization.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9297, 'Macro.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Macro.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9298, 'Modifiers.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Modifiers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9299, 'Mutability.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Mutability.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9300, 'Options.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Options.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9301, 'Rounding.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Rounding.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9302, 'Serialization.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Serialization.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9303, 'Test.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9304, 'Timestamp.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Timestamp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9305, 'Units.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Units.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9306, 'Week.php', '/vendor/nesbot/carbon/src/Carbon/Traits', '/vendor/nesbot/carbon/src/Carbon/Traits/Week.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9307, 'Translator.php', '/vendor/nesbot/carbon/src/Carbon', '/vendor/nesbot/carbon/src/Carbon/Translator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9308, 'overtrue', '/vendor', '/vendor/overtrue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9309, 'socialite', '/vendor/overtrue', '/vendor/overtrue/socialite', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9310, '.gitignore', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9311, '.php_cs', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/.php_cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9312, '.travis.yml', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9313, 'LICENSE.txt', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9314, 'README.md', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9315, 'composer.json', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9316, 'phpunit.xml', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9317, 'src', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9318, 'AccessToken.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/AccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9319, 'AccessTokenInterface.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/AccessTokenInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9320, 'AuthorizeFailedException.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/AuthorizeFailedException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9321, 'Config.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9322, 'FactoryInterface.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/FactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9323, 'HasAttributes.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/HasAttributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9324, 'InvalidArgumentException.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9325, 'InvalidStateException.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/InvalidStateException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9326, 'ProviderInterface.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/ProviderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9327, 'Providers', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/Providers', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9328, 'AbstractProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/AbstractProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9329, 'DoubanProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/DoubanProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9330, 'FacebookProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/FacebookProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9331, 'GitHubProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/GitHubProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9332, 'GoogleProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/GoogleProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9333, 'LinkedinProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/LinkedinProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9334, 'QQProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/QQProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9335, 'WeChatOpenPlatformProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/WeChatOpenPlatformProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9336, 'WeChatProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/WeChatProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9337, 'WeWorkProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/WeWorkProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9338, 'WeiboProvider.php', '/vendor/overtrue/socialite/src/Providers', '/vendor/overtrue/socialite/src/Providers/WeiboProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9339, 'SocialiteManager.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/SocialiteManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9340, 'User.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/User.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9341, 'UserInterface.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/UserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9342, 'WeChatComponentInterface.php', '/vendor/overtrue/socialite/src', '/vendor/overtrue/socialite/src/WeChatComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9343, 'tests', '/vendor/overtrue/socialite', '/vendor/overtrue/socialite/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9344, 'OAuthTest.php', '/vendor/overtrue/socialite/tests', '/vendor/overtrue/socialite/tests/OAuthTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9345, 'Providers', '/vendor/overtrue/socialite/tests', '/vendor/overtrue/socialite/tests/Providers', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9346, 'WeWorkProviderTest.php', '/vendor/overtrue/socialite/tests/Providers', '/vendor/overtrue/socialite/tests/Providers/WeWorkProviderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9347, 'WechatProviderTest.php', '/vendor/overtrue/socialite/tests', '/vendor/overtrue/socialite/tests/WechatProviderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9348, 'wechat', '/vendor/overtrue', '/vendor/overtrue/wechat', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9349, '.phplint.yml', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/.phplint.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9350, '.styleci.yml', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/.styleci.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9351, 'BACKERS.md', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/BACKERS.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9352, 'LICENSE', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9353, 'README.md', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9354, 'composer.json', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9355, 'src', '/vendor/overtrue/wechat', '/vendor/overtrue/wechat/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9356, 'Broadcast', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Broadcast', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9357, 'Broadcast.php', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/Broadcast.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9358, 'LICENSE.txt', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9359, 'MessageBuilder.php', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/MessageBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9360, 'README.md', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9361, 'Transformer.php', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/Transformer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9362, 'composer.json', '/vendor/overtrue/wechat/src/Broadcast', '/vendor/overtrue/wechat/src/Broadcast/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9363, 'Card', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Card', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9364, 'Card.php', '/vendor/overtrue/wechat/src/Card', '/vendor/overtrue/wechat/src/Card/Card.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9365, 'LICENSE', '/vendor/overtrue/wechat/src/Card', '/vendor/overtrue/wechat/src/Card/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9366, 'README.md', '/vendor/overtrue/wechat/src/Card', '/vendor/overtrue/wechat/src/Card/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9367, 'composer.json', '/vendor/overtrue/wechat/src/Card', '/vendor/overtrue/wechat/src/Card/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9368, 'Comment', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Comment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9369, 'Comment.php', '/vendor/overtrue/wechat/src/Comment', '/vendor/overtrue/wechat/src/Comment/Comment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9370, 'Core', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Core', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9371, 'AbstractAPI.php', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/AbstractAPI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9372, 'AccessToken.php', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/AccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9373, 'Exception.php', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9374, 'Exceptions', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/Exceptions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9375, 'FaultException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/FaultException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9376, 'HttpException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/HttpException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9377, 'InvalidArgumentException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9378, 'InvalidConfigException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/InvalidConfigException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9379, 'RuntimeException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9380, 'UnboundServiceException.php', '/vendor/overtrue/wechat/src/Core/Exceptions', '/vendor/overtrue/wechat/src/Core/Exceptions/UnboundServiceException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9381, 'Http.php', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/Http.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9382, 'LICENSE', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9383, 'README.md', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9384, 'composer.json', '/vendor/overtrue/wechat/src/Core', '/vendor/overtrue/wechat/src/Core/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9385, 'Device', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Device', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9386, 'Device.php', '/vendor/overtrue/wechat/src/Device', '/vendor/overtrue/wechat/src/Device/Device.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9387, 'DeviceHttpException.php', '/vendor/overtrue/wechat/src/Device', '/vendor/overtrue/wechat/src/Device/DeviceHttpException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9388, 'LICENSE', '/vendor/overtrue/wechat/src/Device', '/vendor/overtrue/wechat/src/Device/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9389, 'README.md', '/vendor/overtrue/wechat/src/Device', '/vendor/overtrue/wechat/src/Device/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9390, 'composer.json', '/vendor/overtrue/wechat/src/Device', '/vendor/overtrue/wechat/src/Device/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9391, 'Encryption', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Encryption', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9392, 'EncryptionException.php', '/vendor/overtrue/wechat/src/Encryption', '/vendor/overtrue/wechat/src/Encryption/EncryptionException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9393, 'Encryptor.php', '/vendor/overtrue/wechat/src/Encryption', '/vendor/overtrue/wechat/src/Encryption/Encryptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9394, 'composer.json', '/vendor/overtrue/wechat/src/Encryption', '/vendor/overtrue/wechat/src/Encryption/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9395, 'Foundation', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Foundation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9396, 'Application.php', '/vendor/overtrue/wechat/src/Foundation', '/vendor/overtrue/wechat/src/Foundation/Application.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9397, 'Config.php', '/vendor/overtrue/wechat/src/Foundation', '/vendor/overtrue/wechat/src/Foundation/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9398, 'ServiceProviders', '/vendor/overtrue/wechat/src/Foundation', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9399, 'BroadcastServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/BroadcastServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9400, 'CardServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/CardServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9401, 'CommentServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/CommentServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9402, 'DeviceServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/DeviceServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9403, 'FundamentalServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/FundamentalServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9404, 'JsServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/JsServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9405, 'MaterialServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/MaterialServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9406, 'MenuServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/MenuServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9407, 'MiniProgramServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/MiniProgramServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9408, 'NoticeServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/NoticeServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9409, 'OAuthServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/OAuthServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9410, 'OpenPlatformServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/OpenPlatformServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9411, 'POIServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/POIServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9412, 'PaymentServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/PaymentServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9413, 'QRCodeServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/QRCodeServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9414, 'ReplyServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/ReplyServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9415, 'SemanticServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/SemanticServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9416, 'ServerServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/ServerServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9417, 'ShakeAroundServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/ShakeAroundServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9418, 'StaffServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/StaffServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9419, 'StatsServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/StatsServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9420, 'UrlServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/UrlServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9421, 'UserServiceProvider.php', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders', '/vendor/overtrue/wechat/src/Foundation/ServiceProviders/UserServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9422, 'Fundamental', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Fundamental', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9423, 'API.php', '/vendor/overtrue/wechat/src/Fundamental', '/vendor/overtrue/wechat/src/Fundamental/API.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9424, 'Js', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Js', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9425, 'Js.php', '/vendor/overtrue/wechat/src/Js', '/vendor/overtrue/wechat/src/Js/Js.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9426, 'LICENSE', '/vendor/overtrue/wechat/src/Js', '/vendor/overtrue/wechat/src/Js/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9427, 'README.md', '/vendor/overtrue/wechat/src/Js', '/vendor/overtrue/wechat/src/Js/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9428, 'composer.json', '/vendor/overtrue/wechat/src/Js', '/vendor/overtrue/wechat/src/Js/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9429, 'Material', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Material', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9430, 'LICENSE', '/vendor/overtrue/wechat/src/Material', '/vendor/overtrue/wechat/src/Material/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9431, 'Material.php', '/vendor/overtrue/wechat/src/Material', '/vendor/overtrue/wechat/src/Material/Material.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9432, 'README.md', '/vendor/overtrue/wechat/src/Material', '/vendor/overtrue/wechat/src/Material/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9433, 'Temporary.php', '/vendor/overtrue/wechat/src/Material', '/vendor/overtrue/wechat/src/Material/Temporary.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9434, 'composer.json', '/vendor/overtrue/wechat/src/Material', '/vendor/overtrue/wechat/src/Material/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9435, 'Menu', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Menu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9436, 'LICENSE', '/vendor/overtrue/wechat/src/Menu', '/vendor/overtrue/wechat/src/Menu/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9437, 'Menu.php', '/vendor/overtrue/wechat/src/Menu', '/vendor/overtrue/wechat/src/Menu/Menu.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9438, 'README.md', '/vendor/overtrue/wechat/src/Menu', '/vendor/overtrue/wechat/src/Menu/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9439, 'composer.json', '/vendor/overtrue/wechat/src/Menu', '/vendor/overtrue/wechat/src/Menu/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9440, 'Message', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9441, 'AbstractMessage.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/AbstractMessage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9442, 'Article.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Article.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9443, 'Card.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Card.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9444, 'DeviceEvent.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/DeviceEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9445, 'DeviceText.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/DeviceText.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9446, 'Image.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Image.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9447, 'Link.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Link.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9448, 'Location.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Location.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9449, 'Material.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Material.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9450, 'MiniProgramPage.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/MiniProgramPage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9451, 'Music.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Music.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9452, 'News.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/News.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9453, 'README.md', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9454, 'Raw.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Raw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9455, 'ShortVideo.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/ShortVideo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9456, 'Text.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Text.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9457, 'Transfer.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Transfer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9458, 'Video.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Video.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9459, 'Voice.php', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/Voice.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9460, 'composer.json', '/vendor/overtrue/wechat/src/Message', '/vendor/overtrue/wechat/src/Message/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9461, 'MiniProgram', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/MiniProgram', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9462, 'AccessToken.php', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/AccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9463, 'Core', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Core', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9464, 'AbstractMiniProgram.php', '/vendor/overtrue/wechat/src/MiniProgram/Core', '/vendor/overtrue/wechat/src/MiniProgram/Core/AbstractMiniProgram.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9465, 'Encryption', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Encryption', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9466, 'Encryptor.php', '/vendor/overtrue/wechat/src/MiniProgram/Encryption', '/vendor/overtrue/wechat/src/MiniProgram/Encryption/Encryptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9467, 'Material', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Material', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9468, 'Temporary.php', '/vendor/overtrue/wechat/src/MiniProgram/Material', '/vendor/overtrue/wechat/src/MiniProgram/Material/Temporary.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9469, 'MiniProgram.php', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/MiniProgram.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9470, 'Notice', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Notice', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9471, 'Notice.php', '/vendor/overtrue/wechat/src/MiniProgram/Notice', '/vendor/overtrue/wechat/src/MiniProgram/Notice/Notice.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9472, 'QRCode', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/QRCode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9473, 'QRCode.php', '/vendor/overtrue/wechat/src/MiniProgram/QRCode', '/vendor/overtrue/wechat/src/MiniProgram/QRCode/QRCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9474, 'Server', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Server', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9475, 'Guard.php', '/vendor/overtrue/wechat/src/MiniProgram/Server', '/vendor/overtrue/wechat/src/MiniProgram/Server/Guard.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9476, 'Sns', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Sns', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9477, 'Sns.php', '/vendor/overtrue/wechat/src/MiniProgram/Sns', '/vendor/overtrue/wechat/src/MiniProgram/Sns/Sns.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9478, 'Staff', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Staff', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9479, 'Staff.php', '/vendor/overtrue/wechat/src/MiniProgram/Staff', '/vendor/overtrue/wechat/src/MiniProgram/Staff/Staff.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9480, 'Stats', '/vendor/overtrue/wechat/src/MiniProgram', '/vendor/overtrue/wechat/src/MiniProgram/Stats', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9481, 'Stats.php', '/vendor/overtrue/wechat/src/MiniProgram/Stats', '/vendor/overtrue/wechat/src/MiniProgram/Stats/Stats.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9482, 'Notice', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Notice', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9483, 'LICENSE', '/vendor/overtrue/wechat/src/Notice', '/vendor/overtrue/wechat/src/Notice/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9484, 'Notice.php', '/vendor/overtrue/wechat/src/Notice', '/vendor/overtrue/wechat/src/Notice/Notice.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9485, 'README.md', '/vendor/overtrue/wechat/src/Notice', '/vendor/overtrue/wechat/src/Notice/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9486, 'composer.json', '/vendor/overtrue/wechat/src/Notice', '/vendor/overtrue/wechat/src/Notice/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9487, 'OpenPlatform', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/OpenPlatform', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9488, 'AccessToken.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/AccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9489, 'Api', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/Api', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9490, 'AbstractOpenPlatform.php', '/vendor/overtrue/wechat/src/OpenPlatform/Api', '/vendor/overtrue/wechat/src/OpenPlatform/Api/AbstractOpenPlatform.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9491, 'BaseApi.php', '/vendor/overtrue/wechat/src/OpenPlatform/Api', '/vendor/overtrue/wechat/src/OpenPlatform/Api/BaseApi.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9492, 'PreAuthorization.php', '/vendor/overtrue/wechat/src/OpenPlatform/Api', '/vendor/overtrue/wechat/src/OpenPlatform/Api/PreAuthorization.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9493, 'Authorizer.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/Authorizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9494, 'AuthorizerAccessToken.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/AuthorizerAccessToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9495, 'EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9496, 'Authorized.php', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers/Authorized.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9497, 'ComponentVerifyTicket.php', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers/ComponentVerifyTicket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9498, 'EventHandler.php', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers/EventHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9499, 'Unauthorized.php', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers/Unauthorized.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9500, 'UpdateAuthorized.php', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers', '/vendor/overtrue/wechat/src/OpenPlatform/EventHandlers/UpdateAuthorized.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9501, 'Guard.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/Guard.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9502, 'OpenPlatform.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/OpenPlatform.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9503, 'VerifyTicket.php', '/vendor/overtrue/wechat/src/OpenPlatform', '/vendor/overtrue/wechat/src/OpenPlatform/VerifyTicket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9504, 'POI', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/POI', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9505, 'LICENSE', '/vendor/overtrue/wechat/src/POI', '/vendor/overtrue/wechat/src/POI/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9506, 'POI.php', '/vendor/overtrue/wechat/src/POI', '/vendor/overtrue/wechat/src/POI/POI.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9507, 'README.md', '/vendor/overtrue/wechat/src/POI', '/vendor/overtrue/wechat/src/POI/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9508, 'composer.json', '/vendor/overtrue/wechat/src/POI', '/vendor/overtrue/wechat/src/POI/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9509, 'Payment', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Payment', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9510, 'API.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/API.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9511, 'CashCoupon', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/CashCoupon', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9512, 'API.php', '/vendor/overtrue/wechat/src/Payment/CashCoupon', '/vendor/overtrue/wechat/src/Payment/CashCoupon/API.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9513, 'CashCoupon.php', '/vendor/overtrue/wechat/src/Payment/CashCoupon', '/vendor/overtrue/wechat/src/Payment/CashCoupon/CashCoupon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9514, 'LICENSE', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9515, 'LuckyMoney', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/LuckyMoney', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9516, 'API.php', '/vendor/overtrue/wechat/src/Payment/LuckyMoney', '/vendor/overtrue/wechat/src/Payment/LuckyMoney/API.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9517, 'LuckyMoney.php', '/vendor/overtrue/wechat/src/Payment/LuckyMoney', '/vendor/overtrue/wechat/src/Payment/LuckyMoney/LuckyMoney.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9518, 'Merchant.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/Merchant.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9519, 'MerchantPay', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/MerchantPay', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9520, 'API.php', '/vendor/overtrue/wechat/src/Payment/MerchantPay', '/vendor/overtrue/wechat/src/Payment/MerchantPay/API.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9521, 'MerchantPay.php', '/vendor/overtrue/wechat/src/Payment/MerchantPay', '/vendor/overtrue/wechat/src/Payment/MerchantPay/MerchantPay.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9522, 'Notify.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/Notify.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9523, 'Order.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/Order.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9524, 'Payment.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/Payment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9525, 'README.md', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9526, 'RefundNotify.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/RefundNotify.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9527, 'composer.json', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9528, 'helpers.php', '/vendor/overtrue/wechat/src/Payment', '/vendor/overtrue/wechat/src/Payment/helpers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9529, 'QRCode', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/QRCode', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9530, 'LICENSE', '/vendor/overtrue/wechat/src/QRCode', '/vendor/overtrue/wechat/src/QRCode/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9531, 'QRCode.php', '/vendor/overtrue/wechat/src/QRCode', '/vendor/overtrue/wechat/src/QRCode/QRCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9532, 'README.md', '/vendor/overtrue/wechat/src/QRCode', '/vendor/overtrue/wechat/src/QRCode/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9533, 'composer.json', '/vendor/overtrue/wechat/src/QRCode', '/vendor/overtrue/wechat/src/QRCode/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9534, 'Reply', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Reply', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9535, 'LICENSE', '/vendor/overtrue/wechat/src/Reply', '/vendor/overtrue/wechat/src/Reply/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9536, 'README.md', '/vendor/overtrue/wechat/src/Reply', '/vendor/overtrue/wechat/src/Reply/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9537, 'Reply.php', '/vendor/overtrue/wechat/src/Reply', '/vendor/overtrue/wechat/src/Reply/Reply.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9538, 'composer.json', '/vendor/overtrue/wechat/src/Reply', '/vendor/overtrue/wechat/src/Reply/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9539, 'Semantic', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Semantic', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9540, 'LICENSE', '/vendor/overtrue/wechat/src/Semantic', '/vendor/overtrue/wechat/src/Semantic/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9541, 'README.md', '/vendor/overtrue/wechat/src/Semantic', '/vendor/overtrue/wechat/src/Semantic/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9542, 'Semantic.php', '/vendor/overtrue/wechat/src/Semantic', '/vendor/overtrue/wechat/src/Semantic/Semantic.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9543, 'composer.json', '/vendor/overtrue/wechat/src/Semantic', '/vendor/overtrue/wechat/src/Semantic/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9544, 'Server', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Server', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9545, 'BadRequestException.php', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/BadRequestException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9546, 'Guard.php', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/Guard.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9547, 'LICENSE', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9548, 'README.md', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9549, 'Transformer.php', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/Transformer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9550, 'composer.json', '/vendor/overtrue/wechat/src/Server', '/vendor/overtrue/wechat/src/Server/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9551, 'ShakeAround', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/ShakeAround', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9552, 'Device.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Device.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9553, 'Group.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Group.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9554, 'LICENSE', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9555, 'Material.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Material.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9556, 'Page.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Page.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9557, 'README.md', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9558, 'Relation.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Relation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9559, 'ShakeAround.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/ShakeAround.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9560, 'Stats.php', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/Stats.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9561, 'composer.json', '/vendor/overtrue/wechat/src/ShakeAround', '/vendor/overtrue/wechat/src/ShakeAround/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9562, 'Staff', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Staff', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9563, 'LICENSE', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9564, 'MessageBuilder.php', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/MessageBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9565, 'README.md', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9566, 'Session.php', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/Session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9567, 'Staff.php', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/Staff.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9568, 'Transformer.php', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/Transformer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9569, 'composer.json', '/vendor/overtrue/wechat/src/Staff', '/vendor/overtrue/wechat/src/Staff/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9570, 'Stats', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Stats', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9571, 'LICENSE', '/vendor/overtrue/wechat/src/Stats', '/vendor/overtrue/wechat/src/Stats/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9572, 'README.md', '/vendor/overtrue/wechat/src/Stats', '/vendor/overtrue/wechat/src/Stats/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9573, 'Stats.php', '/vendor/overtrue/wechat/src/Stats', '/vendor/overtrue/wechat/src/Stats/Stats.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9574, 'composer.json', '/vendor/overtrue/wechat/src/Stats', '/vendor/overtrue/wechat/src/Stats/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9575, 'Store', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Store', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9576, 'LICENSE', '/vendor/overtrue/wechat/src/Store', '/vendor/overtrue/wechat/src/Store/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9577, 'Model', '/vendor/overtrue/wechat/src/Store', '/vendor/overtrue/wechat/src/Store/Model', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9578, '.gitkeep', '/vendor/overtrue/wechat/src/Store/Model', '/vendor/overtrue/wechat/src/Store/Model/.gitkeep', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9579, 'README.md', '/vendor/overtrue/wechat/src/Store', '/vendor/overtrue/wechat/src/Store/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9580, 'Store.php', '/vendor/overtrue/wechat/src/Store', '/vendor/overtrue/wechat/src/Store/Store.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9581, 'composer.json', '/vendor/overtrue/wechat/src/Store', '/vendor/overtrue/wechat/src/Store/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9582, 'Support', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Support', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9583, 'Arr.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Arr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9584, 'Attribute.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Attribute.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9585, 'Collection.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Collection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9586, 'File.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9587, 'LICENSE', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9588, 'Log.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Log.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9589, 'README.md', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9590, 'Str.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Str.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9591, 'Traits', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9592, 'PrefixedContainer.php', '/vendor/overtrue/wechat/src/Support/Traits', '/vendor/overtrue/wechat/src/Support/Traits/PrefixedContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9593, 'Url.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9594, 'XML.php', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/XML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9595, 'composer.json', '/vendor/overtrue/wechat/src/Support', '/vendor/overtrue/wechat/src/Support/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9596, 'Url', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/Url', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9597, 'LICENSE', '/vendor/overtrue/wechat/src/Url', '/vendor/overtrue/wechat/src/Url/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9598, 'README.md', '/vendor/overtrue/wechat/src/Url', '/vendor/overtrue/wechat/src/Url/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9599, 'Url.php', '/vendor/overtrue/wechat/src/Url', '/vendor/overtrue/wechat/src/Url/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9600, 'composer.json', '/vendor/overtrue/wechat/src/Url', '/vendor/overtrue/wechat/src/Url/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9601, 'User', '/vendor/overtrue/wechat/src', '/vendor/overtrue/wechat/src/User', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9602, 'Group.php', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/Group.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9603, 'LICENSE', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9604, 'README.md', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9605, 'Tag.php', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/Tag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9606, 'User.php', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/User.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9607, 'composer.json', '/vendor/overtrue/wechat/src/User', '/vendor/overtrue/wechat/src/User/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9608, 'paragonie', '/vendor', '/vendor/paragonie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9609, 'random_compat', '/vendor/paragonie', '/vendor/paragonie/random_compat', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9610, 'LICENSE', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9611, 'build-phar.sh', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/build-phar.sh', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9612, 'composer.json', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9613, 'dist', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/dist', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9614, 'random_compat.phar.pubkey', '/vendor/paragonie/random_compat/dist', '/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9615, 'random_compat.phar.pubkey.asc', '/vendor/paragonie/random_compat/dist', '/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9616, 'lib', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9617, 'random.php', '/vendor/paragonie/random_compat/lib', '/vendor/paragonie/random_compat/lib/random.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9618, 'other', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/other', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9619, 'build_phar.php', '/vendor/paragonie/random_compat/other', '/vendor/paragonie/random_compat/other/build_phar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9620, 'psalm-autoload.php', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/psalm-autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9621, 'psalm.xml', '/vendor/paragonie/random_compat', '/vendor/paragonie/random_compat/psalm.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9622, 'phpoffice', '/vendor', '/vendor/phpoffice', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9623, 'phpexcel', '/vendor/phpoffice', '/vendor/phpoffice/phpexcel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9624, '.gitattributes', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/.gitattributes', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9625, '.gitignore', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9626, '.travis.yml', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9627, 'Classes', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/Classes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9628, 'PHPExcel', '/vendor/phpoffice/phpexcel/Classes', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9629, 'Autoloader.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Autoloader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9630, 'CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9631, 'APC.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/APC.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9632, 'CacheBase.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9633, 'DiscISAM.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/DiscISAM.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9634, 'ICache.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/ICache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9635, 'Igbinary.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Igbinary.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9636, 'Memcache.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memcache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9637, 'Memory.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Memory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9638, 'MemoryGZip.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemoryGZip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9639, 'MemorySerialized.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/MemorySerialized.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9640, 'PHPTemp.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/PHPTemp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9641, 'SQLite.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9642, 'SQLite3.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/SQLite3.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9643, 'Wincache.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorage/Wincache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9644, 'CachedObjectStorageFactory.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CachedObjectStorageFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9645, 'CalcEngine', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9646, 'CyclicReferenceStack.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/CyclicReferenceStack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9647, 'Logger.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/CalcEngine/Logger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9648, 'Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9649, 'Database.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9650, 'DateTime.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9651, 'Engineering.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9652, 'Exception.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9653, 'ExceptionHandler.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9654, 'Financial.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9655, 'FormulaParser.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9656, 'FormulaToken.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/FormulaToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9657, 'Function.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Function.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9658, 'Functions.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9659, 'Logical.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9660, 'LookupRef.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9661, 'MathTrig.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9662, 'Statistical.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9663, 'TextData.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9664, 'Token', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9665, 'Stack.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Token/Stack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9666, 'functionlist.txt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/functionlist.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9667, 'Calculation.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9668, 'Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9669, 'AdvancedValueBinder.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/AdvancedValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9670, 'DataType.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9671, 'DataValidation.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DataValidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9672, 'DefaultValueBinder.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/DefaultValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9673, 'Hyperlink.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/Hyperlink.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9674, 'IValueBinder.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell/IValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9675, 'Cell.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9676, 'Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9677, 'Axis.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9678, 'DataSeries.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeries.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9679, 'DataSeriesValues.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9680, 'Exception.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9681, 'GridLines.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9682, 'Layout.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Layout.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9683, 'Legend.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Legend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9684, 'PlotArea.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/PlotArea.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9685, 'Properties.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Properties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9686, 'Renderer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9687, 'PHP Charting Libraries.txt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9688, 'jpgraph.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Renderer/jpgraph.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9689, 'Title.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Title.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9690, 'Chart.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9691, 'Comment.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Comment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9692, 'DocumentProperties.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentProperties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9693, 'DocumentSecurity.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/DocumentSecurity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9694, 'Exception.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9695, 'HashTable.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/HashTable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9696, 'Helper', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9697, 'HTML.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Helper/HTML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9698, 'IComparable.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/IComparable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9699, 'IOFactory.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9700, 'NamedRange.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/NamedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9701, 'Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9702, 'Abstract.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Abstract.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9703, 'CSV.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/CSV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9704, 'DefaultReadFilter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/DefaultReadFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9705, 'Excel2003XML.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2003XML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9706, 'Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9707, 'Chart.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9708, 'Theme.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007/Theme.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9709, 'Excel2007.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel2007.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9710, 'Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9711, 'Color', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9712, 'BIFF5.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9713, 'BIFF8.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BIFF8.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9714, 'BuiltIn.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color/BuiltIn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9715, 'Color.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9716, 'ErrorCode.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/ErrorCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9717, 'Escher.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9718, 'MD5.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/MD5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9719, 'RC4.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/RC4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9720, 'Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9721, 'Border.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/Border.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9722, 'FillPattern.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5/Style/FillPattern.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9723, 'Excel5.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9724, 'Exception.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9725, 'Gnumeric.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Gnumeric.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9726, 'HTML.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/HTML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9727, 'IReadFilter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReadFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9728, 'IReader.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/IReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9729, 'OOCalc.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/OOCalc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9730, 'SYLK.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/SYLK.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9731, 'ReferenceHelper.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/ReferenceHelper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9732, 'RichText', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9733, 'ITextElement.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/ITextElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9734, 'Run.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9735, 'TextElement.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/TextElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9736, 'RichText.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9737, 'Settings.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Settings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9738, 'Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9739, 'CodePage.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/CodePage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9740, 'Date.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Date.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9741, 'Drawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9742, 'Escher', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9743, 'DgContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9744, 'SpgrContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9745, 'SpContainer.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9746, 'SpgrContainer.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer/SpgrContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9747, 'DgContainer.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DgContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9748, 'DggContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9749, 'BstoreContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9750, 'BSE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9751, 'Blip.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9752, 'BSE.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9753, 'BstoreContainer.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9754, 'DggContainer.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher/DggContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9755, 'Escher.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9756, 'Excel5.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Excel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9757, 'File.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9758, 'Font.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9759, 'JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9760, 'CHANGELOG.TXT', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CHANGELOG.TXT', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9761, 'CholeskyDecomposition.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9762, 'EigenvalueDecomposition.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9763, 'LUDecomposition.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/LUDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9764, 'Matrix.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9765, 'QRDecomposition.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/QRDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9766, 'SingularValueDecomposition.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9767, 'utils', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9768, 'Error.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Error.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9769, 'Maths.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/utils/Maths.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9770, 'OLE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9771, 'ChainedBlockStream.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/ChainedBlockStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9772, 'PPS', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9773, 'File.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9774, 'Root.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/Root.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9775, 'PPS.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9776, 'OLE.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9777, 'OLERead.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLERead.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9778, 'PCLZip', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9779, 'gnu-lgpl.txt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/gnu-lgpl.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9780, 'pclzip.lib.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/pclzip.lib.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9781, 'readme.txt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PCLZip/readme.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9782, 'PasswordHasher.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/PasswordHasher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9783, 'String.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/String.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9784, 'TimeZone.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/TimeZone.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9785, 'XMLWriter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/XMLWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9786, 'ZipArchive.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipArchive.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9787, 'ZipStreamWrapper.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/ZipStreamWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9788, 'trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9789, 'bestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/bestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9790, 'exponentialBestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/exponentialBestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9791, 'linearBestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/linearBestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9792, 'logarithmicBestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/logarithmicBestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9793, 'polynomialBestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/polynomialBestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9794, 'powerBestFitClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/powerBestFitClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9795, 'trendClass.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/trend/trendClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9796, 'Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9797, 'Alignment.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Alignment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9798, 'Border.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Border.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9799, 'Borders.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Borders.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9800, 'Color.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9801, 'Conditional.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Conditional.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9802, 'Fill.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Fill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9803, 'Font.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9804, 'NumberFormat.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/NumberFormat.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9805, 'Protection.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Protection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9806, 'Supervisor.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Supervisor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9807, 'Style.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Style.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9808, 'Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9809, 'AutoFilter', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9810, 'Column', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9811, 'Rule.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column/Rule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9812, 'Column.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9813, 'AutoFilter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9814, 'BaseDrawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/BaseDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9815, 'CellIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/CellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9816, 'Column.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9817, 'ColumnCellIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnCellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9818, 'ColumnDimension.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnDimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9819, 'ColumnIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/ColumnIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9820, 'Dimension.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Dimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9821, 'Drawing', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9822, 'Shadow.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing/Shadow.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9823, 'Drawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9824, 'HeaderFooter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9825, 'HeaderFooterDrawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/HeaderFooterDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9826, 'MemoryDrawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/MemoryDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9827, 'PageMargins.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageMargins.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9828, 'PageSetup.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/PageSetup.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9829, 'Protection.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Protection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9830, 'Row.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/Row.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9831, 'RowCellIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowCellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9832, 'RowDimension.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9833, 'RowIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9834, 'SheetView.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/SheetView.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9835, 'Worksheet.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9836, 'WorksheetIterator.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/WorksheetIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9837, 'Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9838, 'Abstract.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Abstract.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9839, 'CSV.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/CSV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9840, 'Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9841, 'Chart.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9842, 'Comments.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Comments.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9843, 'ContentTypes.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/ContentTypes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9844, 'DocProps.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/DocProps.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9845, 'Drawing.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9846, 'Rels.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Rels.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9847, 'RelsRibbon.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsRibbon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9848, 'RelsVBA.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/RelsVBA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9849, 'StringTable.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/StringTable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9850, 'Style.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Style.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9851, 'Theme.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Theme.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9852, 'Workbook.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Workbook.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9853, 'Worksheet.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9854, 'WriterPart.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007/WriterPart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9855, 'Excel2007.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel2007.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9856, 'Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9857, 'BIFFwriter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9858, 'Escher.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9859, 'Font.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9860, 'Parser.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Parser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9861, 'Workbook.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9862, 'Worksheet.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9863, 'Xf.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Xf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9864, 'Excel5.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9865, 'Exception.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9866, 'HTML.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/HTML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9867, 'IWriter.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/IWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9868, 'OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9869, 'Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9870, 'Comment.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Cell/Comment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9871, 'Content.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Content.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9872, 'Meta.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Meta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9873, 'MetaInf.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/MetaInf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9874, 'Mimetype.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Mimetype.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9875, 'Settings.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Settings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9876, 'Styles.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Styles.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9877, 'Thumbnails.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/Thumbnails.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9878, 'WriterPart.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument/WriterPart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9879, 'OpenDocument.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/OpenDocument.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9880, 'PDF', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9881, 'Core.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/Core.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9882, 'DomPDF.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/DomPDF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9883, 'mPDF.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/mPDF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9884, 'tcPDF.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF/tcPDF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9885, 'PDF.php', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9886, 'locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9887, 'bg', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9888, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/bg/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9889, 'cs', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9890, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9891, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/cs/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9892, 'da', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9893, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9894, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/da/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9895, 'de', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9896, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9897, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/de/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9898, 'en', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9899, 'uk', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9900, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/en/uk/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9901, 'es', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9902, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9903, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/es/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9904, 'fi', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9905, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9906, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fi/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9907, 'fr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9908, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9909, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/fr/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9910, 'hu', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9911, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9912, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/hu/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9913, 'it', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9914, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9915, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/it/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9916, 'nl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9917, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9918, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/nl/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9919, 'no', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9920, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9921, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/no/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9922, 'pl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9923, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9924, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pl/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9925, 'pt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9926, 'br', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9927, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9928, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/br/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9929, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9930, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/pt/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9931, 'ru', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9932, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9933, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/ru/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9934, 'sv', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9935, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9936, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/sv/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9937, 'tr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9938, 'config', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9939, 'functions', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr', '/vendor/phpoffice/phpexcel/Classes/PHPExcel/locale/tr/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9940, 'PHPExcel.php', '/vendor/phpoffice/phpexcel/Classes', '/vendor/phpoffice/phpexcel/Classes/PHPExcel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9941, 'Documentation', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/Documentation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9942, 'Examples', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/Examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9943, 'Calculations', '/vendor/phpoffice/phpexcel/Documentation/Examples', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9944, 'Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9945, 'DAVERAGE.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DAVERAGE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9946, 'DCOUNT.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DCOUNT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9947, 'DGET.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DGET.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9948, 'DMAX.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMAX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9949, 'DMIN.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DMIN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9950, 'DPRODUCT.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DPRODUCT.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9951, 'DSTDEV.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEV.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9952, 'DSTDEVP.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DSTDEVP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9953, 'DVAR.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVAR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9954, 'DVARP.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/Database/DVARP.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9955, 'DateTime', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9956, 'DATE.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9957, 'DATEVALUE.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/DATEVALUE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9958, 'TIME.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIME.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9959, 'TIMEVALUE.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/DateTime/TIMEVALUE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9960, 'index.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations', '/vendor/phpoffice/phpexcel/Documentation/Examples/Calculations/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9961, 'Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9962, 'exampleReader01.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader01.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9963, 'exampleReader02.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader02.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9964, 'exampleReader03.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader03.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9965, 'exampleReader04.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader04.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9966, 'exampleReader05.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader05.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9967, 'exampleReader06.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader06.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9968, 'exampleReader07.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader07.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9969, 'exampleReader08.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader08.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9970, 'exampleReader09.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader09.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9971, 'exampleReader10.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader10.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9972, 'exampleReader11.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader11.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9973, 'exampleReader12.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader12.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9974, 'exampleReader13.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader13.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9975, 'exampleReader14.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader14.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9976, 'exampleReader15.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader15.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9977, 'exampleReader16.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader16.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9978, 'exampleReader17.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader17.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9979, 'exampleReader18.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader18.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9980, 'exampleReader19.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/exampleReader19.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9981, 'sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9982, 'example1.csv', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.csv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9983, 'example1.tsv', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.tsv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9984, 'example1.xls', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example1.xls', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9985, 'example2.csv', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.csv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9986, 'example2.xls', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reader/sampleData/example2.xls', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9987, 'Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9988, 'exampleWorkBookReader01.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader01.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9989, 'exampleWorkBookReader02.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader02.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9990, 'exampleWorkBookReader03.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader03.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9991, 'exampleWorkBookReader04.php', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/exampleWorkBookReader04.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9992, 'sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9993, 'example1.xls', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xls', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9994, 'example1.xlsx', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example1.xlsx', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9995, 'example2.xls', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData', '/vendor/phpoffice/phpexcel/Documentation/Examples/Reading WorkBook Data/sampleData/example2.xls', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9996, 'index.php', '/vendor/phpoffice/phpexcel/Documentation/Examples', '/vendor/phpoffice/phpexcel/Documentation/Examples/index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9997, 'FunctionListByCategory.txt', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/FunctionListByCategory.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9998, 'FunctionListByName.txt', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/FunctionListByName.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(9999, 'Functionality Cross-Reference.xls', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/Functionality Cross-Reference.xls', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10000, 'PHPExcel AutoFilter Reference developer documentation.doc', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/PHPExcel AutoFilter Reference developer documentation.doc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10001, 'PHPExcel Function Reference developer documentation.doc', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/PHPExcel Function Reference developer documentation.doc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10002, 'PHPExcel User Documentation - Reading Spreadsheet Files.doc', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/PHPExcel User Documentation - Reading Spreadsheet Files.doc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10003, 'PHPExcel developer documentation.doc', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/PHPExcel developer documentation.doc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10004, 'assets', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/assets', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10005, 'ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10006, 'Architecture.cd', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.cd', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10007, 'Architecture.png', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Architecture.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10008, 'ClassDiagrams.csproj', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10009, 'ClassDiagrams.csproj.user', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.csproj.user', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10010, 'ClassDiagrams.sln', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ClassDiagrams.sln', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10011, 'Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10012, 'IReader.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IReader.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10013, 'IWriter.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/IWriter.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10014, 'PHPExcel.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10015, 'PHPExcel_IOFactory.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_IOFactory.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10016, 'PHPExcel_Reader_Excel2007.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel2007.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10017, 'PHPExcel_Reader_Excel5.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Excel5.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10018, 'PHPExcel_Reader_Serialized.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Reader_Serialized.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10019, 'PHPExcel_Writer_Excel2007.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Excel2007.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10020, 'PHPExcel_Writer_Serialized.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/PHPExcel_Writer_Serialized.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10021, 'Worksheet.cs', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Classes/Worksheet.cs', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10022, 'Exports', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10023, 'Architecture.png', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/Architecture.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10024, 'ReaderWriter.png', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/Exports/ReaderWriter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10025, 'ReaderWriter.cd', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.cd', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10026, 'ReaderWriter.png', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams', '/vendor/phpoffice/phpexcel/Documentation/assets/ClassDiagrams/ReaderWriter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10027, 'markdown', '/vendor/phpoffice/phpexcel/Documentation', '/vendor/phpoffice/phpexcel/Documentation/markdown', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10028, 'CalculationEngine', '/vendor/phpoffice/phpexcel/Documentation/markdown', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10029, 'FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10030, '01-Introduction.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/01-Introduction.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10031, '02-01-Date-and-Time-Handling.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-01-Date-and-Time-Handling.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10032, '02-General-Introduction.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/02-General-Introduction.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10033, '03-01-Cube-Functions.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-01-Cube-Functions.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10034, '03-02-Database-Functions.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-02-Database-Functions.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10035, '03-03-Date-and-Time-Functions.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference', '/vendor/phpoffice/phpexcel/Documentation/markdown/CalculationEngine/FunctionReference/03-03-Date-and-Time-Functions.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10036, 'Features', '/vendor/phpoffice/phpexcel/Documentation/markdown', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10037, 'Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10038, '01-Autofilters.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/01-Autofilters.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10039, '02-Setting-an-Autofilter.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/02-Setting-an-Autofilter.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10040, '03-Autofilter-Expressions.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/03-Autofilter-Expressions.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10041, '04-01-Autofilter-Expressions-Simple.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-01-Autofilter-Expressions-Simple.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10042, '04-02-Autofilter-Expressions-Dategroup.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-02-Autofilter-Expressions-Dategroup.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10043, '04-03-Autofilter-Expressions-Custom.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-03-Autofilter-Expressions-Custom.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10044, '04-04-Autofilter-Expressions-Dynamic.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-04-Autofilter-Expressions-Dynamic.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10045, '04-05-Autofilter-Expressions-Topten.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/04-05-Autofilter-Expressions-Topten.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10046, '05-Executing-Autofilters.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/05-Executing-Autofilters.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10047, '06-Autofilter-Sorting.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/06-Autofilter-Sorting.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10048, 'images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10049, '01-01-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-01-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10050, '01-02-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-02-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10051, '01-03-filter-icon-1.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10052, '01-03-filter-icon-2.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-03-filter-icon-2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10053, '01-04-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/01-04-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10054, '04-01-simple-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-01-simple-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10055, '04-02-dategroup-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-02-dategroup-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10056, '04-03-custom-autofilter-1.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10057, '04-03-custom-autofilter-2.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-03-custom-autofilter-2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10058, '04-04-dynamic-autofilter.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-04-dynamic-autofilter.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10059, '04-05-topten-autofilter-1.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10060, '04-05-topten-autofilter-2.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Features/Autofilters/images/04-05-topten-autofilter-2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10061, 'Functions', '/vendor/phpoffice/phpexcel/Documentation/markdown', '/vendor/phpoffice/phpexcel/Documentation/markdown/Functions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10062, 'FunctionListByCategory.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Functions', '/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByCategory.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10063, 'FunctionListByName.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Functions', '/vendor/phpoffice/phpexcel/Documentation/markdown/Functions/FunctionListByName.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10064, 'Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10065, '01-Getting-Started.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/01-Getting-Started.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10066, '02-Architecture.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/02-Architecture.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10067, '03-Creating-a-Spreadsheet.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/03-Creating-a-Spreadsheet.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10068, '04-Configuration-Settings.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/04-Configuration-Settings.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10069, '05-Deleting-a-Workbook.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/05-Deleting-a-Workbook.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10070, '06-Worksheets.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/06-Worksheets.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10071, '07-Accessing-Cells.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/07-Accessing-Cells.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10072, '08-Recipes.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/08-Recipes.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10073, '09-Calculation-Engine.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/09-Calculation-Engine.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10074, '10-Reading-and-Writing.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/10-Reading-and-Writing.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10075, '11-Appendices.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/11-Appendices.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10076, 'images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10077, '01-schematic.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/01-schematic.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10078, '02-readers-writers.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/02-readers-writers.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10079, '07-simple-example-1.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10080, '07-simple-example-2.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10081, '07-simple-example-3.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-3.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10082, '07-simple-example-4.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/07-simple-example-4.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10083, '08-cell-comment.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-cell-comment.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10084, '08-column-width.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-column-width.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10085, '08-page-setup-margins.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-margins.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10086, '08-page-setup-scaling-options.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-page-setup-scaling-options.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10087, '08-styling-border-options.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/08-styling-border-options.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10088, '09-command-line-calculation.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-command-line-calculation.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10089, '09-formula-in-cell-1.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-1.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10090, '09-formula-in-cell-2.png', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images', '/vendor/phpoffice/phpexcel/Documentation/markdown/Overview/images/09-formula-in-cell-2.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10091, 'ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10092, '01-File-Formats.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/01-File-Formats.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10093, '02-Security.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/02-Security.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10094, '03-Loading-a-Spreadsheet.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/03-Loading-a-Spreadsheet.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10095, '04-Loading-with-a-Reader.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/04-Loading-with-a-Reader.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10096, '05-Reader-Options.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/05-Reader-Options.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10097, '06-Error-Handling.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/06-Error-Handling.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10098, '07-Helper-Methods.md', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles', '/vendor/phpoffice/phpexcel/Documentation/markdown/ReadingSpreadsheetFiles/07-Helper-Methods.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10099, 'Examples', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/Examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10100, '.gitignore', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10101, '01pharSimple.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01pharSimple.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10102, '01simple-download-ods.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simple-download-ods.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10103, '01simple-download-pdf.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simple-download-pdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10104, '01simple-download-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simple-download-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10105, '01simple-download-xlsx.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simple-download-xlsx.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10106, '01simple.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simple.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10107, '01simplePCLZip.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/01simplePCLZip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10108, '02types-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/02types-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10109, '02types.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/02types.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10110, '03formulas.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/03formulas.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10111, '04printing.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/04printing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10112, '05featuredemo.inc.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/05featuredemo.inc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10113, '05featuredemo.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/05featuredemo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10114, '06largescale-with-cellcaching-sqlite.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10115, '06largescale-with-cellcaching-sqlite3.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching-sqlite3.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10116, '06largescale-with-cellcaching.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/06largescale-with-cellcaching.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10117, '06largescale-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/06largescale-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10118, '06largescale.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/06largescale.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10119, '07reader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/07reader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10120, '07readerPCLZip.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/07readerPCLZip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10121, '08conditionalformatting.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/08conditionalformatting.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10122, '08conditionalformatting2.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/08conditionalformatting2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10123, '09pagebreaks.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/09pagebreaks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10124, '10autofilter-selection-1.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-1.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10125, '10autofilter-selection-2.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10126, '10autofilter-selection-display.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/10autofilter-selection-display.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10127, '10autofilter.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/10autofilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10128, '11documentsecurity-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/11documentsecurity-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10129, '11documentsecurity.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/11documentsecurity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10130, '12cellProtection.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/12cellProtection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10131, '13calculation.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/13calculation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10132, '13calculationCyclicFormulae.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/13calculationCyclicFormulae.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10133, '14excel5.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/14excel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10134, '15datavalidation-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/15datavalidation-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10135, '15datavalidation.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/15datavalidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10136, '16csv.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/16csv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10137, '17html.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/17html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10138, '18extendedcalculation.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/18extendedcalculation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10139, '19namedrange.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/19namedrange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10140, '20readexcel5.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/20readexcel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10141, '21pdf.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/21pdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10142, '22heavilyformatted.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/22heavilyformatted.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10143, '23sharedstyles.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/23sharedstyles.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10144, '24readfilter.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/24readfilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10145, '25inmemoryimage.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/25inmemoryimage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10146, '26utf8.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/26utf8.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10147, '27imagesexcel5.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/27imagesexcel5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10148, '28iterator.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/28iterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10149, '29advancedvaluebinder.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/29advancedvaluebinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10150, '30template.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/30template.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10151, '31docproperties_write-xls.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/31docproperties_write-xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10152, '31docproperties_write.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/31docproperties_write.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10153, '32chartreadwrite.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/32chartreadwrite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10154, '33chartcreate-area.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-area.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10155, '33chartcreate-bar-stacked.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar-stacked.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10156, '33chartcreate-bar.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-bar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10157, '33chartcreate-column-2.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-column-2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10158, '33chartcreate-column.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10159, '33chartcreate-composite.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-composite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10160, '33chartcreate-line.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-line.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10161, '33chartcreate-multiple-charts.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-multiple-charts.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10162, '33chartcreate-pie.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-pie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10163, '33chartcreate-radar.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-radar.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10164, '33chartcreate-scatter.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-scatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10165, '33chartcreate-stock.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/33chartcreate-stock.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10166, '34chartupdate.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/34chartupdate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10167, '35chartrender.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/35chartrender.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10168, '36chartreadwriteHTML.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/36chartreadwriteHTML.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10169, '36chartreadwritePDF.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/36chartreadwritePDF.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10170, '37page_layout_view.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/37page_layout_view.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10171, '38cloneWorksheet.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/38cloneWorksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10172, '39dropdown.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/39dropdown.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10173, '40duplicateStyle.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/40duplicateStyle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10174, '41password.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/41password.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10175, '42richText.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/42richText.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10176, '43mergeWorkbooks.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/43mergeWorkbooks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10177, '44worksheetInfo.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/44worksheetInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10178, 'Excel2003XMLReader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/Excel2003XMLReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10179, 'Excel2003XMLTest.xml', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/Excel2003XMLTest.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10180, 'GnumericReader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/GnumericReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10181, 'GnumericTest.gnumeric', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/GnumericTest.gnumeric', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10182, 'OOCalcReader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/OOCalcReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10183, 'OOCalcReaderPCLZip.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/OOCalcReaderPCLZip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10184, 'OOCalcTest.ods', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/OOCalcTest.ods', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10185, 'Quadratic.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/Quadratic.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10186, 'Quadratic2.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/Quadratic2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10187, 'SylkReader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/SylkReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10188, 'SylkTest.slk', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/SylkTest.slk', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10189, 'XMLReader.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/XMLReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10190, 'XMLTest.xml', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/XMLTest.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10191, 'data', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/data', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10192, 'continents', '/vendor/phpoffice/phpexcel/Examples/data', '/vendor/phpoffice/phpexcel/Examples/data/continents', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10193, 'Africa.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/Africa.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10194, 'Asia.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/Asia.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10195, 'Europe.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/Europe.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10196, 'North America.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/North America.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10197, 'Oceania.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/Oceania.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10198, 'South America.txt', '/vendor/phpoffice/phpexcel/Examples/data/continents', '/vendor/phpoffice/phpexcel/Examples/data/continents/South America.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10199, 'images', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10200, 'paid.png', '/vendor/phpoffice/phpexcel/Examples/images', '/vendor/phpoffice/phpexcel/Examples/images/paid.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10201, 'phpexcel_logo.gif', '/vendor/phpoffice/phpexcel/Examples/images', '/vendor/phpoffice/phpexcel/Examples/images/phpexcel_logo.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10202, 'runall.php', '/vendor/phpoffice/phpexcel/Examples', '/vendor/phpoffice/phpexcel/Examples/runall.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10203, 'changelog.txt', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/changelog.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10204, 'composer.json', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10205, 'install.txt', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/install.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10206, 'license.md', '/vendor/phpoffice/phpexcel', '/vendor/phpoffice/phpexcel/license.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10207, 'phpspreadsheet', '/vendor/phpoffice', '/vendor/phpoffice/phpspreadsheet', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10208, 'CHANGELOG.md', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10209, 'CONTRIBUTING.md', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10210, 'LICENSE', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10211, 'README.md', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10212, 'composer.json', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10213, 'src', '/vendor/phpoffice/phpspreadsheet', '/vendor/phpoffice/phpspreadsheet/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10214, 'PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10215, 'Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10216, 'Calculation.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Calculation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10217, 'Category.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Category.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10218, 'Database.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Database.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10219, 'DateTime.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/DateTime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10220, 'Engine', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10221, 'CyclicReferenceStack.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/CyclicReferenceStack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10222, 'Logger.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engine/Logger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10223, 'Engineering.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Engineering.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10224, 'Exception.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10225, 'ExceptionHandler.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/ExceptionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10226, 'Financial.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Financial.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10227, 'FormulaParser.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10228, 'FormulaToken.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/FormulaToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10229, 'Functions.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10230, 'Logical.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Logical.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10231, 'LookupRef.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/LookupRef.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10232, 'MathTrig.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/MathTrig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10233, 'Statistical.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Statistical.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10234, 'TextData.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/TextData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10235, 'Token', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10236, 'Stack.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Token/Stack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10237, 'Web.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/Web.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10238, 'functionlist.txt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/functionlist.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10239, 'locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10240, 'bg', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10241, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10242, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/bg/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10243, 'cs', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10244, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10245, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/cs/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10246, 'da', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10247, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10248, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/da/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10249, 'de', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10250, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10251, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/de/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10252, 'en', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10253, 'uk', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10254, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/en/uk/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10255, 'es', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10256, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10257, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/es/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10258, 'fi', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10259, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10260, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fi/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10261, 'fr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10262, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10263, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/fr/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10264, 'hu', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10265, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10266, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/hu/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10267, 'it', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10268, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10269, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/it/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10270, 'nl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10271, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10272, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/nl/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10273, 'no', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/no', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10274, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/no', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/no/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10275, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/no', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/no/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10276, 'pl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10277, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10278, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pl/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10279, 'pt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10280, 'br', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10281, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10282, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/br/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10283, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10284, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/pt/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10285, 'ru', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10286, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10287, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/ru/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10288, 'sv', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10289, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10290, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/sv/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10291, 'tr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10292, 'config', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/config', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10293, 'functions', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Calculation/locale/tr/functions', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10294, 'Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10295, 'AddressHelper.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AddressHelper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10296, 'AdvancedValueBinder.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/AdvancedValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10297, 'Cell.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Cell.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10298, 'Coordinate.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Coordinate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10299, 'DataType.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10300, 'DataValidation.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10301, 'DataValidator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DataValidator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10302, 'DefaultValueBinder.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/DefaultValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10303, 'Hyperlink.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/Hyperlink.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10304, 'IValueBinder.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/IValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10305, 'StringValueBinder.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Cell/StringValueBinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10306, 'Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10307, 'Axis.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Axis.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10308, 'Chart.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10309, 'DataSeries.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeries.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10310, 'DataSeriesValues.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/DataSeriesValues.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10311, 'Exception.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10312, 'GridLines.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/GridLines.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10313, 'Layout.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Layout.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10314, 'Legend.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Legend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10315, 'PlotArea.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/PlotArea.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10316, 'Properties.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Properties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10317, 'Renderer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10318, 'IRenderer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/IRenderer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10319, 'JpGraph.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/JpGraph.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10320, 'PHP Charting Libraries.txt', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/PHP Charting Libraries.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10321, 'Polyfill.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Renderer/Polyfill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10322, 'Title.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Chart/Title.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10323, 'Collection', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10324, 'Cells.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Cells.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10325, 'CellsFactory.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/CellsFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10326, 'Memory.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Collection/Memory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10327, 'Comment.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Comment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10328, 'Document', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10329, 'Properties.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Properties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10330, 'Security.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Document/Security.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10331, 'DocumentGenerator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/DocumentGenerator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10332, 'Exception.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10333, 'HashTable.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/HashTable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10334, 'Helper', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10335, 'Html.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10336, 'Sample.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Helper/Sample.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10337, 'IComparable.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IComparable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10338, 'IOFactory.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/IOFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10339, 'NamedRange.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/NamedRange.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10340, 'Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10341, 'BaseReader.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/BaseReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10342, 'Csv.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Csv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10343, 'DefaultReadFilter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/DefaultReadFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10344, 'Exception.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10345, 'Gnumeric.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Gnumeric.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10346, 'Html.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10347, 'IReadFilter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReadFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10348, 'IReader.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/IReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10349, 'Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10350, 'Properties.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods/Properties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10351, 'Ods.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Ods.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10352, 'Security', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10353, 'XmlScanner.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Security/XmlScanner.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10354, 'Slk.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Slk.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10355, 'Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10356, 'Color', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10357, 'BIFF5.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10358, 'BIFF8.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BIFF8.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10359, 'BuiltIn.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color/BuiltIn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10360, 'Color.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10361, 'ErrorCode.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/ErrorCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10362, 'Escher.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10363, 'MD5.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/MD5.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10364, 'RC4.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/RC4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10365, 'Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10366, 'Border.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/Border.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10367, 'FillPattern.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls/Style/FillPattern.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10368, 'Xls.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10369, 'Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10370, 'AutoFilter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/AutoFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10371, 'BaseParserClass.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/BaseParserClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10372, 'Chart.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10373, 'ColumnAndRowAttributes.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ColumnAndRowAttributes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10374, 'ConditionalStyles.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/ConditionalStyles.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10375, 'DataValidations.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/DataValidations.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10376, 'Hyperlinks.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Hyperlinks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10377, 'PageSetup.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/PageSetup.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10378, 'Properties.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Properties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10379, 'SheetViewOptions.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViewOptions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10380, 'SheetViews.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/SheetViews.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10381, 'Styles.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Styles.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10382, 'Theme.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx/Theme.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10383, 'Xlsx.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xlsx.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10384, 'Xml.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Reader/Xml.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10385, 'ReferenceHelper.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/ReferenceHelper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10386, 'RichText', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10387, 'ITextElement.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10388, 'RichText.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/RichText.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10389, 'Run.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/Run.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10390, 'TextElement.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/TextElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10391, 'Settings.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Settings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10392, 'Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10393, 'CodePage.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/CodePage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10394, 'Date.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Date.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10395, 'Drawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10396, 'Escher', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10397, 'DgContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10398, 'SpgrContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10399, 'SpContainer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer/SpContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10400, 'SpgrContainer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer/SpgrContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10401, 'DgContainer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DgContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10402, 'DggContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10403, 'BstoreContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10404, 'BSE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10405, 'Blip.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10406, 'BSE.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer/BSE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10407, 'BstoreContainer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer/BstoreContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10408, 'DggContainer.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher/DggContainer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10409, 'Escher.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10410, 'File.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10411, 'Font.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10412, 'JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10413, 'CHANGELOG.TXT', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CHANGELOG.TXT', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10414, 'CholeskyDecomposition.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/CholeskyDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10415, 'EigenvalueDecomposition.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10416, 'LUDecomposition.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/LUDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10417, 'Matrix.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/Matrix.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10418, 'QRDecomposition.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/QRDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10419, 'SingularValueDecomposition.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/SingularValueDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10420, 'utils', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10421, 'Maths.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/JAMA/utils/Maths.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10422, 'OLE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10423, 'ChainedBlockStream.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/ChainedBlockStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10424, 'PPS', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10425, 'File.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10426, 'Root.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS/Root.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10427, 'PPS.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE/PPS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10428, 'OLE.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLE.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10429, 'OLERead.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/OLERead.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10430, 'PasswordHasher.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/PasswordHasher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10431, 'StringHelper.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/StringHelper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10432, 'TimeZone.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/TimeZone.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10433, 'Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10434, 'BestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/BestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10435, 'ExponentialBestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/ExponentialBestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10436, 'LinearBestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LinearBestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10437, 'LogarithmicBestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/LogarithmicBestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10438, 'PolynomialBestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PolynomialBestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10439, 'PowerBestFit.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/PowerBestFit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10440, 'Trend.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Trend/Trend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10441, 'XMLWriter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/XMLWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10442, 'Xls.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Shared/Xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10443, 'Spreadsheet.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Spreadsheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10444, 'Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10445, 'Alignment.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Alignment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10446, 'Border.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Border.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10447, 'Borders.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Borders.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10448, 'Color.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Color.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10449, 'Conditional.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Conditional.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10450, 'Fill.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Fill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10451, 'Font.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10452, 'NumberFormat.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/NumberFormat.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10453, 'Protection.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Protection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10454, 'Style.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Style.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10455, 'Supervisor.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Style/Supervisor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10456, 'Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10457, 'AutoFilter', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10458, 'Column', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10459, 'Rule.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column/Rule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10460, 'Column.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10461, 'AutoFilter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/AutoFilter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10462, 'BaseDrawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/BaseDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10463, 'CellIterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/CellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10464, 'Column.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10465, 'ColumnCellIterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnCellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10466, 'ColumnDimension.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnDimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10467, 'ColumnIterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/ColumnIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10468, 'Dimension.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Dimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10469, 'Drawing', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10470, 'Shadow.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing/Shadow.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10471, 'Drawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10472, 'HeaderFooter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10473, 'HeaderFooterDrawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/HeaderFooterDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10474, 'Iterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Iterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10475, 'MemoryDrawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/MemoryDrawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10476, 'PageMargins.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageMargins.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10477, 'PageSetup.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/PageSetup.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10478, 'Protection.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Protection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10479, 'Row.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Row.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10480, 'RowCellIterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowCellIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10481, 'RowDimension.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowDimension.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10482, 'RowIterator.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/RowIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10483, 'SheetView.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/SheetView.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10484, 'Worksheet.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10485, 'Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10486, 'BaseWriter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/BaseWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10487, 'Csv.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Csv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10488, 'Exception.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10489, 'Html.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10490, 'IWriter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/IWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10491, 'Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10492, 'Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10493, 'Comment.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Cell/Comment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10494, 'Content.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Content.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10495, 'Meta.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Meta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10496, 'MetaInf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/MetaInf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10497, 'Mimetype.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Mimetype.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10498, 'Settings.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Settings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10499, 'Styles.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Styles.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10500, 'Thumbnails.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/Thumbnails.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10501, 'WriterPart.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods/WriterPart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10502, 'Ods.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Ods.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10503, 'Pdf', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10504, 'Dompdf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Dompdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10505, 'Mpdf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Mpdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10506, 'Tcpdf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf/Tcpdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10507, 'Pdf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Pdf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10508, 'Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10509, 'BIFFwriter.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/BIFFwriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10510, 'Escher.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Escher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10511, 'Font.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Font.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10512, 'Parser.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Parser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10513, 'Workbook.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Workbook.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10514, 'Worksheet.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10515, 'Xf.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls/Xf.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10516, 'Xls.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10517, 'Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10518, 'Chart.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Chart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10519, 'Comments.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Comments.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10520, 'ContentTypes.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/ContentTypes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10521, 'DocProps.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/DocProps.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10522, 'Drawing.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Drawing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10523, 'Rels.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Rels.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10524, 'RelsRibbon.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsRibbon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10525, 'RelsVBA.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/RelsVBA.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10526, 'StringTable.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/StringTable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10527, 'Style.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Style.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10528, 'Theme.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Theme.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10529, 'Workbook.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Workbook.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10530, 'Worksheet.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Worksheet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10531, 'WriterPart.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/WriterPart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10532, 'Xlfn.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx/Xlfn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10533, 'Xlsx.php', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer', '/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Writer/Xlsx.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10534, 'pimple', '/vendor', '/vendor/pimple', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10535, 'pimple', '/vendor/pimple', '/vendor/pimple/pimple', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10536, '.gitignore', '/vendor/pimple/pimple', '/vendor/pimple/pimple/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10537, '.travis.yml', '/vendor/pimple/pimple', '/vendor/pimple/pimple/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10538, 'CHANGELOG', '/vendor/pimple/pimple', '/vendor/pimple/pimple/CHANGELOG', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10539, 'LICENSE', '/vendor/pimple/pimple', '/vendor/pimple/pimple/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10540, 'README.rst', '/vendor/pimple/pimple', '/vendor/pimple/pimple/README.rst', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10541, 'composer.json', '/vendor/pimple/pimple', '/vendor/pimple/pimple/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10542, 'ext', '/vendor/pimple/pimple', '/vendor/pimple/pimple/ext', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10543, 'pimple', '/vendor/pimple/pimple/ext', '/vendor/pimple/pimple/ext/pimple', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10544, '.gitignore', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10545, 'README.md', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10546, 'config.m4', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/config.m4', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10547, 'config.w32', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/config.w32', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10548, 'php_pimple.h', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/php_pimple.h', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10549, 'pimple.c', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/pimple.c', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10550, 'pimple_compat.h', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/pimple_compat.h', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10551, 'tests', '/vendor/pimple/pimple/ext/pimple', '/vendor/pimple/pimple/ext/pimple/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10552, '001.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/001.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10553, '002.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/002.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10554, '003.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/003.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10555, '004.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/004.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10556, '005.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/005.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10557, '006.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/006.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10558, '007.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/007.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10559, '008.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/008.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10560, '009.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/009.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10561, '010.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/010.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10562, '011.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/011.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10563, '012.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/012.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10564, '013.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/013.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10565, '014.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/014.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10566, '015.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/015.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10567, '016.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/016.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10568, '017.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/017.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10569, '017_1.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/017_1.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10570, '018.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/018.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10571, '019.phpt', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/019.phpt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10572, 'bench.phpb', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/bench.phpb', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10573, 'bench_shared.phpb', '/vendor/pimple/pimple/ext/pimple/tests', '/vendor/pimple/pimple/ext/pimple/tests/bench_shared.phpb', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10574, 'phpunit.xml.dist', '/vendor/pimple/pimple', '/vendor/pimple/pimple/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10575, 'src', '/vendor/pimple/pimple', '/vendor/pimple/pimple/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10576, 'Pimple', '/vendor/pimple/pimple/src', '/vendor/pimple/pimple/src/Pimple', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10577, 'Container.php', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/Container.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10578, 'Exception', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10579, 'ExpectedInvokableException.php', '/vendor/pimple/pimple/src/Pimple/Exception', '/vendor/pimple/pimple/src/Pimple/Exception/ExpectedInvokableException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10580, 'FrozenServiceException.php', '/vendor/pimple/pimple/src/Pimple/Exception', '/vendor/pimple/pimple/src/Pimple/Exception/FrozenServiceException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10581, 'InvalidServiceIdentifierException.php', '/vendor/pimple/pimple/src/Pimple/Exception', '/vendor/pimple/pimple/src/Pimple/Exception/InvalidServiceIdentifierException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10582, 'UnknownIdentifierException.php', '/vendor/pimple/pimple/src/Pimple/Exception', '/vendor/pimple/pimple/src/Pimple/Exception/UnknownIdentifierException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10583, 'Psr11', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/Psr11', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10584, 'Container.php', '/vendor/pimple/pimple/src/Pimple/Psr11', '/vendor/pimple/pimple/src/Pimple/Psr11/Container.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10585, 'ServiceLocator.php', '/vendor/pimple/pimple/src/Pimple/Psr11', '/vendor/pimple/pimple/src/Pimple/Psr11/ServiceLocator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10586, 'ServiceIterator.php', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/ServiceIterator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10587, 'ServiceProviderInterface.php', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/ServiceProviderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10588, 'Tests', '/vendor/pimple/pimple/src/Pimple', '/vendor/pimple/pimple/src/Pimple/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10589, 'Fixtures', '/vendor/pimple/pimple/src/Pimple/Tests', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10590, 'Invokable.php', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Invokable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10591, 'NonInvokable.php', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/NonInvokable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10592, 'PimpleServiceProvider.php', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/PimpleServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10593, 'Service.php', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures', '/vendor/pimple/pimple/src/Pimple/Tests/Fixtures/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10594, 'PimpleServiceProviderInterfaceTest.php', '/vendor/pimple/pimple/src/Pimple/Tests', '/vendor/pimple/pimple/src/Pimple/Tests/PimpleServiceProviderInterfaceTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10595, 'PimpleTest.php', '/vendor/pimple/pimple/src/Pimple/Tests', '/vendor/pimple/pimple/src/Pimple/Tests/PimpleTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10596, 'Psr11', '/vendor/pimple/pimple/src/Pimple/Tests', '/vendor/pimple/pimple/src/Pimple/Tests/Psr11', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10597, 'ContainerTest.php', '/vendor/pimple/pimple/src/Pimple/Tests/Psr11', '/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ContainerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10598, 'ServiceLocatorTest.php', '/vendor/pimple/pimple/src/Pimple/Tests/Psr11', '/vendor/pimple/pimple/src/Pimple/Tests/Psr11/ServiceLocatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10599, 'ServiceIteratorTest.php', '/vendor/pimple/pimple/src/Pimple/Tests', '/vendor/pimple/pimple/src/Pimple/Tests/ServiceIteratorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10600, 'psr', '/vendor', '/vendor/psr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10601, 'cache', '/vendor/psr', '/vendor/psr/cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10602, 'CHANGELOG.md', '/vendor/psr/cache', '/vendor/psr/cache/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10603, 'LICENSE.txt', '/vendor/psr/cache', '/vendor/psr/cache/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10604, 'README.md', '/vendor/psr/cache', '/vendor/psr/cache/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10605, 'composer.json', '/vendor/psr/cache', '/vendor/psr/cache/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10606, 'src', '/vendor/psr/cache', '/vendor/psr/cache/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10607, 'CacheException.php', '/vendor/psr/cache/src', '/vendor/psr/cache/src/CacheException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10608, 'CacheItemInterface.php', '/vendor/psr/cache/src', '/vendor/psr/cache/src/CacheItemInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10609, 'CacheItemPoolInterface.php', '/vendor/psr/cache/src', '/vendor/psr/cache/src/CacheItemPoolInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10610, 'InvalidArgumentException.php', '/vendor/psr/cache/src', '/vendor/psr/cache/src/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10611, 'container', '/vendor/psr', '/vendor/psr/container', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10612, '.gitignore', '/vendor/psr/container', '/vendor/psr/container/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10613, 'LICENSE', '/vendor/psr/container', '/vendor/psr/container/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10614, 'README.md', '/vendor/psr/container', '/vendor/psr/container/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10615, 'composer.json', '/vendor/psr/container', '/vendor/psr/container/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10616, 'src', '/vendor/psr/container', '/vendor/psr/container/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10617, 'ContainerExceptionInterface.php', '/vendor/psr/container/src', '/vendor/psr/container/src/ContainerExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10618, 'ContainerInterface.php', '/vendor/psr/container/src', '/vendor/psr/container/src/ContainerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10619, 'NotFoundExceptionInterface.php', '/vendor/psr/container/src', '/vendor/psr/container/src/NotFoundExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10620, 'http-client', '/vendor/psr', '/vendor/psr/http-client', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10621, 'CHANGELOG.md', '/vendor/psr/http-client', '/vendor/psr/http-client/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10622, 'LICENSE', '/vendor/psr/http-client', '/vendor/psr/http-client/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10623, 'README.md', '/vendor/psr/http-client', '/vendor/psr/http-client/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10624, 'composer.json', '/vendor/psr/http-client', '/vendor/psr/http-client/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10625, 'src', '/vendor/psr/http-client', '/vendor/psr/http-client/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10626, 'ClientExceptionInterface.php', '/vendor/psr/http-client/src', '/vendor/psr/http-client/src/ClientExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10627, 'ClientInterface.php', '/vendor/psr/http-client/src', '/vendor/psr/http-client/src/ClientInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10628, 'NetworkExceptionInterface.php', '/vendor/psr/http-client/src', '/vendor/psr/http-client/src/NetworkExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10629, 'RequestExceptionInterface.php', '/vendor/psr/http-client/src', '/vendor/psr/http-client/src/RequestExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10630, 'http-factory', '/vendor/psr', '/vendor/psr/http-factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10631, '.gitignore', '/vendor/psr/http-factory', '/vendor/psr/http-factory/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10632, '.pullapprove.yml', '/vendor/psr/http-factory', '/vendor/psr/http-factory/.pullapprove.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10633, 'LICENSE', '/vendor/psr/http-factory', '/vendor/psr/http-factory/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10634, 'README.md', '/vendor/psr/http-factory', '/vendor/psr/http-factory/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10635, 'composer.json', '/vendor/psr/http-factory', '/vendor/psr/http-factory/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10636, 'src', '/vendor/psr/http-factory', '/vendor/psr/http-factory/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10637, 'RequestFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/RequestFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10638, 'ResponseFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/ResponseFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10639, 'ServerRequestFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10640, 'StreamFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/StreamFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10641, 'UploadedFileFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10642, 'UriFactoryInterface.php', '/vendor/psr/http-factory/src', '/vendor/psr/http-factory/src/UriFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10643, 'http-message', '/vendor/psr', '/vendor/psr/http-message', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10644, 'CHANGELOG.md', '/vendor/psr/http-message', '/vendor/psr/http-message/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10645, 'LICENSE', '/vendor/psr/http-message', '/vendor/psr/http-message/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10646, 'README.md', '/vendor/psr/http-message', '/vendor/psr/http-message/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10647, 'composer.json', '/vendor/psr/http-message', '/vendor/psr/http-message/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10648, 'src', '/vendor/psr/http-message', '/vendor/psr/http-message/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10649, 'MessageInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/MessageInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10650, 'RequestInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/RequestInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10651, 'ResponseInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/ResponseInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10652, 'ServerRequestInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/ServerRequestInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10653, 'StreamInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/StreamInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10654, 'UploadedFileInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/UploadedFileInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10655, 'UriInterface.php', '/vendor/psr/http-message/src', '/vendor/psr/http-message/src/UriInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10656, 'log', '/vendor/psr', '/vendor/psr/log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10657, '.gitignore', '/vendor/psr/log', '/vendor/psr/log/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10658, 'LICENSE', '/vendor/psr/log', '/vendor/psr/log/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10659, 'Psr', '/vendor/psr/log', '/vendor/psr/log/Psr', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10660, 'Log', '/vendor/psr/log/Psr', '/vendor/psr/log/Psr/Log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10661, 'AbstractLogger.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/AbstractLogger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10662, 'InvalidArgumentException.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10663, 'LogLevel.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/LogLevel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10664, 'LoggerAwareInterface.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/LoggerAwareInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10665, 'LoggerAwareTrait.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/LoggerAwareTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10666, 'LoggerInterface.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/LoggerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10667, 'LoggerTrait.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/LoggerTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10668, 'NullLogger.php', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/NullLogger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10669, 'Test', '/vendor/psr/log/Psr/Log', '/vendor/psr/log/Psr/Log/Test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10670, 'LoggerInterfaceTest.php', '/vendor/psr/log/Psr/Log/Test', '/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10671, 'TestLogger.php', '/vendor/psr/log/Psr/Log/Test', '/vendor/psr/log/Psr/Log/Test/TestLogger.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10672, 'README.md', '/vendor/psr/log', '/vendor/psr/log/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10673, 'composer.json', '/vendor/psr/log', '/vendor/psr/log/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10674, 'simple-cache', '/vendor/psr', '/vendor/psr/simple-cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10675, '.editorconfig', '/vendor/psr/simple-cache', '/vendor/psr/simple-cache/.editorconfig', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10676, 'LICENSE.md', '/vendor/psr/simple-cache', '/vendor/psr/simple-cache/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10677, 'README.md', '/vendor/psr/simple-cache', '/vendor/psr/simple-cache/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10678, 'composer.json', '/vendor/psr/simple-cache', '/vendor/psr/simple-cache/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10679, 'src', '/vendor/psr/simple-cache', '/vendor/psr/simple-cache/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10680, 'CacheException.php', '/vendor/psr/simple-cache/src', '/vendor/psr/simple-cache/src/CacheException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10681, 'CacheInterface.php', '/vendor/psr/simple-cache/src', '/vendor/psr/simple-cache/src/CacheInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10682, 'InvalidArgumentException.php', '/vendor/psr/simple-cache/src', '/vendor/psr/simple-cache/src/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10683, 'qcloud', '/vendor', '/vendor/qcloud', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10684, 'cos-sdk-v5', '/vendor/qcloud', '/vendor/qcloud/cos-sdk-v5', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10685, '.gitignore', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10686, '.travis.yml', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10687, 'LICENSE', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10688, 'README.md', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10689, 'composer.json', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10690, 'phpunit.xml', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10691, 'sample', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/sample', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10692, 'abortMultipartUpload.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/abortMultipartUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10693, 'catchException.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/catchException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10694, 'completeMultipartUpload.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/completeMultipartUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10695, 'copyObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/copyObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10696, 'createBucket.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/createBucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10697, 'createMultipartUpload.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/createMultipartUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10698, 'deleteBucket.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/deleteBucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10699, 'deleteBucketCors.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/deleteBucketCors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10700, 'deleteBucketLifecycle.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/deleteBucketLifecycle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10701, 'deleteObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/deleteObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10702, 'getBucketAcl.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/getBucketAcl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10703, 'getBucketCors.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/getBucketCors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10704, 'getBucketLifecycle.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/getBucketLifecycle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10705, 'getObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/getObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10706, 'headBucket.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/headBucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10707, 'headObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/headObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10708, 'listBucket.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/listBucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10709, 'listMultipartUploads.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/listMultipartUploads.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10710, 'listObjects.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/listObjects.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10711, 'listParts.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/listParts.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10712, 'putBucketAcl.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/putBucketAcl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10713, 'putBucketCors.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/putBucketCors.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10714, 'putBucketLifecycle.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/putBucketLifecycle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10715, 'putObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/putObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10716, 'restoreObject.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/restoreObject.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10717, 'upload.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/upload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10718, 'uploadPart.php', '/vendor/qcloud/cos-sdk-v5/sample', '/vendor/qcloud/cos-sdk-v5/sample/uploadPart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10719, 'sample.php', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/sample.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10720, 'src', '/vendor/qcloud/cos-sdk-v5', '/vendor/qcloud/cos-sdk-v5/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10721, 'Qcloud', '/vendor/qcloud/cos-sdk-v5/src', '/vendor/qcloud/cos-sdk-v5/src/Qcloud', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10722, 'Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10723, 'BucketStyleListener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/BucketStyleListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10724, 'Client.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10725, 'Command.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Command.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10726, 'Copy.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Copy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10727, 'Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10728, 'BucketAlreadyExistsException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/BucketAlreadyExistsException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10729, 'BucketNotEmptyException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/BucketNotEmptyException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10730, 'CosException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/CosException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10731, 'CurlException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/CurlException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10732, 'InvalidArgumentException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10733, 'NoSuchBucketException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/NoSuchBucketException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10734, 'NoSuchKeyException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/NoSuchKeyException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10735, 'NoSuchUploadException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/NoSuchUploadException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10736, 'ServiceResponseException.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Exception/ServiceResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10737, 'ExceptionListener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/ExceptionListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10738, 'ExceptionParser.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/ExceptionParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10739, 'Md5Listener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Md5Listener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10740, 'MultipartUpload.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/MultipartUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10741, 'Service.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10742, 'Signature.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Signature.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10743, 'SignatureListener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/SignatureListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10744, 'Tests', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10745, 'Test.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Tests', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Tests/Test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10746, 'TestHelper.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Tests', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/Tests/TestHelper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10747, 'TokenListener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/TokenListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10748, 'UploadBodyListener.php', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos', '/vendor/qcloud/cos-sdk-v5/src/Qcloud/Cos/UploadBodyListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10749, 'qcloud_sts', '/vendor', '/vendor/qcloud_sts', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10750, 'qcloud-sts-sdk', '/vendor/qcloud_sts', '/vendor/qcloud_sts/qcloud-sts-sdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10751, '.gitignore', '/vendor/qcloud_sts/qcloud-sts-sdk', '/vendor/qcloud_sts/qcloud-sts-sdk/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10752, 'LICENSE', '/vendor/qcloud_sts/qcloud-sts-sdk', '/vendor/qcloud_sts/qcloud-sts-sdk/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10753, 'README.md', '/vendor/qcloud_sts/qcloud-sts-sdk', '/vendor/qcloud_sts/qcloud-sts-sdk/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10754, 'composer.json', '/vendor/qcloud_sts/qcloud-sts-sdk', '/vendor/qcloud_sts/qcloud-sts-sdk/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10755, 'src', '/vendor/qcloud_sts/qcloud-sts-sdk', '/vendor/qcloud_sts/qcloud-sts-sdk/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10756, 'Scope.php', '/vendor/qcloud_sts/qcloud-sts-sdk/src', '/vendor/qcloud_sts/qcloud-sts-sdk/src/Scope.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10757, 'Sts.php', '/vendor/qcloud_sts/qcloud-sts-sdk/src', '/vendor/qcloud_sts/qcloud-sts-sdk/src/Sts.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10758, 'qiniu', '/vendor', '/vendor/qiniu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10759, 'php-sdk', '/vendor/qiniu', '/vendor/qiniu/php-sdk', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10760, '.gitignore', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10761, '.scrutinizer.yml', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/.scrutinizer.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10762, '.travis.yml', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10763, 'CHANGELOG.md', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10764, 'CONTRIBUTING.md', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10765, 'LICENSE', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10766, 'README.md', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10767, 'autoload.php', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10768, 'composer.json', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10769, 'docs', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/docs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10770, 'rtc', '/vendor/qiniu/php-sdk/docs', '/vendor/qiniu/php-sdk/docs/rtc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10771, 'README.md', '/vendor/qiniu/php-sdk/docs/rtc', '/vendor/qiniu/php-sdk/docs/rtc/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10772, 'example.php', '/vendor/qiniu/php-sdk/docs/rtc', '/vendor/qiniu/php-sdk/docs/rtc/example.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10773, 'sms', '/vendor/qiniu/php-sdk/docs', '/vendor/qiniu/php-sdk/docs/sms', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10774, 'example.php', '/vendor/qiniu/php-sdk/docs/sms', '/vendor/qiniu/php-sdk/docs/sms/example.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10775, 'examples', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10776, 'README.md', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10777, 'bucket_lifecycleRule.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/bucket_lifecycleRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10778, 'cdn_get_bandwidth.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/cdn_get_bandwidth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10779, 'cdn_get_flux.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/cdn_get_flux.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10780, 'cdn_get_log_list.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/cdn_get_log_list.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10781, 'cdn_refresh_urls_dirs.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/cdn_refresh_urls_dirs.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10782, 'cdn_timestamp_antileech.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/cdn_timestamp_antileech.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10783, 'delete_bucket.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/delete_bucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10784, 'delete_bucketEvent.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/delete_bucketEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10785, 'delete_bucketLifecycleRule.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/delete_bucketLifecycleRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10786, 'get_bucketEvents.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketEvents.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10787, 'get_bucketLifecycleRules.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketLifecycleRules.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10788, 'get_bucketList.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10789, 'get_bucketQuota.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketQuota.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10790, 'get_bucketinfo.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketinfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10791, 'get_bucketinfos.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_bucketinfos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10792, 'get_corsRules.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/get_corsRules.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10793, 'image_url_builder.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/image_url_builder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10794, 'persistent_fop_init.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/persistent_fop_init.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10795, 'persistent_fop_status.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/persistent_fop_status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10796, 'pfop_mkzip.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/pfop_mkzip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10797, 'pfop_vframe.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/pfop_vframe.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10798, 'pfop_video_avthumb.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/pfop_video_avthumb.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10799, 'pfop_watermark.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/pfop_watermark.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10800, 'php-logo.png', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/php-logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10801, 'prefop.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/prefop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10802, 'pulpvideo.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/pulpvideo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10803, 'put_bucketAccessMode.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_bucketAccessMode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10804, 'put_bucketAccessStyleMode.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_bucketAccessStyleMode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10805, 'put_bucketEvent.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_bucketEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10806, 'put_bucketMaxAge.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_bucketMaxAge.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10807, 'put_bucketQuota.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_bucketQuota.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10808, 'put_referAntiLeech.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/put_referAntiLeech.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10809, 'qetag.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/qetag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10810, 'rs_batch_change_mime.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_change_mime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10811, 'rs_batch_change_type.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_change_type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10812, 'rs_batch_copy.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_copy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10813, 'rs_batch_delete.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_delete.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10814, 'rs_batch_delete_after_days.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_delete_after_days.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10815, 'rs_batch_move.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_move.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10816, 'rs_batch_stat.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_batch_stat.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10817, 'rs_bucket_domains.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_bucket_domains.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10818, 'rs_buckets.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_buckets.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10819, 'rs_change_mime.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_change_mime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10820, 'rs_change_status.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_change_status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10821, 'rs_change_type.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_change_type.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10822, 'rs_copy.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_copy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10823, 'rs_delete.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_delete.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10824, 'rs_delete_after_days.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_delete_after_days.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10825, 'rs_download_urls.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_download_urls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10826, 'rs_fetch.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_fetch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10827, 'rs_move.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_move.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10828, 'rs_prefetch.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_prefetch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10829, 'rs_pub_domain.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_pub_domain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10830, 'rs_stat.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rs_stat.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10831, 'rsf_list_bucket.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rsf_list_bucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10832, 'rsf_list_files.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rsf_list_files.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10833, 'rsf_v2list_bucket.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/rsf_v2list_bucket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10834, 'saveas.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/saveas.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10835, 'update_bucketEvent.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/update_bucketEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10836, 'update_bucketLifecycleRule.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/update_bucketLifecycleRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10837, 'upload_and_callback.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_and_callback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10838, 'upload_and_pfop.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_and_pfop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10839, 'upload_mgr_init.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_mgr_init.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10840, 'upload_multi_demos.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_multi_demos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10841, 'upload_simple_file.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_simple_file.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10842, 'upload_tokens.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_tokens.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10843, 'upload_verify_callback.php', '/vendor/qiniu/php-sdk/examples', '/vendor/qiniu/php-sdk/examples/upload_verify_callback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10844, 'phpunit.xml.dist', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10845, 'src', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10846, 'Qiniu', '/vendor/qiniu/php-sdk/src', '/vendor/qiniu/php-sdk/src/Qiniu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10847, 'Auth.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Auth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10848, 'Cdn', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Cdn', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10849, 'CdnManager.php', '/vendor/qiniu/php-sdk/src/Qiniu/Cdn', '/vendor/qiniu/php-sdk/src/Qiniu/Cdn/CdnManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10850, 'Config.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10851, 'Etag.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Etag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10852, 'Http', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10853, 'Client.php', '/vendor/qiniu/php-sdk/src/Qiniu/Http', '/vendor/qiniu/php-sdk/src/Qiniu/Http/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10854, 'Error.php', '/vendor/qiniu/php-sdk/src/Qiniu/Http', '/vendor/qiniu/php-sdk/src/Qiniu/Http/Error.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10855, 'Request.php', '/vendor/qiniu/php-sdk/src/Qiniu/Http', '/vendor/qiniu/php-sdk/src/Qiniu/Http/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10856, 'Response.php', '/vendor/qiniu/php-sdk/src/Qiniu/Http', '/vendor/qiniu/php-sdk/src/Qiniu/Http/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10857, 'Processing', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Processing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10858, 'ImageUrlBuilder.php', '/vendor/qiniu/php-sdk/src/Qiniu/Processing', '/vendor/qiniu/php-sdk/src/Qiniu/Processing/ImageUrlBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10859, 'Operation.php', '/vendor/qiniu/php-sdk/src/Qiniu/Processing', '/vendor/qiniu/php-sdk/src/Qiniu/Processing/Operation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10860, 'PersistentFop.php', '/vendor/qiniu/php-sdk/src/Qiniu/Processing', '/vendor/qiniu/php-sdk/src/Qiniu/Processing/PersistentFop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10861, 'Region.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Region.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10862, 'Rtc', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Rtc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10863, 'AppClient.php', '/vendor/qiniu/php-sdk/src/Qiniu/Rtc', '/vendor/qiniu/php-sdk/src/Qiniu/Rtc/AppClient.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10864, 'Sms', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Sms', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10865, 'Sms.php', '/vendor/qiniu/php-sdk/src/Qiniu/Sms', '/vendor/qiniu/php-sdk/src/Qiniu/Sms/Sms.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10866, 'Storage', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10867, 'ArgusManager.php', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', '/vendor/qiniu/php-sdk/src/Qiniu/Storage/ArgusManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10868, 'BucketManager.php', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', '/vendor/qiniu/php-sdk/src/Qiniu/Storage/BucketManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10869, 'FormUploader.php', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', '/vendor/qiniu/php-sdk/src/Qiniu/Storage/FormUploader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10870, 'ResumeUploader.php', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', '/vendor/qiniu/php-sdk/src/Qiniu/Storage/ResumeUploader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10871, 'UploadManager.php', '/vendor/qiniu/php-sdk/src/Qiniu/Storage', '/vendor/qiniu/php-sdk/src/Qiniu/Storage/UploadManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10872, 'Zone.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/Zone.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10873, 'functions.php', '/vendor/qiniu/php-sdk/src/Qiniu', '/vendor/qiniu/php-sdk/src/Qiniu/functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10874, 'test-env.sh', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/test-env.sh', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10875, 'tests', '/vendor/qiniu/php-sdk', '/vendor/qiniu/php-sdk/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10876, 'Qiniu', '/vendor/qiniu/php-sdk/tests', '/vendor/qiniu/php-sdk/tests/Qiniu', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10877, 'Tests', '/vendor/qiniu/php-sdk/tests/Qiniu', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10878, 'AuthTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/AuthTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10879, 'Base64Test.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/Base64Test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10880, 'BucketTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/BucketTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10881, 'CdnManagerTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/CdnManagerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10882, 'Crc32Test.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/Crc32Test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10883, 'DownloadTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/DownloadTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10884, 'EtagTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/EtagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10885, 'FopTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/FopTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10886, 'FormUpTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/FormUpTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10887, 'HttpTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/HttpTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10888, 'ImageUrlBuilderTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/ImageUrlBuilderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10889, 'PfopTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/PfopTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10890, 'ResumeUpTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/ResumeUpTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10891, 'ZoneTest.php', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests', '/vendor/qiniu/php-sdk/tests/Qiniu/Tests/ZoneTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10892, 'bootstrap.php', '/vendor/qiniu/php-sdk/tests', '/vendor/qiniu/php-sdk/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10893, 'ralouphie', '/vendor', '/vendor/ralouphie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10894, 'getallheaders', '/vendor/ralouphie', '/vendor/ralouphie/getallheaders', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10895, '.gitignore', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10896, '.travis.yml', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10897, 'LICENSE', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10898, 'README.md', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10899, 'composer.json', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10900, 'phpunit.xml', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10901, 'src', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10902, 'getallheaders.php', '/vendor/ralouphie/getallheaders/src', '/vendor/ralouphie/getallheaders/src/getallheaders.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10903, 'tests', '/vendor/ralouphie/getallheaders', '/vendor/ralouphie/getallheaders/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10904, 'GetAllHeadersTest.php', '/vendor/ralouphie/getallheaders/tests', '/vendor/ralouphie/getallheaders/tests/GetAllHeadersTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10905, 'services.php', '/vendor', '/vendor/services.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10906, 'songshenzong', '/vendor', '/vendor/songshenzong', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10907, 'support', '/vendor/songshenzong', '/vendor/songshenzong/support', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10908, '.gitignore', '/vendor/songshenzong/support', '/vendor/songshenzong/support/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10909, '.travis.yml', '/vendor/songshenzong/support', '/vendor/songshenzong/support/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10910, 'CHANGELOG.md', '/vendor/songshenzong/support', '/vendor/songshenzong/support/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10911, 'LICENSE.txt', '/vendor/songshenzong/support', '/vendor/songshenzong/support/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10912, 'README.md', '/vendor/songshenzong/support', '/vendor/songshenzong/support/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10913, 'composer.json', '/vendor/songshenzong/support', '/vendor/songshenzong/support/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10914, 'phpunit.xml', '/vendor/songshenzong/support', '/vendor/songshenzong/support/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10915, 'src', '/vendor/songshenzong/support', '/vendor/songshenzong/support/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10916, 'Arrays.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/Arrays.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10917, 'BashEcho.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/BashEcho.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10918, 'BashEchoHelpers.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/BashEchoHelpers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10919, 'Env.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/Env.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10920, 'OS.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/OS.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10921, 'Strings.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/Strings.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10922, 'StringsFacade.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/StringsFacade.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10923, 'StringsHelpers.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/StringsHelpers.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10924, 'StringsServiceProvider.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/StringsServiceProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10925, 'Time.php', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/Time.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10926, 'Traits', '/vendor/songshenzong/support/src', '/vendor/songshenzong/support/src/Traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10927, 'Str.php', '/vendor/songshenzong/support/src/Traits', '/vendor/songshenzong/support/src/Traits/Str.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10928, 'Uri.php', '/vendor/songshenzong/support/src/Traits', '/vendor/songshenzong/support/src/Traits/Uri.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10929, 'tests', '/vendor/songshenzong/support', '/vendor/songshenzong/support/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10930, 'Core', '/vendor/songshenzong/support/tests', '/vendor/songshenzong/support/tests/Core', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10931, 'EchoBashTest.php', '/vendor/songshenzong/support/tests/Core', '/vendor/songshenzong/support/tests/Core/EchoBashTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10932, 'StrTest.php', '/vendor/songshenzong/support/tests/Core', '/vendor/songshenzong/support/tests/Core/StrTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10933, 'OSTest.php', '/vendor/songshenzong/support/tests', '/vendor/songshenzong/support/tests/OSTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10934, 'TimeTest.php', '/vendor/songshenzong/support/tests', '/vendor/songshenzong/support/tests/TimeTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10935, 'bootstrap.php', '/vendor/songshenzong/support/tests', '/vendor/songshenzong/support/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10936, 'spatie', '/vendor', '/vendor/spatie', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10937, 'macroable', '/vendor/spatie', '/vendor/spatie/macroable', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10938, '.styleci.yml', '/vendor/spatie/macroable', '/vendor/spatie/macroable/.styleci.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10939, 'CHANGELOG.md', '/vendor/spatie/macroable', '/vendor/spatie/macroable/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10940, 'CONTRIBUTING.md', '/vendor/spatie/macroable', '/vendor/spatie/macroable/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10941, 'LICENSE.md', '/vendor/spatie/macroable', '/vendor/spatie/macroable/LICENSE.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10942, 'README.md', '/vendor/spatie/macroable', '/vendor/spatie/macroable/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10943, 'composer.json', '/vendor/spatie/macroable', '/vendor/spatie/macroable/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10944, 'config', '/vendor/spatie/macroable', '/vendor/spatie/macroable/config', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10945, '.gitkeep', '/vendor/spatie/macroable/config', '/vendor/spatie/macroable/config/.gitkeep', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10946, 'src', '/vendor/spatie/macroable', '/vendor/spatie/macroable/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10947, 'Macroable.php', '/vendor/spatie/macroable/src', '/vendor/spatie/macroable/src/Macroable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10948, 'symfony', '/vendor', '/vendor/symfony', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10949, 'event-dispatcher', '/vendor/symfony', '/vendor/symfony/event-dispatcher', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10950, '.gitignore', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10951, 'CHANGELOG.md', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10952, 'ContainerAwareEventDispatcher.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10953, 'Debug', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/Debug', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10954, 'TraceableEventDispatcher.php', '/vendor/symfony/event-dispatcher/Debug', '/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10955, 'TraceableEventDispatcherInterface.php', '/vendor/symfony/event-dispatcher/Debug', '/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10956, 'WrappedListener.php', '/vendor/symfony/event-dispatcher/Debug', '/vendor/symfony/event-dispatcher/Debug/WrappedListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10957, 'DependencyInjection', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/DependencyInjection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10958, 'RegisterListenersPass.php', '/vendor/symfony/event-dispatcher/DependencyInjection', '/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10959, 'Event.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10960, 'EventDispatcher.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/EventDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10961, 'EventDispatcherInterface.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/EventDispatcherInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10962, 'EventSubscriberInterface.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/EventSubscriberInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10963, 'GenericEvent.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/GenericEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10964, 'ImmutableEventDispatcher.php', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10965, 'LICENSE', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10966, 'README.md', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10967, 'Tests', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10968, 'AbstractEventDispatcherTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10969, 'ContainerAwareEventDispatcherTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10970, 'Debug', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/Debug', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10971, 'TraceableEventDispatcherTest.php', '/vendor/symfony/event-dispatcher/Tests/Debug', '/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10972, 'DependencyInjection', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/DependencyInjection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10973, 'RegisterListenersPassTest.php', '/vendor/symfony/event-dispatcher/Tests/DependencyInjection', '/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10974, 'EventDispatcherTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10975, 'EventTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/EventTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10976, 'GenericEventTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10977, 'ImmutableEventDispatcherTest.php', '/vendor/symfony/event-dispatcher/Tests', '/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10978, 'composer.json', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10979, 'phpunit.xml.dist', '/vendor/symfony/event-dispatcher', '/vendor/symfony/event-dispatcher/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10980, 'http-foundation', '/vendor/symfony', '/vendor/symfony/http-foundation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10981, '.gitignore', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10982, 'AcceptHeader.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/AcceptHeader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10983, 'AcceptHeaderItem.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/AcceptHeaderItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10984, 'ApacheRequest.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/ApacheRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10985, 'BinaryFileResponse.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/BinaryFileResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10986, 'CHANGELOG.md', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10987, 'Cookie.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10988, 'Exception', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10989, 'ConflictingHeadersException.php', '/vendor/symfony/http-foundation/Exception', '/vendor/symfony/http-foundation/Exception/ConflictingHeadersException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10990, 'RequestExceptionInterface.php', '/vendor/symfony/http-foundation/Exception', '/vendor/symfony/http-foundation/Exception/RequestExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10991, 'SuspiciousOperationException.php', '/vendor/symfony/http-foundation/Exception', '/vendor/symfony/http-foundation/Exception/SuspiciousOperationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10992, 'ExpressionRequestMatcher.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/ExpressionRequestMatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10993, 'File', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/File', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10994, 'Exception', '/vendor/symfony/http-foundation/File', '/vendor/symfony/http-foundation/File/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10995, 'AccessDeniedException.php', '/vendor/symfony/http-foundation/File/Exception', '/vendor/symfony/http-foundation/File/Exception/AccessDeniedException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10996, 'FileException.php', '/vendor/symfony/http-foundation/File/Exception', '/vendor/symfony/http-foundation/File/Exception/FileException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10997, 'FileNotFoundException.php', '/vendor/symfony/http-foundation/File/Exception', '/vendor/symfony/http-foundation/File/Exception/FileNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10998, 'UnexpectedTypeException.php', '/vendor/symfony/http-foundation/File/Exception', '/vendor/symfony/http-foundation/File/Exception/UnexpectedTypeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(10999, 'UploadException.php', '/vendor/symfony/http-foundation/File/Exception', '/vendor/symfony/http-foundation/File/Exception/UploadException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11000, 'File.php', '/vendor/symfony/http-foundation/File', '/vendor/symfony/http-foundation/File/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11001, 'MimeType', '/vendor/symfony/http-foundation/File', '/vendor/symfony/http-foundation/File/MimeType', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11002, 'ExtensionGuesser.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/ExtensionGuesser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11003, 'ExtensionGuesserInterface.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/ExtensionGuesserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11004, 'FileBinaryMimeTypeGuesser.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/FileBinaryMimeTypeGuesser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11005, 'FileinfoMimeTypeGuesser.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/FileinfoMimeTypeGuesser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11006, 'MimeTypeExtensionGuesser.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/MimeTypeExtensionGuesser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11007, 'MimeTypeGuesser.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/MimeTypeGuesser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11008, 'MimeTypeGuesserInterface.php', '/vendor/symfony/http-foundation/File/MimeType', '/vendor/symfony/http-foundation/File/MimeType/MimeTypeGuesserInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11009, 'Stream.php', '/vendor/symfony/http-foundation/File', '/vendor/symfony/http-foundation/File/Stream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11010, 'UploadedFile.php', '/vendor/symfony/http-foundation/File', '/vendor/symfony/http-foundation/File/UploadedFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11011, 'FileBag.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/FileBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11012, 'HeaderBag.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/HeaderBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11013, 'IpUtils.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/IpUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11014, 'JsonResponse.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/JsonResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11015, 'LICENSE', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11016, 'ParameterBag.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/ParameterBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11017, 'README.md', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11018, 'RedirectResponse.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/RedirectResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11019, 'Request.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11020, 'RequestMatcher.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/RequestMatcher.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11021, 'RequestMatcherInterface.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/RequestMatcherInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11022, 'RequestStack.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/RequestStack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11023, 'Response.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11024, 'ResponseHeaderBag.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/ResponseHeaderBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11025, 'ServerBag.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/ServerBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11026, 'Session', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Session', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11027, 'Attribute', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/Attribute', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11028, 'AttributeBag.php', '/vendor/symfony/http-foundation/Session/Attribute', '/vendor/symfony/http-foundation/Session/Attribute/AttributeBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11029, 'AttributeBagInterface.php', '/vendor/symfony/http-foundation/Session/Attribute', '/vendor/symfony/http-foundation/Session/Attribute/AttributeBagInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11030, 'NamespacedAttributeBag.php', '/vendor/symfony/http-foundation/Session/Attribute', '/vendor/symfony/http-foundation/Session/Attribute/NamespacedAttributeBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11031, 'Flash', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/Flash', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11032, 'AutoExpireFlashBag.php', '/vendor/symfony/http-foundation/Session/Flash', '/vendor/symfony/http-foundation/Session/Flash/AutoExpireFlashBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11033, 'FlashBag.php', '/vendor/symfony/http-foundation/Session/Flash', '/vendor/symfony/http-foundation/Session/Flash/FlashBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11034, 'FlashBagInterface.php', '/vendor/symfony/http-foundation/Session/Flash', '/vendor/symfony/http-foundation/Session/Flash/FlashBagInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11035, 'Session.php', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/Session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11036, 'SessionBagInterface.php', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/SessionBagInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11037, 'SessionBagProxy.php', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/SessionBagProxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11038, 'SessionInterface.php', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/SessionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11039, 'Storage', '/vendor/symfony/http-foundation/Session', '/vendor/symfony/http-foundation/Session/Storage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11040, 'Handler', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/Handler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11041, 'AbstractSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/AbstractSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11042, 'MemcacheSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/MemcacheSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11043, 'MemcachedSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/MemcachedSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11044, 'MongoDbSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/MongoDbSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11045, 'NativeFileSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/NativeFileSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11046, 'NativeSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/NativeSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11047, 'NullSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/NullSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11048, 'PdoSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/PdoSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11049, 'StrictSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/StrictSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11050, 'WriteCheckSessionHandler.php', '/vendor/symfony/http-foundation/Session/Storage/Handler', '/vendor/symfony/http-foundation/Session/Storage/Handler/WriteCheckSessionHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11051, 'MetadataBag.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/MetadataBag.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11052, 'MockArraySessionStorage.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/MockArraySessionStorage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11053, 'MockFileSessionStorage.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/MockFileSessionStorage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11054, 'NativeSessionStorage.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/NativeSessionStorage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11055, 'PhpBridgeSessionStorage.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/PhpBridgeSessionStorage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11056, 'Proxy', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/Proxy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11057, 'AbstractProxy.php', '/vendor/symfony/http-foundation/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Session/Storage/Proxy/AbstractProxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11058, 'NativeProxy.php', '/vendor/symfony/http-foundation/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Session/Storage/Proxy/NativeProxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11059, 'SessionHandlerProxy.php', '/vendor/symfony/http-foundation/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Session/Storage/Proxy/SessionHandlerProxy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11060, 'SessionStorageInterface.php', '/vendor/symfony/http-foundation/Session/Storage', '/vendor/symfony/http-foundation/Session/Storage/SessionStorageInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11061, 'StreamedResponse.php', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/StreamedResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11062, 'Tests', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11063, 'AcceptHeaderItemTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/AcceptHeaderItemTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11064, 'AcceptHeaderTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/AcceptHeaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11065, 'ApacheRequestTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ApacheRequestTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11066, 'BinaryFileResponseTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/BinaryFileResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11067, 'CookieTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/CookieTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11068, 'ExpressionRequestMatcherTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ExpressionRequestMatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11069, 'File', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/File', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11070, 'FakeFile.php', '/vendor/symfony/http-foundation/Tests/File', '/vendor/symfony/http-foundation/Tests/File/FakeFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11071, 'FileTest.php', '/vendor/symfony/http-foundation/Tests/File', '/vendor/symfony/http-foundation/Tests/File/FileTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11072, 'Fixtures', '/vendor/symfony/http-foundation/Tests/File', '/vendor/symfony/http-foundation/Tests/File/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11073, '.unknownextension', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/.unknownextension', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11074, 'case-sensitive-mime-type.xlsm', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/case-sensitive-mime-type.xlsm', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11075, 'directory', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/directory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11076, '.empty', '/vendor/symfony/http-foundation/Tests/File/Fixtures/directory', '/vendor/symfony/http-foundation/Tests/File/Fixtures/directory/.empty', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11077, 'other-file.example', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/other-file.example', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11078, 'test', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/test', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11079, 'test.gif', '/vendor/symfony/http-foundation/Tests/File/Fixtures', '/vendor/symfony/http-foundation/Tests/File/Fixtures/test.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11080, 'MimeType', '/vendor/symfony/http-foundation/Tests/File', '/vendor/symfony/http-foundation/Tests/File/MimeType', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11081, 'MimeTypeTest.php', '/vendor/symfony/http-foundation/Tests/File/MimeType', '/vendor/symfony/http-foundation/Tests/File/MimeType/MimeTypeTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11082, 'UploadedFileTest.php', '/vendor/symfony/http-foundation/Tests/File', '/vendor/symfony/http-foundation/Tests/File/UploadedFileTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11083, 'FileBagTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/FileBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11084, 'Fixtures', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11085, 'response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11086, 'common.inc', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/common.inc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11087, 'cookie_max_age.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_max_age.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11088, 'cookie_max_age.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_max_age.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11089, 'cookie_raw_urlencode.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_raw_urlencode.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11090, 'cookie_raw_urlencode.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_raw_urlencode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11091, 'cookie_samesite_lax.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_lax.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11092, 'cookie_samesite_lax.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_lax.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11093, 'cookie_samesite_strict.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_strict.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11094, 'cookie_samesite_strict.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_samesite_strict.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11095, 'cookie_urlencode.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_urlencode.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11096, 'cookie_urlencode.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/cookie_urlencode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11097, 'invalid_cookie_name.expected', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/invalid_cookie_name.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11098, 'invalid_cookie_name.php', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional', '/vendor/symfony/http-foundation/Tests/Fixtures/response-functional/invalid_cookie_name.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11099, 'HeaderBagTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/HeaderBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11100, 'IpUtilsTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/IpUtilsTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11101, 'JsonResponseTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/JsonResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11102, 'ParameterBagTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ParameterBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11103, 'RedirectResponseTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/RedirectResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11104, 'RequestMatcherTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/RequestMatcherTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11105, 'RequestStackTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/RequestStackTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11106, 'RequestTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/RequestTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11107, 'ResponseFunctionalTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ResponseFunctionalTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11108, 'ResponseHeaderBagTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ResponseHeaderBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11109, 'ResponseTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11110, 'ResponseTestCase.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ResponseTestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11111, 'ServerBagTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/ServerBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11112, 'Session', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/Session', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11113, 'Attribute', '/vendor/symfony/http-foundation/Tests/Session', '/vendor/symfony/http-foundation/Tests/Session/Attribute', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11114, 'AttributeBagTest.php', '/vendor/symfony/http-foundation/Tests/Session/Attribute', '/vendor/symfony/http-foundation/Tests/Session/Attribute/AttributeBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11115, 'NamespacedAttributeBagTest.php', '/vendor/symfony/http-foundation/Tests/Session/Attribute', '/vendor/symfony/http-foundation/Tests/Session/Attribute/NamespacedAttributeBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11116, 'Flash', '/vendor/symfony/http-foundation/Tests/Session', '/vendor/symfony/http-foundation/Tests/Session/Flash', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11117, 'AutoExpireFlashBagTest.php', '/vendor/symfony/http-foundation/Tests/Session/Flash', '/vendor/symfony/http-foundation/Tests/Session/Flash/AutoExpireFlashBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11118, 'FlashBagTest.php', '/vendor/symfony/http-foundation/Tests/Session/Flash', '/vendor/symfony/http-foundation/Tests/Session/Flash/FlashBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11119, 'SessionTest.php', '/vendor/symfony/http-foundation/Tests/Session', '/vendor/symfony/http-foundation/Tests/Session/SessionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11120, 'Storage', '/vendor/symfony/http-foundation/Tests/Session', '/vendor/symfony/http-foundation/Tests/Session/Storage', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11121, 'Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11122, 'AbstractSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/AbstractSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11123, 'Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11124, 'common.inc', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/common.inc', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11125, 'empty_destroys.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/empty_destroys.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11126, 'empty_destroys.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/empty_destroys.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11127, 'read_only.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/read_only.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11128, 'read_only.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/read_only.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11129, 'regenerate.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/regenerate.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11130, 'regenerate.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/regenerate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11131, 'storage.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/storage.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11132, 'storage.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/storage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11133, 'with_cookie.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11134, 'with_cookie.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11135, 'with_cookie_and_session.expected', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie_and_session.expected', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11136, 'with_cookie_and_session.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/Fixtures/with_cookie_and_session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11137, 'MemcacheSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11138, 'MemcachedSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11139, 'MongoDbSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11140, 'NativeFileSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NativeFileSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11141, 'NativeSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NativeSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11142, 'NullSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/NullSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11143, 'PdoSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/PdoSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11144, 'StrictSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/StrictSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11145, 'WriteCheckSessionHandlerTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler', '/vendor/symfony/http-foundation/Tests/Session/Storage/Handler/WriteCheckSessionHandlerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11146, 'MetadataBagTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/MetadataBagTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11147, 'MockArraySessionStorageTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/MockArraySessionStorageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11148, 'MockFileSessionStorageTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/MockFileSessionStorageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11149, 'NativeSessionStorageTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/NativeSessionStorageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11150, 'PhpBridgeSessionStorageTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/PhpBridgeSessionStorageTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11151, 'Proxy', '/vendor/symfony/http-foundation/Tests/Session/Storage', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11152, 'AbstractProxyTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/AbstractProxyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11153, 'NativeProxyTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/NativeProxyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11154, 'SessionHandlerProxyTest.php', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy', '/vendor/symfony/http-foundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11155, 'StreamedResponseTest.php', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/StreamedResponseTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11156, 'schema', '/vendor/symfony/http-foundation/Tests', '/vendor/symfony/http-foundation/Tests/schema', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11157, 'http-status-codes.rng', '/vendor/symfony/http-foundation/Tests/schema', '/vendor/symfony/http-foundation/Tests/schema/http-status-codes.rng', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11158, 'iana-registry.rng', '/vendor/symfony/http-foundation/Tests/schema', '/vendor/symfony/http-foundation/Tests/schema/iana-registry.rng', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11159, 'composer.json', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11160, 'phpunit.xml.dist', '/vendor/symfony/http-foundation', '/vendor/symfony/http-foundation/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11161, 'polyfill-intl-idn', '/vendor/symfony', '/vendor/symfony/polyfill-intl-idn', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11162, 'Idn.php', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/Idn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11163, 'Info.php', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/Info.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11164, 'LICENSE', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11165, 'README.md', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11166, 'Resources', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11167, 'unidata', '/vendor/symfony/polyfill-intl-idn/Resources', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11168, 'DisallowedRanges.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11169, 'Regex.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11170, 'deviation.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11171, 'disallowed.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11172, 'disallowed_STD3_mapped.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11173, 'disallowed_STD3_valid.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11174, 'ignored.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11175, 'mapped.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11176, 'virama.php', '/vendor/symfony/polyfill-intl-idn/Resources/unidata', '/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11177, 'bootstrap.php', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11178, 'composer.json', '/vendor/symfony/polyfill-intl-idn', '/vendor/symfony/polyfill-intl-idn/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11179, 'polyfill-intl-normalizer', '/vendor/symfony', '/vendor/symfony/polyfill-intl-normalizer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11180, 'LICENSE', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11181, 'Normalizer.php', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/Normalizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11182, 'README.md', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11183, 'Resources', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11184, 'stubs', '/vendor/symfony/polyfill-intl-normalizer/Resources', '/vendor/symfony/polyfill-intl-normalizer/Resources/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11185, 'Normalizer.php', '/vendor/symfony/polyfill-intl-normalizer/Resources/stubs', '/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11186, 'unidata', '/vendor/symfony/polyfill-intl-normalizer/Resources', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11187, 'canonicalComposition.php', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11188, 'canonicalDecomposition.php', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11189, 'combiningClass.php', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11190, 'compatibilityDecomposition.php', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata', '/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11191, 'bootstrap.php', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11192, 'composer.json', '/vendor/symfony/polyfill-intl-normalizer', '/vendor/symfony/polyfill-intl-normalizer/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11193, 'polyfill-mbstring', '/vendor/symfony', '/vendor/symfony/polyfill-mbstring', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11194, 'LICENSE', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11195, 'Mbstring.php', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/Mbstring.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11196, 'README.md', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11197, 'Resources', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11198, 'unidata', '/vendor/symfony/polyfill-mbstring/Resources', '/vendor/symfony/polyfill-mbstring/Resources/unidata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11199, 'lowerCase.php', '/vendor/symfony/polyfill-mbstring/Resources/unidata', '/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11200, 'titleCaseRegexp.php', '/vendor/symfony/polyfill-mbstring/Resources/unidata', '/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11201, 'upperCase.php', '/vendor/symfony/polyfill-mbstring/Resources/unidata', '/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11202, 'bootstrap.php', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11203, 'composer.json', '/vendor/symfony/polyfill-mbstring', '/vendor/symfony/polyfill-mbstring/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11204, 'polyfill-php70', '/vendor/symfony', '/vendor/symfony/polyfill-php70', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11205, 'LICENSE', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11206, 'Php70.php', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/Php70.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11207, 'README.md', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11208, 'Resources', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11209, 'stubs', '/vendor/symfony/polyfill-php70/Resources', '/vendor/symfony/polyfill-php70/Resources/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11210, 'ArithmeticError.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/ArithmeticError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11211, 'AssertionError.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/AssertionError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11212, 'DivisionByZeroError.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/DivisionByZeroError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11213, 'Error.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/Error.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11214, 'ParseError.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/ParseError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11215, 'SessionUpdateTimestampHandlerInterface.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/SessionUpdateTimestampHandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11216, 'TypeError.php', '/vendor/symfony/polyfill-php70/Resources/stubs', '/vendor/symfony/polyfill-php70/Resources/stubs/TypeError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11217, 'bootstrap.php', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11218, 'composer.json', '/vendor/symfony/polyfill-php70', '/vendor/symfony/polyfill-php70/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11219, 'polyfill-php72', '/vendor/symfony', '/vendor/symfony/polyfill-php72', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11220, 'LICENSE', '/vendor/symfony/polyfill-php72', '/vendor/symfony/polyfill-php72/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11221, 'Php72.php', '/vendor/symfony/polyfill-php72', '/vendor/symfony/polyfill-php72/Php72.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11222, 'README.md', '/vendor/symfony/polyfill-php72', '/vendor/symfony/polyfill-php72/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11223, 'bootstrap.php', '/vendor/symfony/polyfill-php72', '/vendor/symfony/polyfill-php72/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11224, 'composer.json', '/vendor/symfony/polyfill-php72', '/vendor/symfony/polyfill-php72/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11225, 'process', '/vendor/symfony', '/vendor/symfony/process', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11226, '.gitignore', '/vendor/symfony/process', '/vendor/symfony/process/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11227, 'CHANGELOG.md', '/vendor/symfony/process', '/vendor/symfony/process/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11228, 'Exception', '/vendor/symfony/process', '/vendor/symfony/process/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11229, 'ExceptionInterface.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/ExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11230, 'InvalidArgumentException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11231, 'LogicException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/LogicException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11232, 'ProcessFailedException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/ProcessFailedException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11233, 'ProcessSignaledException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/ProcessSignaledException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11234, 'ProcessTimedOutException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/ProcessTimedOutException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11235, 'RuntimeException.php', '/vendor/symfony/process/Exception', '/vendor/symfony/process/Exception/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11236, 'ExecutableFinder.php', '/vendor/symfony/process', '/vendor/symfony/process/ExecutableFinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11237, 'InputStream.php', '/vendor/symfony/process', '/vendor/symfony/process/InputStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11238, 'LICENSE', '/vendor/symfony/process', '/vendor/symfony/process/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11239, 'PhpExecutableFinder.php', '/vendor/symfony/process', '/vendor/symfony/process/PhpExecutableFinder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11240, 'PhpProcess.php', '/vendor/symfony/process', '/vendor/symfony/process/PhpProcess.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11241, 'Pipes', '/vendor/symfony/process', '/vendor/symfony/process/Pipes', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11242, 'AbstractPipes.php', '/vendor/symfony/process/Pipes', '/vendor/symfony/process/Pipes/AbstractPipes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11243, 'PipesInterface.php', '/vendor/symfony/process/Pipes', '/vendor/symfony/process/Pipes/PipesInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11244, 'UnixPipes.php', '/vendor/symfony/process/Pipes', '/vendor/symfony/process/Pipes/UnixPipes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11245, 'WindowsPipes.php', '/vendor/symfony/process/Pipes', '/vendor/symfony/process/Pipes/WindowsPipes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11246, 'Process.php', '/vendor/symfony/process', '/vendor/symfony/process/Process.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11247, 'ProcessUtils.php', '/vendor/symfony/process', '/vendor/symfony/process/ProcessUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11248, 'README.md', '/vendor/symfony/process', '/vendor/symfony/process/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11249, 'Tests', '/vendor/symfony/process', '/vendor/symfony/process/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11250, 'ErrorProcessInitiator.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/ErrorProcessInitiator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11251, 'ExecutableFinderTest.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/ExecutableFinderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11252, 'KillableProcessWithOutput.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/KillableProcessWithOutput.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11253, 'NonStopableProcess.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/NonStopableProcess.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11254, 'PhpExecutableFinderTest.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/PhpExecutableFinderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11255, 'PhpProcessTest.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/PhpProcessTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11256, 'PipeStdinInStdoutStdErrStreamSelect.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11257, 'ProcessFailedExceptionTest.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11258, 'ProcessTest.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/ProcessTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11259, 'SignalListener.php', '/vendor/symfony/process/Tests', '/vendor/symfony/process/Tests/SignalListener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11260, 'composer.json', '/vendor/symfony/process', '/vendor/symfony/process/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11261, 'phpunit.xml.dist', '/vendor/symfony/process', '/vendor/symfony/process/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11262, 'psr-http-message-bridge', '/vendor/symfony', '/vendor/symfony/psr-http-message-bridge', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11263, '.gitignore', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11264, '.php_cs.dist', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/.php_cs.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11265, '.travis.yml', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11266, 'CHANGELOG.md', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11267, 'Factory', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11268, 'DiactorosFactory.php', '/vendor/symfony/psr-http-message-bridge/Factory', '/vendor/symfony/psr-http-message-bridge/Factory/DiactorosFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11269, 'HttpFoundationFactory.php', '/vendor/symfony/psr-http-message-bridge/Factory', '/vendor/symfony/psr-http-message-bridge/Factory/HttpFoundationFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11270, 'PsrHttpFactory.php', '/vendor/symfony/psr-http-message-bridge/Factory', '/vendor/symfony/psr-http-message-bridge/Factory/PsrHttpFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11271, 'HttpFoundationFactoryInterface.php', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/HttpFoundationFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11272, 'HttpMessageFactoryInterface.php', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/HttpMessageFactoryInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11273, 'LICENSE', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11274, 'README.md', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11275, 'Tests', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11276, 'Factory', '/vendor/symfony/psr-http-message-bridge/Tests', '/vendor/symfony/psr-http-message-bridge/Tests/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11277, 'AbstractHttpMessageFactoryTest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Factory', '/vendor/symfony/psr-http-message-bridge/Tests/Factory/AbstractHttpMessageFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11278, 'DiactorosFactoryTest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Factory', '/vendor/symfony/psr-http-message-bridge/Tests/Factory/DiactorosFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11279, 'HttpFoundationFactoryTest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Factory', '/vendor/symfony/psr-http-message-bridge/Tests/Factory/HttpFoundationFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11280, 'PsrHttpFactoryTest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Factory', '/vendor/symfony/psr-http-message-bridge/Tests/Factory/PsrHttpFactoryTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11281, 'Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11282, 'Message.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Message.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11283, 'Response.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11284, 'ServerRequest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/ServerRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11285, 'Stream.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Stream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11286, 'UploadedFile.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/UploadedFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11287, 'Uri.php', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures', '/vendor/symfony/psr-http-message-bridge/Tests/Fixtures/Uri.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11288, 'Functional', '/vendor/symfony/psr-http-message-bridge/Tests', '/vendor/symfony/psr-http-message-bridge/Tests/Functional', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11289, 'CovertTest.php', '/vendor/symfony/psr-http-message-bridge/Tests/Functional', '/vendor/symfony/psr-http-message-bridge/Tests/Functional/CovertTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11290, 'composer.json', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11291, 'phpunit.xml.dist', '/vendor/symfony/psr-http-message-bridge', '/vendor/symfony/psr-http-message-bridge/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11292, 'translation', '/vendor/symfony', '/vendor/symfony/translation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11293, '.gitignore', '/vendor/symfony/translation', '/vendor/symfony/translation/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11294, 'CHANGELOG.md', '/vendor/symfony/translation', '/vendor/symfony/translation/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11295, 'Catalogue', '/vendor/symfony/translation', '/vendor/symfony/translation/Catalogue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11296, 'AbstractOperation.php', '/vendor/symfony/translation/Catalogue', '/vendor/symfony/translation/Catalogue/AbstractOperation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11297, 'MergeOperation.php', '/vendor/symfony/translation/Catalogue', '/vendor/symfony/translation/Catalogue/MergeOperation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11298, 'OperationInterface.php', '/vendor/symfony/translation/Catalogue', '/vendor/symfony/translation/Catalogue/OperationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11299, 'TargetOperation.php', '/vendor/symfony/translation/Catalogue', '/vendor/symfony/translation/Catalogue/TargetOperation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11300, 'Command', '/vendor/symfony/translation', '/vendor/symfony/translation/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11301, 'XliffLintCommand.php', '/vendor/symfony/translation/Command', '/vendor/symfony/translation/Command/XliffLintCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11302, 'DataCollector', '/vendor/symfony/translation', '/vendor/symfony/translation/DataCollector', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11303, 'TranslationDataCollector.php', '/vendor/symfony/translation/DataCollector', '/vendor/symfony/translation/DataCollector/TranslationDataCollector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11304, 'DataCollectorTranslator.php', '/vendor/symfony/translation', '/vendor/symfony/translation/DataCollectorTranslator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11305, 'DependencyInjection', '/vendor/symfony/translation', '/vendor/symfony/translation/DependencyInjection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11306, 'TranslationDumperPass.php', '/vendor/symfony/translation/DependencyInjection', '/vendor/symfony/translation/DependencyInjection/TranslationDumperPass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11307, 'TranslationExtractorPass.php', '/vendor/symfony/translation/DependencyInjection', '/vendor/symfony/translation/DependencyInjection/TranslationExtractorPass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11308, 'TranslatorPass.php', '/vendor/symfony/translation/DependencyInjection', '/vendor/symfony/translation/DependencyInjection/TranslatorPass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11309, 'TranslatorPathsPass.php', '/vendor/symfony/translation/DependencyInjection', '/vendor/symfony/translation/DependencyInjection/TranslatorPathsPass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11310, 'Dumper', '/vendor/symfony/translation', '/vendor/symfony/translation/Dumper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11311, 'CsvFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/CsvFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11312, 'DumperInterface.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/DumperInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11313, 'FileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/FileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11314, 'IcuResFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/IcuResFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11315, 'IniFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/IniFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11316, 'JsonFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/JsonFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11317, 'MoFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/MoFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11318, 'PhpFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/PhpFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11319, 'PoFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/PoFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11320, 'QtFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/QtFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11321, 'XliffFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/XliffFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11322, 'YamlFileDumper.php', '/vendor/symfony/translation/Dumper', '/vendor/symfony/translation/Dumper/YamlFileDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11323, 'Exception', '/vendor/symfony/translation', '/vendor/symfony/translation/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11324, 'ExceptionInterface.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/ExceptionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11325, 'InvalidArgumentException.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11326, 'InvalidResourceException.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/InvalidResourceException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11327, 'LogicException.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/LogicException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11328, 'NotFoundResourceException.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/NotFoundResourceException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11329, 'RuntimeException.php', '/vendor/symfony/translation/Exception', '/vendor/symfony/translation/Exception/RuntimeException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11330, 'Extractor', '/vendor/symfony/translation', '/vendor/symfony/translation/Extractor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11331, 'AbstractFileExtractor.php', '/vendor/symfony/translation/Extractor', '/vendor/symfony/translation/Extractor/AbstractFileExtractor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11332, 'ChainExtractor.php', '/vendor/symfony/translation/Extractor', '/vendor/symfony/translation/Extractor/ChainExtractor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11333, 'ExtractorInterface.php', '/vendor/symfony/translation/Extractor', '/vendor/symfony/translation/Extractor/ExtractorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11334, 'PhpExtractor.php', '/vendor/symfony/translation/Extractor', '/vendor/symfony/translation/Extractor/PhpExtractor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11335, 'PhpStringTokenParser.php', '/vendor/symfony/translation/Extractor', '/vendor/symfony/translation/Extractor/PhpStringTokenParser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11336, 'Formatter', '/vendor/symfony/translation', '/vendor/symfony/translation/Formatter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11337, 'ChoiceMessageFormatterInterface.php', '/vendor/symfony/translation/Formatter', '/vendor/symfony/translation/Formatter/ChoiceMessageFormatterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11338, 'IntlFormatter.php', '/vendor/symfony/translation/Formatter', '/vendor/symfony/translation/Formatter/IntlFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11339, 'IntlFormatterInterface.php', '/vendor/symfony/translation/Formatter', '/vendor/symfony/translation/Formatter/IntlFormatterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11340, 'MessageFormatter.php', '/vendor/symfony/translation/Formatter', '/vendor/symfony/translation/Formatter/MessageFormatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11341, 'MessageFormatterInterface.php', '/vendor/symfony/translation/Formatter', '/vendor/symfony/translation/Formatter/MessageFormatterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11342, 'IdentityTranslator.php', '/vendor/symfony/translation', '/vendor/symfony/translation/IdentityTranslator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11343, 'Interval.php', '/vendor/symfony/translation', '/vendor/symfony/translation/Interval.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11344, 'LICENSE', '/vendor/symfony/translation', '/vendor/symfony/translation/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11345, 'Loader', '/vendor/symfony/translation', '/vendor/symfony/translation/Loader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11346, 'ArrayLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/ArrayLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11347, 'CsvFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/CsvFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11348, 'FileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/FileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11349, 'IcuDatFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/IcuDatFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11350, 'IcuResFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/IcuResFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11351, 'IniFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/IniFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11352, 'JsonFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/JsonFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11353, 'LoaderInterface.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/LoaderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11354, 'MoFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/MoFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11355, 'PhpFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/PhpFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11356, 'PoFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/PoFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11357, 'QtFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/QtFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11358, 'XliffFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/XliffFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11359, 'YamlFileLoader.php', '/vendor/symfony/translation/Loader', '/vendor/symfony/translation/Loader/YamlFileLoader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11360, 'LoggingTranslator.php', '/vendor/symfony/translation', '/vendor/symfony/translation/LoggingTranslator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11361, 'MessageCatalogue.php', '/vendor/symfony/translation', '/vendor/symfony/translation/MessageCatalogue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11362, 'MessageCatalogueInterface.php', '/vendor/symfony/translation', '/vendor/symfony/translation/MessageCatalogueInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11363, 'MessageSelector.php', '/vendor/symfony/translation', '/vendor/symfony/translation/MessageSelector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11364, 'MetadataAwareInterface.php', '/vendor/symfony/translation', '/vendor/symfony/translation/MetadataAwareInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11365, 'PluralizationRules.php', '/vendor/symfony/translation', '/vendor/symfony/translation/PluralizationRules.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11366, 'README.md', '/vendor/symfony/translation', '/vendor/symfony/translation/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11367, 'Reader', '/vendor/symfony/translation', '/vendor/symfony/translation/Reader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11368, 'TranslationReader.php', '/vendor/symfony/translation/Reader', '/vendor/symfony/translation/Reader/TranslationReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11369, 'TranslationReaderInterface.php', '/vendor/symfony/translation/Reader', '/vendor/symfony/translation/Reader/TranslationReaderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11370, 'Resources', '/vendor/symfony/translation', '/vendor/symfony/translation/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11371, 'bin', '/vendor/symfony/translation/Resources', '/vendor/symfony/translation/Resources/bin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11372, 'translation-status.php', '/vendor/symfony/translation/Resources/bin', '/vendor/symfony/translation/Resources/bin/translation-status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11373, 'data', '/vendor/symfony/translation/Resources', '/vendor/symfony/translation/Resources/data', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11374, 'parents.json', '/vendor/symfony/translation/Resources/data', '/vendor/symfony/translation/Resources/data/parents.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11375, 'schemas', '/vendor/symfony/translation/Resources', '/vendor/symfony/translation/Resources/schemas', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11376, 'xliff-core-1.2-strict.xsd', '/vendor/symfony/translation/Resources/schemas', '/vendor/symfony/translation/Resources/schemas/xliff-core-1.2-strict.xsd', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11377, 'xliff-core-2.0.xsd', '/vendor/symfony/translation/Resources/schemas', '/vendor/symfony/translation/Resources/schemas/xliff-core-2.0.xsd', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11378, 'xml.xsd', '/vendor/symfony/translation/Resources/schemas', '/vendor/symfony/translation/Resources/schemas/xml.xsd', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11379, 'Tests', '/vendor/symfony/translation', '/vendor/symfony/translation/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11380, 'Catalogue', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Catalogue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11381, 'AbstractOperationTest.php', '/vendor/symfony/translation/Tests/Catalogue', '/vendor/symfony/translation/Tests/Catalogue/AbstractOperationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11382, 'MergeOperationTest.php', '/vendor/symfony/translation/Tests/Catalogue', '/vendor/symfony/translation/Tests/Catalogue/MergeOperationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11383, 'TargetOperationTest.php', '/vendor/symfony/translation/Tests/Catalogue', '/vendor/symfony/translation/Tests/Catalogue/TargetOperationTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11384, 'Command', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11385, 'XliffLintCommandTest.php', '/vendor/symfony/translation/Tests/Command', '/vendor/symfony/translation/Tests/Command/XliffLintCommandTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11386, 'DataCollector', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/DataCollector', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11387, 'TranslationDataCollectorTest.php', '/vendor/symfony/translation/Tests/DataCollector', '/vendor/symfony/translation/Tests/DataCollector/TranslationDataCollectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11388, 'DataCollectorTranslatorTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/DataCollectorTranslatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11389, 'DependencyInjection', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/DependencyInjection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11390, 'TranslationDumperPassTest.php', '/vendor/symfony/translation/Tests/DependencyInjection', '/vendor/symfony/translation/Tests/DependencyInjection/TranslationDumperPassTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11391, 'TranslationExtractorPassTest.php', '/vendor/symfony/translation/Tests/DependencyInjection', '/vendor/symfony/translation/Tests/DependencyInjection/TranslationExtractorPassTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11392, 'TranslationPassTest.php', '/vendor/symfony/translation/Tests/DependencyInjection', '/vendor/symfony/translation/Tests/DependencyInjection/TranslationPassTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11393, 'TranslationPathsPassTest.php', '/vendor/symfony/translation/Tests/DependencyInjection', '/vendor/symfony/translation/Tests/DependencyInjection/TranslationPathsPassTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11394, 'fixtures', '/vendor/symfony/translation/Tests/DependencyInjection', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11395, 'ControllerArguments.php', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ControllerArguments.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11396, 'ServiceArguments.php', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ServiceArguments.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11397, 'ServiceMethodCalls.php', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ServiceMethodCalls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11398, 'ServiceProperties.php', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ServiceProperties.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11399, 'ServiceSubscriber.php', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures', '/vendor/symfony/translation/Tests/DependencyInjection/fixtures/ServiceSubscriber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11400, 'Dumper', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Dumper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11401, 'CsvFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/CsvFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11402, 'FileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/FileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11403, 'IcuResFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/IcuResFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11404, 'IniFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/IniFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11405, 'JsonFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/JsonFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11406, 'MoFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/MoFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11407, 'PhpFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/PhpFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11408, 'PoFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/PoFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11409, 'QtFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/QtFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11410, 'XliffFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/XliffFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11411, 'YamlFileDumperTest.php', '/vendor/symfony/translation/Tests/Dumper', '/vendor/symfony/translation/Tests/Dumper/YamlFileDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11412, 'Extractor', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Extractor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11413, 'PhpExtractorTest.php', '/vendor/symfony/translation/Tests/Extractor', '/vendor/symfony/translation/Tests/Extractor/PhpExtractorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11414, 'Formatter', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Formatter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11415, 'IntlFormatterTest.php', '/vendor/symfony/translation/Tests/Formatter', '/vendor/symfony/translation/Tests/Formatter/IntlFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11416, 'MessageFormatterTest.php', '/vendor/symfony/translation/Tests/Formatter', '/vendor/symfony/translation/Tests/Formatter/MessageFormatterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11417, 'IdentityTranslatorTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/IdentityTranslatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11418, 'IntervalTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/IntervalTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11419, 'Loader', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Loader', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11420, 'CsvFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/CsvFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11421, 'IcuDatFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/IcuDatFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11422, 'IcuResFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/IcuResFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11423, 'IniFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/IniFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11424, 'JsonFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/JsonFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11425, 'LocalizedTestCase.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/LocalizedTestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11426, 'MoFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/MoFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11427, 'PhpFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11428, 'PoFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/PoFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11429, 'QtFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/QtFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11430, 'XliffFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/XliffFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11431, 'YamlFileLoaderTest.php', '/vendor/symfony/translation/Tests/Loader', '/vendor/symfony/translation/Tests/Loader/YamlFileLoaderTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11432, 'LoggingTranslatorTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/LoggingTranslatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11433, 'MessageCatalogueTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/MessageCatalogueTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11434, 'MessageSelectorTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/MessageSelectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11435, 'PluralizationRulesTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/PluralizationRulesTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11436, 'TranslatorCacheTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/TranslatorCacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11437, 'TranslatorTest.php', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/TranslatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11438, 'Util', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11439, 'ArrayConverterTest.php', '/vendor/symfony/translation/Tests/Util', '/vendor/symfony/translation/Tests/Util/ArrayConverterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11440, 'Writer', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/Writer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11441, 'TranslationWriterTest.php', '/vendor/symfony/translation/Tests/Writer', '/vendor/symfony/translation/Tests/Writer/TranslationWriterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11442, 'fixtures', '/vendor/symfony/translation/Tests', '/vendor/symfony/translation/Tests/fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11443, 'empty-translation.mo', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty-translation.mo', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11444, 'empty-translation.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty-translation.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11445, 'empty.csv', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.csv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11446, 'empty.ini', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.ini', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11447, 'empty.json', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11448, 'empty.mo', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.mo', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11449, 'empty.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11450, 'empty.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11451, 'empty.yml', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/empty.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11452, 'encoding.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/encoding.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11453, 'escaped-id-plurals.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/escaped-id-plurals.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11454, 'escaped-id.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/escaped-id.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11455, 'extractor', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/extractor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11456, 'resource.format.engine', '/vendor/symfony/translation/Tests/fixtures/extractor', '/vendor/symfony/translation/Tests/fixtures/extractor/resource.format.engine', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11457, 'this.is.a.template.format.engine', '/vendor/symfony/translation/Tests/fixtures/extractor', '/vendor/symfony/translation/Tests/fixtures/extractor/this.is.a.template.format.engine', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11458, 'translation.html.php', '/vendor/symfony/translation/Tests/fixtures/extractor', '/vendor/symfony/translation/Tests/fixtures/extractor/translation.html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11459, 'fuzzy-translations.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/fuzzy-translations.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11460, 'invalid-xml-resources.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/invalid-xml-resources.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11461, 'malformed.json', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/malformed.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11462, 'messages.yml', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/messages.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11463, 'messages_linear.yml', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/messages_linear.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11464, 'non-valid.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/non-valid.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11465, 'non-valid.yml', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/non-valid.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11466, 'plurals.mo', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/plurals.mo', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11467, 'plurals.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/plurals.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11468, 'resname.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resname.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11469, 'resourcebundle', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resourcebundle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11470, 'corrupted', '/vendor/symfony/translation/Tests/fixtures/resourcebundle', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11471, 'resources.dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/corrupted/resources.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11472, 'dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11473, 'en.res', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.res', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11474, 'en.txt', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/en.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11475, 'fr.res', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.res', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11476, 'fr.txt', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/fr.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11477, 'packagelist.txt', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/packagelist.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11478, 'resources.dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/dat/resources.dat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11479, 'res', '/vendor/symfony/translation/Tests/fixtures/resourcebundle', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/res', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11480, 'en.res', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/res', '/vendor/symfony/translation/Tests/fixtures/resourcebundle/res/en.res', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11481, 'resources-2.0+intl-icu.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-2.0+intl-icu.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11482, 'resources-2.0-clean.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-2.0-clean.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11483, 'resources-2.0-multi-segment-unit.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-2.0-multi-segment-unit.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11484, 'resources-2.0.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-2.0.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11485, 'resources-clean.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-clean.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11486, 'resources-multi-files.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-multi-files.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11487, 'resources-notes-meta.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-notes-meta.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11488, 'resources-target-attributes.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-target-attributes.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11489, 'resources-tool-info.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources-tool-info.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11490, 'resources.csv', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.csv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11491, 'resources.dump.json', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.dump.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11492, 'resources.ini', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.ini', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11493, 'resources.json', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11494, 'resources.mo', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.mo', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11495, 'resources.php', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11496, 'resources.po', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.po', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11497, 'resources.ts', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.ts', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11498, 'resources.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11499, 'resources.yml', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/resources.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11500, 'valid.csv', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/valid.csv', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11501, 'with-attributes.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/with-attributes.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11502, 'withdoctype.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/withdoctype.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11503, 'withnote.xlf', '/vendor/symfony/translation/Tests/fixtures', '/vendor/symfony/translation/Tests/fixtures/withnote.xlf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11504, 'Translator.php', '/vendor/symfony/translation', '/vendor/symfony/translation/Translator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11505, 'TranslatorBagInterface.php', '/vendor/symfony/translation', '/vendor/symfony/translation/TranslatorBagInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11506, 'TranslatorInterface.php', '/vendor/symfony/translation', '/vendor/symfony/translation/TranslatorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11507, 'Util', '/vendor/symfony/translation', '/vendor/symfony/translation/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11508, 'ArrayConverter.php', '/vendor/symfony/translation/Util', '/vendor/symfony/translation/Util/ArrayConverter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11509, 'XliffUtils.php', '/vendor/symfony/translation/Util', '/vendor/symfony/translation/Util/XliffUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11510, 'Writer', '/vendor/symfony/translation', '/vendor/symfony/translation/Writer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11511, 'TranslationWriter.php', '/vendor/symfony/translation/Writer', '/vendor/symfony/translation/Writer/TranslationWriter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11512, 'TranslationWriterInterface.php', '/vendor/symfony/translation/Writer', '/vendor/symfony/translation/Writer/TranslationWriterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11513, 'composer.json', '/vendor/symfony/translation', '/vendor/symfony/translation/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11514, 'phpunit.xml.dist', '/vendor/symfony/translation', '/vendor/symfony/translation/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11515, 'translation-contracts', '/vendor/symfony', '/vendor/symfony/translation-contracts', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11516, 'LICENSE', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11517, 'LocaleAwareInterface.php', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/LocaleAwareInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11518, 'README.md', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11519, 'Test', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/Test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11520, 'TranslatorTest.php', '/vendor/symfony/translation-contracts/Test', '/vendor/symfony/translation-contracts/Test/TranslatorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11521, 'TranslatorInterface.php', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/TranslatorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11522, 'TranslatorTrait.php', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/TranslatorTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11523, 'composer.json', '/vendor/symfony/translation-contracts', '/vendor/symfony/translation-contracts/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11524, 'var-dumper', '/vendor/symfony', '/vendor/symfony/var-dumper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11525, '.gitignore', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11526, 'CHANGELOG.md', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11527, 'Caster', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Caster', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11528, 'AmqpCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/AmqpCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11529, 'ArgsStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ArgsStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11530, 'Caster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/Caster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11531, 'ClassStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ClassStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11532, 'ConstStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ConstStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11533, 'CutArrayStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/CutArrayStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11534, 'CutStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/CutStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11535, 'DOMCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/DOMCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11536, 'DateCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/DateCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11537, 'DoctrineCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/DoctrineCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11538, 'DsCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/DsCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11539, 'DsPairStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/DsPairStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11540, 'EnumStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/EnumStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11541, 'ExceptionCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ExceptionCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11542, 'FrameStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/FrameStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11543, 'GmpCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/GmpCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11544, 'IntlCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/IntlCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11545, 'LinkStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/LinkStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11546, 'MemcachedCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/MemcachedCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11547, 'PdoCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/PdoCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11548, 'PgSqlCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/PgSqlCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11549, 'ProxyManagerCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ProxyManagerCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11550, 'RedisCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/RedisCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11551, 'ReflectionCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ReflectionCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11552, 'ResourceCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/ResourceCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11553, 'SplCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/SplCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11554, 'StubCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/StubCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11555, 'SymfonyCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/SymfonyCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11556, 'TraceStub.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/TraceStub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11557, 'XmlReaderCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/XmlReaderCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11558, 'XmlResourceCaster.php', '/vendor/symfony/var-dumper/Caster', '/vendor/symfony/var-dumper/Caster/XmlResourceCaster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11559, 'Cloner', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Cloner', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11560, 'AbstractCloner.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/AbstractCloner.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11561, 'ClonerInterface.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/ClonerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11562, 'Cursor.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/Cursor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11563, 'Data.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/Data.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11564, 'DumperInterface.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/DumperInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11565, 'Stub.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/Stub.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11566, 'VarCloner.php', '/vendor/symfony/var-dumper/Cloner', '/vendor/symfony/var-dumper/Cloner/VarCloner.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11567, 'Command', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11568, 'Descriptor', '/vendor/symfony/var-dumper/Command', '/vendor/symfony/var-dumper/Command/Descriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11569, 'CliDescriptor.php', '/vendor/symfony/var-dumper/Command/Descriptor', '/vendor/symfony/var-dumper/Command/Descriptor/CliDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11570, 'DumpDescriptorInterface.php', '/vendor/symfony/var-dumper/Command/Descriptor', '/vendor/symfony/var-dumper/Command/Descriptor/DumpDescriptorInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11571, 'HtmlDescriptor.php', '/vendor/symfony/var-dumper/Command/Descriptor', '/vendor/symfony/var-dumper/Command/Descriptor/HtmlDescriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11572, 'ServerDumpCommand.php', '/vendor/symfony/var-dumper/Command', '/vendor/symfony/var-dumper/Command/ServerDumpCommand.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11573, 'Dumper', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Dumper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11574, 'AbstractDumper.php', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/AbstractDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11575, 'CliDumper.php', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/CliDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11576, 'ContextProvider', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/ContextProvider', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11577, 'CliContextProvider.php', '/vendor/symfony/var-dumper/Dumper/ContextProvider', '/vendor/symfony/var-dumper/Dumper/ContextProvider/CliContextProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11578, 'ContextProviderInterface.php', '/vendor/symfony/var-dumper/Dumper/ContextProvider', '/vendor/symfony/var-dumper/Dumper/ContextProvider/ContextProviderInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11579, 'RequestContextProvider.php', '/vendor/symfony/var-dumper/Dumper/ContextProvider', '/vendor/symfony/var-dumper/Dumper/ContextProvider/RequestContextProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11580, 'SourceContextProvider.php', '/vendor/symfony/var-dumper/Dumper/ContextProvider', '/vendor/symfony/var-dumper/Dumper/ContextProvider/SourceContextProvider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11581, 'DataDumperInterface.php', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/DataDumperInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11582, 'HtmlDumper.php', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/HtmlDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11583, 'ServerDumper.php', '/vendor/symfony/var-dumper/Dumper', '/vendor/symfony/var-dumper/Dumper/ServerDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11584, 'Exception', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11585, 'ThrowingCasterException.php', '/vendor/symfony/var-dumper/Exception', '/vendor/symfony/var-dumper/Exception/ThrowingCasterException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11586, 'LICENSE', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11587, 'README.md', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11588, 'Resources', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Resources', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11589, 'bin', '/vendor/symfony/var-dumper/Resources', '/vendor/symfony/var-dumper/Resources/bin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11590, 'var-dump-server', '/vendor/symfony/var-dumper/Resources/bin', '/vendor/symfony/var-dumper/Resources/bin/var-dump-server', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11591, 'css', '/vendor/symfony/var-dumper/Resources', '/vendor/symfony/var-dumper/Resources/css', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11592, 'htmlDescriptor.css', '/vendor/symfony/var-dumper/Resources/css', '/vendor/symfony/var-dumper/Resources/css/htmlDescriptor.css', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11593, 'functions', '/vendor/symfony/var-dumper/Resources', '/vendor/symfony/var-dumper/Resources/functions', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11594, 'dump.php', '/vendor/symfony/var-dumper/Resources/functions', '/vendor/symfony/var-dumper/Resources/functions/dump.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11595, 'js', '/vendor/symfony/var-dumper/Resources', '/vendor/symfony/var-dumper/Resources/js', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11596, 'htmlDescriptor.js', '/vendor/symfony/var-dumper/Resources/js', '/vendor/symfony/var-dumper/Resources/js/htmlDescriptor.js', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11597, 'Server', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Server', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11598, 'Connection.php', '/vendor/symfony/var-dumper/Server', '/vendor/symfony/var-dumper/Server/Connection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11599, 'DumpServer.php', '/vendor/symfony/var-dumper/Server', '/vendor/symfony/var-dumper/Server/DumpServer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11600, 'Test', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11601, 'VarDumperTestTrait.php', '/vendor/symfony/var-dumper/Test', '/vendor/symfony/var-dumper/Test/VarDumperTestTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11602, 'Tests', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/Tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11603, 'Caster', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Caster', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11604, 'CasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/CasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11605, 'DateCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/DateCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11606, 'ExceptionCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/ExceptionCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11607, 'GmpCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/GmpCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11608, 'IntlCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/IntlCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11609, 'MemcachedCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/MemcachedCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11610, 'PdoCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/PdoCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11611, 'RedisCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/RedisCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11612, 'ReflectionCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/ReflectionCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11613, 'SplCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/SplCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11614, 'StubCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/StubCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11615, 'XmlReaderCasterTest.php', '/vendor/symfony/var-dumper/Tests/Caster', '/vendor/symfony/var-dumper/Tests/Caster/XmlReaderCasterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11616, 'Cloner', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Cloner', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11617, 'DataTest.php', '/vendor/symfony/var-dumper/Tests/Cloner', '/vendor/symfony/var-dumper/Tests/Cloner/DataTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11618, 'VarClonerTest.php', '/vendor/symfony/var-dumper/Tests/Cloner', '/vendor/symfony/var-dumper/Tests/Cloner/VarClonerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11619, 'Command', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11620, 'Descriptor', '/vendor/symfony/var-dumper/Tests/Command', '/vendor/symfony/var-dumper/Tests/Command/Descriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11621, 'CliDescriptorTest.php', '/vendor/symfony/var-dumper/Tests/Command/Descriptor', '/vendor/symfony/var-dumper/Tests/Command/Descriptor/CliDescriptorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11622, 'HtmlDescriptorTest.php', '/vendor/symfony/var-dumper/Tests/Command/Descriptor', '/vendor/symfony/var-dumper/Tests/Command/Descriptor/HtmlDescriptorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11623, 'Dumper', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Dumper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11624, 'CliDumperTest.php', '/vendor/symfony/var-dumper/Tests/Dumper', '/vendor/symfony/var-dumper/Tests/Dumper/CliDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11625, 'FunctionsTest.php', '/vendor/symfony/var-dumper/Tests/Dumper', '/vendor/symfony/var-dumper/Tests/Dumper/FunctionsTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11626, 'HtmlDumperTest.php', '/vendor/symfony/var-dumper/Tests/Dumper', '/vendor/symfony/var-dumper/Tests/Dumper/HtmlDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11627, 'ServerDumperTest.php', '/vendor/symfony/var-dumper/Tests/Dumper', '/vendor/symfony/var-dumper/Tests/Dumper/ServerDumperTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11628, 'Fixtures', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Fixtures', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11629, 'FooInterface.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/FooInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11630, 'GeneratorDemo.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/GeneratorDemo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11631, 'NotLoadableClass.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/NotLoadableClass.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11632, 'Twig.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/Twig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11633, 'dumb-var.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/dumb-var.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11634, 'dump_server.php', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/dump_server.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11635, 'xml_reader.xml', '/vendor/symfony/var-dumper/Tests/Fixtures', '/vendor/symfony/var-dumper/Tests/Fixtures/xml_reader.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11636, 'Server', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Server', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11637, 'ConnectionTest.php', '/vendor/symfony/var-dumper/Tests/Server', '/vendor/symfony/var-dumper/Tests/Server/ConnectionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11638, 'Test', '/vendor/symfony/var-dumper/Tests', '/vendor/symfony/var-dumper/Tests/Test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11639, 'VarDumperTestTraitTest.php', '/vendor/symfony/var-dumper/Tests/Test', '/vendor/symfony/var-dumper/Tests/Test/VarDumperTestTraitTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11640, 'VarDumper.php', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/VarDumper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11641, 'composer.json', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11642, 'phpunit.xml.dist', '/vendor/symfony/var-dumper', '/vendor/symfony/var-dumper/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11643, 'topthink', '/vendor', '/vendor/topthink', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11644, 'framework', '/vendor/topthink', '/vendor/topthink/framework', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11645, '.gitignore', '/vendor/topthink/framework', '/vendor/topthink/framework/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11646, '.travis.yml', '/vendor/topthink/framework', '/vendor/topthink/framework/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11647, 'CONTRIBUTING.md', '/vendor/topthink/framework', '/vendor/topthink/framework/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11648, 'LICENSE.txt', '/vendor/topthink/framework', '/vendor/topthink/framework/LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11649, 'README.md', '/vendor/topthink/framework', '/vendor/topthink/framework/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11650, 'composer.json', '/vendor/topthink/framework', '/vendor/topthink/framework/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11651, 'logo.png', '/vendor/topthink/framework', '/vendor/topthink/framework/logo.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11652, 'phpunit.xml.dist', '/vendor/topthink/framework', '/vendor/topthink/framework/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11653, 'src', '/vendor/topthink/framework', '/vendor/topthink/framework/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11654, 'helper.php', '/vendor/topthink/framework/src', '/vendor/topthink/framework/src/helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11655, 'lang', '/vendor/topthink/framework/src', '/vendor/topthink/framework/src/lang', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11656, 'zh-cn.php', '/vendor/topthink/framework/src/lang', '/vendor/topthink/framework/src/lang/zh-cn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11657, 'think', '/vendor/topthink/framework/src', '/vendor/topthink/framework/src/think', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11658, 'App.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/App.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11659, 'Cache.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11660, 'Config.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11661, 'Console.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Console.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11662, 'Container.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Container.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11663, 'Cookie.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11664, 'Db.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Db.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11665, 'Env.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Env.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11666, 'Event.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11667, 'Exception.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11668, 'Facade.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Facade.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11669, 'File.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11670, 'Http.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Http.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11671, 'Lang.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Lang.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11672, 'Log.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Log.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11673, 'Manager.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Manager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11674, 'Middleware.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Middleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11675, 'Pipeline.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Pipeline.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11676, 'Request.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11677, 'Response.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11678, 'Route.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Route.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11679, 'Service.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11680, 'Session.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11681, 'Validate.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11682, 'View.php', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/View.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11683, 'cache', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/cache', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11684, 'Driver.php', '/vendor/topthink/framework/src/think/cache', '/vendor/topthink/framework/src/think/cache/Driver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11685, 'TagSet.php', '/vendor/topthink/framework/src/think/cache', '/vendor/topthink/framework/src/think/cache/TagSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11686, 'driver', '/vendor/topthink/framework/src/think/cache', '/vendor/topthink/framework/src/think/cache/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11687, 'File.php', '/vendor/topthink/framework/src/think/cache/driver', '/vendor/topthink/framework/src/think/cache/driver/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11688, 'Memcache.php', '/vendor/topthink/framework/src/think/cache/driver', '/vendor/topthink/framework/src/think/cache/driver/Memcache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11689, 'Memcached.php', '/vendor/topthink/framework/src/think/cache/driver', '/vendor/topthink/framework/src/think/cache/driver/Memcached.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11690, 'Redis.php', '/vendor/topthink/framework/src/think/cache/driver', '/vendor/topthink/framework/src/think/cache/driver/Redis.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11691, 'Wincache.php', '/vendor/topthink/framework/src/think/cache/driver', '/vendor/topthink/framework/src/think/cache/driver/Wincache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11692, 'console', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/console', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11693, 'Command.php', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/Command.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11694, 'Input.php', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/Input.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11695, 'LICENSE', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11696, 'Output.php', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/Output.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11697, 'Table.php', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/Table.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11698, 'bin', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/bin', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11699, 'README.md', '/vendor/topthink/framework/src/think/console/bin', '/vendor/topthink/framework/src/think/console/bin/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11700, 'hiddeninput.exe', '/vendor/topthink/framework/src/think/console/bin', '/vendor/topthink/framework/src/think/console/bin/hiddeninput.exe', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11701, 'command', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11702, 'Clear.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/Clear.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11703, 'Help.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/Help.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11704, 'Lists.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/Lists.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11705, 'Make.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/Make.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11706, 'RouteList.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/RouteList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11707, 'RunServer.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/RunServer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11708, 'ServiceDiscover.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/ServiceDiscover.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11709, 'VendorPublish.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/VendorPublish.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11710, 'Version.php', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/Version.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11711, 'make', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/make', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11712, 'Command.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Command.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11713, 'Controller.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Controller.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11714, 'Event.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11715, 'Listener.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Listener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11716, 'Middleware.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Middleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11717, 'Model.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Model.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11718, 'Service.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11719, 'Subscribe.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Subscribe.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11720, 'Validate.php', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11721, 'stubs', '/vendor/topthink/framework/src/think/console/command/make', '/vendor/topthink/framework/src/think/console/command/make/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11722, 'command.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/command.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11723, 'controller.api.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/controller.api.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11724, 'controller.plain.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/controller.plain.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11725, 'controller.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/controller.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11726, 'event.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/event.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11727, 'listener.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/listener.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11728, 'middleware.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/middleware.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11729, 'model.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/model.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11730, 'service.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/service.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11731, 'subscribe.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/subscribe.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11732, 'validate.stub', '/vendor/topthink/framework/src/think/console/command/make/stubs', '/vendor/topthink/framework/src/think/console/command/make/stubs/validate.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11733, 'optimize', '/vendor/topthink/framework/src/think/console/command', '/vendor/topthink/framework/src/think/console/command/optimize', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11734, 'Route.php', '/vendor/topthink/framework/src/think/console/command/optimize', '/vendor/topthink/framework/src/think/console/command/optimize/Route.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11735, 'Schema.php', '/vendor/topthink/framework/src/think/console/command/optimize', '/vendor/topthink/framework/src/think/console/command/optimize/Schema.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11736, 'input', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/input', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11737, 'Argument.php', '/vendor/topthink/framework/src/think/console/input', '/vendor/topthink/framework/src/think/console/input/Argument.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11738, 'Definition.php', '/vendor/topthink/framework/src/think/console/input', '/vendor/topthink/framework/src/think/console/input/Definition.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11739, 'Option.php', '/vendor/topthink/framework/src/think/console/input', '/vendor/topthink/framework/src/think/console/input/Option.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11740, 'output', '/vendor/topthink/framework/src/think/console', '/vendor/topthink/framework/src/think/console/output', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11741, 'Ask.php', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/Ask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11742, 'Descriptor.php', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/Descriptor.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11743, 'Formatter.php', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/Formatter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11744, 'Question.php', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/Question.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11745, 'descriptor', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/descriptor', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11746, 'Console.php', '/vendor/topthink/framework/src/think/console/output/descriptor', '/vendor/topthink/framework/src/think/console/output/descriptor/Console.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11747, 'driver', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11748, 'Buffer.php', '/vendor/topthink/framework/src/think/console/output/driver', '/vendor/topthink/framework/src/think/console/output/driver/Buffer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11749, 'Console.php', '/vendor/topthink/framework/src/think/console/output/driver', '/vendor/topthink/framework/src/think/console/output/driver/Console.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11750, 'Nothing.php', '/vendor/topthink/framework/src/think/console/output/driver', '/vendor/topthink/framework/src/think/console/output/driver/Nothing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11751, 'formatter', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/formatter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11752, 'Stack.php', '/vendor/topthink/framework/src/think/console/output/formatter', '/vendor/topthink/framework/src/think/console/output/formatter/Stack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11753, 'Style.php', '/vendor/topthink/framework/src/think/console/output/formatter', '/vendor/topthink/framework/src/think/console/output/formatter/Style.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11754, 'question', '/vendor/topthink/framework/src/think/console/output', '/vendor/topthink/framework/src/think/console/output/question', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11755, 'Choice.php', '/vendor/topthink/framework/src/think/console/output/question', '/vendor/topthink/framework/src/think/console/output/question/Choice.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11756, 'Confirmation.php', '/vendor/topthink/framework/src/think/console/output/question', '/vendor/topthink/framework/src/think/console/output/question/Confirmation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11757, 'contract', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/contract', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11758, 'CacheHandlerInterface.php', '/vendor/topthink/framework/src/think/contract', '/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11759, 'LogHandlerInterface.php', '/vendor/topthink/framework/src/think/contract', '/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11760, 'ModelRelationInterface.php', '/vendor/topthink/framework/src/think/contract', '/vendor/topthink/framework/src/think/contract/ModelRelationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11761, 'SessionHandlerInterface.php', '/vendor/topthink/framework/src/think/contract', '/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11762, 'TemplateHandlerInterface.php', '/vendor/topthink/framework/src/think/contract', '/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11763, 'event', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/event', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11764, 'AppInit.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/AppInit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11765, 'HttpEnd.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/HttpEnd.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11766, 'HttpRun.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/HttpRun.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11767, 'LogRecord.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/LogRecord.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11768, 'LogWrite.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/LogWrite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11769, 'RouteLoaded.php', '/vendor/topthink/framework/src/think/event', '/vendor/topthink/framework/src/think/event/RouteLoaded.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11770, 'exception', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11771, 'ClassNotFoundException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/ClassNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11772, 'ErrorException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/ErrorException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11773, 'FileException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/FileException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11774, 'FuncNotFoundException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/FuncNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11775, 'Handle.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/Handle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11776, 'HttpException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/HttpException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11777, 'HttpResponseException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/HttpResponseException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11778, 'InvalidArgumentException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11779, 'RouteNotFoundException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/RouteNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11780, 'ValidateException.php', '/vendor/topthink/framework/src/think/exception', '/vendor/topthink/framework/src/think/exception/ValidateException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11781, 'facade', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11782, 'App.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/App.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11783, 'Cache.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11784, 'Config.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11785, 'Console.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Console.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11786, 'Cookie.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Cookie.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11787, 'Env.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Env.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11788, 'Event.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11789, 'Lang.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Lang.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11790, 'Log.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Log.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11791, 'Middleware.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Middleware.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11792, 'Request.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Request.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11793, 'Route.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Route.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11794, 'Session.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Session.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11795, 'Validate.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11796, 'View.php', '/vendor/topthink/framework/src/think/facade', '/vendor/topthink/framework/src/think/facade/View.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11797, 'file', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/file', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11798, 'UploadedFile.php', '/vendor/topthink/framework/src/think/file', '/vendor/topthink/framework/src/think/file/UploadedFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11799, 'initializer', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/initializer', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11800, 'BootService.php', '/vendor/topthink/framework/src/think/initializer', '/vendor/topthink/framework/src/think/initializer/BootService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11801, 'Error.php', '/vendor/topthink/framework/src/think/initializer', '/vendor/topthink/framework/src/think/initializer/Error.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11802, 'RegisterService.php', '/vendor/topthink/framework/src/think/initializer', '/vendor/topthink/framework/src/think/initializer/RegisterService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11803, 'log', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/log', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11804, 'Channel.php', '/vendor/topthink/framework/src/think/log', '/vendor/topthink/framework/src/think/log/Channel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11805, 'ChannelSet.php', '/vendor/topthink/framework/src/think/log', '/vendor/topthink/framework/src/think/log/ChannelSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11806, 'driver', '/vendor/topthink/framework/src/think/log', '/vendor/topthink/framework/src/think/log/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11807, 'File.php', '/vendor/topthink/framework/src/think/log/driver', '/vendor/topthink/framework/src/think/log/driver/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11808, 'Socket.php', '/vendor/topthink/framework/src/think/log/driver', '/vendor/topthink/framework/src/think/log/driver/Socket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11809, 'middleware', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/middleware', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11810, 'AllowCrossDomain.php', '/vendor/topthink/framework/src/think/middleware', '/vendor/topthink/framework/src/think/middleware/AllowCrossDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11811, 'CheckRequestCache.php', '/vendor/topthink/framework/src/think/middleware', '/vendor/topthink/framework/src/think/middleware/CheckRequestCache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11812, 'FormTokenCheck.php', '/vendor/topthink/framework/src/think/middleware', '/vendor/topthink/framework/src/think/middleware/FormTokenCheck.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11813, 'LoadLangPack.php', '/vendor/topthink/framework/src/think/middleware', '/vendor/topthink/framework/src/think/middleware/LoadLangPack.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11814, 'SessionInit.php', '/vendor/topthink/framework/src/think/middleware', '/vendor/topthink/framework/src/think/middleware/SessionInit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11815, 'response', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11816, 'File.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11817, 'Html.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/Html.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11818, 'Json.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/Json.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11819, 'Jsonp.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/Jsonp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11820, 'Redirect.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/Redirect.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11821, 'View.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/View.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11822, 'Xml.php', '/vendor/topthink/framework/src/think/response', '/vendor/topthink/framework/src/think/response/Xml.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11823, 'route', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/route', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11824, 'Dispatch.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/Dispatch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11825, 'Domain.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/Domain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11826, 'Resource.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/Resource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11827, 'Rule.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/Rule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11828, 'RuleGroup.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/RuleGroup.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11829, 'RuleItem.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/RuleItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11830, 'RuleName.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/RuleName.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11831, 'Url.php', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11832, 'dispatch', '/vendor/topthink/framework/src/think/route', '/vendor/topthink/framework/src/think/route/dispatch', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11833, 'Callback.php', '/vendor/topthink/framework/src/think/route/dispatch', '/vendor/topthink/framework/src/think/route/dispatch/Callback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11834, 'Controller.php', '/vendor/topthink/framework/src/think/route/dispatch', '/vendor/topthink/framework/src/think/route/dispatch/Controller.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11835, 'Url.php', '/vendor/topthink/framework/src/think/route/dispatch', '/vendor/topthink/framework/src/think/route/dispatch/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11836, 'service', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/service', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11837, 'ModelService.php', '/vendor/topthink/framework/src/think/service', '/vendor/topthink/framework/src/think/service/ModelService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11838, 'PaginatorService.php', '/vendor/topthink/framework/src/think/service', '/vendor/topthink/framework/src/think/service/PaginatorService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11839, 'ValidateService.php', '/vendor/topthink/framework/src/think/service', '/vendor/topthink/framework/src/think/service/ValidateService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11840, 'session', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/session', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11841, 'Store.php', '/vendor/topthink/framework/src/think/session', '/vendor/topthink/framework/src/think/session/Store.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11842, 'driver', '/vendor/topthink/framework/src/think/session', '/vendor/topthink/framework/src/think/session/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11843, 'Cache.php', '/vendor/topthink/framework/src/think/session/driver', '/vendor/topthink/framework/src/think/session/driver/Cache.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11844, 'File.php', '/vendor/topthink/framework/src/think/session/driver', '/vendor/topthink/framework/src/think/session/driver/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11845, 'validate', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/validate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11846, 'ValidateRule.php', '/vendor/topthink/framework/src/think/validate', '/vendor/topthink/framework/src/think/validate/ValidateRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11847, 'view', '/vendor/topthink/framework/src/think', '/vendor/topthink/framework/src/think/view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11848, 'driver', '/vendor/topthink/framework/src/think/view', '/vendor/topthink/framework/src/think/view/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11849, 'Php.php', '/vendor/topthink/framework/src/think/view/driver', '/vendor/topthink/framework/src/think/view/driver/Php.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11850, 'tpl', '/vendor/topthink/framework/src', '/vendor/topthink/framework/src/tpl', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11851, 'think_exception.tpl', '/vendor/topthink/framework/src/tpl', '/vendor/topthink/framework/src/tpl/think_exception.tpl', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11852, 'tests', '/vendor/topthink/framework', '/vendor/topthink/framework/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11853, 'AppTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/AppTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11854, 'CacheTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/CacheTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11855, 'ConfigTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/ConfigTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11856, 'ContainerTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/ContainerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11857, 'DbTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/DbTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11858, 'DispatchTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/DispatchTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11859, 'EnvTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/EnvTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11860, 'EventTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/EventTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11861, 'HttpTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/HttpTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11862, 'InteractsWithApp.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/InteractsWithApp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11863, 'LogTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/LogTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11864, 'MiddlewareTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/MiddlewareTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11865, 'RouteTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/RouteTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11866, 'SessionTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/SessionTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11867, 'ViewTest.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/ViewTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11868, 'bootstrap.php', '/vendor/topthink/framework/tests', '/vendor/topthink/framework/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11869, 'think-captcha', '/vendor/topthink', '/vendor/topthink/think-captcha', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11870, '.gitignore', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11871, 'LICENSE', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11872, 'README.md', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11873, 'assets', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/assets', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11874, 'bgs', '/vendor/topthink/think-captcha/assets', '/vendor/topthink/think-captcha/assets/bgs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11875, '1.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/1.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11876, '2.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/2.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11877, '3.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/3.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11878, '4.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/4.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11879, '5.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/5.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11880, '6.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/6.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11881, '7.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/7.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11882, '8.jpg', '/vendor/topthink/think-captcha/assets/bgs', '/vendor/topthink/think-captcha/assets/bgs/8.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11883, 'ttfs', '/vendor/topthink/think-captcha/assets', '/vendor/topthink/think-captcha/assets/ttfs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11884, '1.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/1.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11885, '2.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/2.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11886, '3.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/3.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11887, '4.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/4.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11888, '5.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/5.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11889, '6.ttf', '/vendor/topthink/think-captcha/assets/ttfs', '/vendor/topthink/think-captcha/assets/ttfs/6.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11890, 'zhttfs', '/vendor/topthink/think-captcha/assets', '/vendor/topthink/think-captcha/assets/zhttfs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11891, '1.ttf', '/vendor/topthink/think-captcha/assets/zhttfs', '/vendor/topthink/think-captcha/assets/zhttfs/1.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11892, 'composer.json', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11893, 'src', '/vendor/topthink/think-captcha', '/vendor/topthink/think-captcha/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11894, 'Captcha.php', '/vendor/topthink/think-captcha/src', '/vendor/topthink/think-captcha/src/Captcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11895, 'CaptchaController.php', '/vendor/topthink/think-captcha/src', '/vendor/topthink/think-captcha/src/CaptchaController.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11896, 'CaptchaService.php', '/vendor/topthink/think-captcha/src', '/vendor/topthink/think-captcha/src/CaptchaService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11897, 'facade', '/vendor/topthink/think-captcha/src', '/vendor/topthink/think-captcha/src/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11898, 'Captcha.php', '/vendor/topthink/think-captcha/src/facade', '/vendor/topthink/think-captcha/src/facade/Captcha.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11899, 'helper.php', '/vendor/topthink/think-captcha/src', '/vendor/topthink/think-captcha/src/helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11900, 'think-factory', '/vendor/topthink', '/vendor/topthink/think-factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11901, '.gitignore', '/vendor/topthink/think-factory', '/vendor/topthink/think-factory/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11902, 'LICENSE', '/vendor/topthink/think-factory', '/vendor/topthink/think-factory/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11903, 'composer.json', '/vendor/topthink/think-factory', '/vendor/topthink/think-factory/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11904, 'src', '/vendor/topthink/think-factory', '/vendor/topthink/think-factory/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11905, 'Factory.php', '/vendor/topthink/think-factory/src', '/vendor/topthink/think-factory/src/Factory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11906, 'think-filesystem', '/vendor/topthink', '/vendor/topthink/think-filesystem', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11907, '.gitignore', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11908, 'README.md', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11909, 'composer.json', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11910, 'phpunit.xml.dist', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11911, 'src', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11912, 'Filesystem.php', '/vendor/topthink/think-filesystem/src', '/vendor/topthink/think-filesystem/src/Filesystem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11913, 'facade', '/vendor/topthink/think-filesystem/src', '/vendor/topthink/think-filesystem/src/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11914, 'Filesystem.php', '/vendor/topthink/think-filesystem/src/facade', '/vendor/topthink/think-filesystem/src/facade/Filesystem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11915, 'filesystem', '/vendor/topthink/think-filesystem/src', '/vendor/topthink/think-filesystem/src/filesystem', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11916, 'Driver.php', '/vendor/topthink/think-filesystem/src/filesystem', '/vendor/topthink/think-filesystem/src/filesystem/Driver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11917, 'driver', '/vendor/topthink/think-filesystem/src/filesystem', '/vendor/topthink/think-filesystem/src/filesystem/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11918, 'Local.php', '/vendor/topthink/think-filesystem/src/filesystem/driver', '/vendor/topthink/think-filesystem/src/filesystem/driver/Local.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11919, 'tests', '/vendor/topthink/think-filesystem', '/vendor/topthink/think-filesystem/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11920, 'FilesystemTest.php', '/vendor/topthink/think-filesystem/tests', '/vendor/topthink/think-filesystem/tests/FilesystemTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11921, 'bootstrap.php', '/vendor/topthink/think-filesystem/tests', '/vendor/topthink/think-filesystem/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11922, 'think-helper', '/vendor/topthink', '/vendor/topthink/think-helper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11923, '.gitignore', '/vendor/topthink/think-helper', '/vendor/topthink/think-helper/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11924, 'LICENSE', '/vendor/topthink/think-helper', '/vendor/topthink/think-helper/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11925, 'README.md', '/vendor/topthink/think-helper', '/vendor/topthink/think-helper/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11926, 'composer.json', '/vendor/topthink/think-helper', '/vendor/topthink/think-helper/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11927, 'src', '/vendor/topthink/think-helper', '/vendor/topthink/think-helper/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11928, 'Collection.php', '/vendor/topthink/think-helper/src', '/vendor/topthink/think-helper/src/Collection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11929, 'contract', '/vendor/topthink/think-helper/src', '/vendor/topthink/think-helper/src/contract', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11930, 'Arrayable.php', '/vendor/topthink/think-helper/src/contract', '/vendor/topthink/think-helper/src/contract/Arrayable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11931, 'Jsonable.php', '/vendor/topthink/think-helper/src/contract', '/vendor/topthink/think-helper/src/contract/Jsonable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11932, 'helper', '/vendor/topthink/think-helper/src', '/vendor/topthink/think-helper/src/helper', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11933, 'Arr.php', '/vendor/topthink/think-helper/src/helper', '/vendor/topthink/think-helper/src/helper/Arr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11934, 'Str.php', '/vendor/topthink/think-helper/src/helper', '/vendor/topthink/think-helper/src/helper/Str.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11935, 'helper.php', '/vendor/topthink/think-helper/src', '/vendor/topthink/think-helper/src/helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11936, 'think-image', '/vendor/topthink', '/vendor/topthink/think-image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11937, '.gitignore', '/vendor/topthink/think-image', '/vendor/topthink/think-image/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11938, '.travis.yml', '/vendor/topthink/think-image', '/vendor/topthink/think-image/.travis.yml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11939, 'LICENSE', '/vendor/topthink/think-image', '/vendor/topthink/think-image/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11940, 'README.md', '/vendor/topthink/think-image', '/vendor/topthink/think-image/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11941, 'composer.json', '/vendor/topthink/think-image', '/vendor/topthink/think-image/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11942, 'phpunit.xml', '/vendor/topthink/think-image', '/vendor/topthink/think-image/phpunit.xml', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11943, 'src', '/vendor/topthink/think-image', '/vendor/topthink/think-image/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11944, 'Image.php', '/vendor/topthink/think-image/src', '/vendor/topthink/think-image/src/Image.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11945, 'image', '/vendor/topthink/think-image/src', '/vendor/topthink/think-image/src/image', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11946, 'Exception.php', '/vendor/topthink/think-image/src/image', '/vendor/topthink/think-image/src/image/Exception.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11947, 'gif', '/vendor/topthink/think-image/src/image', '/vendor/topthink/think-image/src/image/gif', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11948, 'Decoder.php', '/vendor/topthink/think-image/src/image/gif', '/vendor/topthink/think-image/src/image/gif/Decoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11949, 'Encoder.php', '/vendor/topthink/think-image/src/image/gif', '/vendor/topthink/think-image/src/image/gif/Encoder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11950, 'Gif.php', '/vendor/topthink/think-image/src/image/gif', '/vendor/topthink/think-image/src/image/gif/Gif.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11951, 'tests', '/vendor/topthink/think-image', '/vendor/topthink/think-image/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11952, 'CropTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/CropTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11953, 'FlipTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/FlipTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11954, 'InfoTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/InfoTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11955, 'RotateTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/RotateTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11956, 'TestCase.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/TestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11957, 'TextTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/TextTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11958, 'ThumbTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/ThumbTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11959, 'WaterTest.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/WaterTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11960, 'autoload.php', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/autoload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11961, 'images', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11962, 'test.bmp', '/vendor/topthink/think-image/tests/images', '/vendor/topthink/think-image/tests/images/test.bmp', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11963, 'test.gif', '/vendor/topthink/think-image/tests/images', '/vendor/topthink/think-image/tests/images/test.gif', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11964, 'test.jpg', '/vendor/topthink/think-image/tests/images', '/vendor/topthink/think-image/tests/images/test.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11965, 'test.png', '/vendor/topthink/think-image/tests/images', '/vendor/topthink/think-image/tests/images/test.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11966, 'test.ttf', '/vendor/topthink/think-image/tests/images', '/vendor/topthink/think-image/tests/images/test.ttf', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11967, 'tmp', '/vendor/topthink/think-image/tests', '/vendor/topthink/think-image/tests/tmp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11968, '.gitignore', '/vendor/topthink/think-image/tests/tmp', '/vendor/topthink/think-image/tests/tmp/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11969, 'think-migration', '/vendor/topthink', '/vendor/topthink/think-migration', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11970, '.gitignore', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11971, 'LICENSE', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11972, 'README.md', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11973, 'composer.json', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11974, 'phinx', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/phinx', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11975, 'CHANGELOG.md', '/vendor/topthink/think-migration/phinx', '/vendor/topthink/think-migration/phinx/CHANGELOG.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11976, 'CONTRIBUTING.md', '/vendor/topthink/think-migration/phinx', '/vendor/topthink/think-migration/phinx/CONTRIBUTING.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11977, 'LICENSE', '/vendor/topthink/think-migration/phinx', '/vendor/topthink/think-migration/phinx/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11978, 'README.md', '/vendor/topthink/think-migration/phinx', '/vendor/topthink/think-migration/phinx/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11979, 'src', '/vendor/topthink/think-migration/phinx', '/vendor/topthink/think-migration/phinx/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11980, 'Phinx', '/vendor/topthink/think-migration/phinx/src', '/vendor/topthink/think-migration/phinx/src/Phinx', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11981, 'Db', '/vendor/topthink/think-migration/phinx/src/Phinx', '/vendor/topthink/think-migration/phinx/src/Phinx/Db', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11982, 'Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11983, 'AdapterFactory.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/AdapterFactory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11984, 'AdapterInterface.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/AdapterInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11985, 'AdapterWrapper.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/AdapterWrapper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11986, 'MysqlAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/MysqlAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11987, 'PdoAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/PdoAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11988, 'PostgresAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/PostgresAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11989, 'ProxyAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/ProxyAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11990, 'SQLiteAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/SQLiteAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11991, 'SqlServerAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/SqlServerAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11992, 'TablePrefixAdapter.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/TablePrefixAdapter.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11993, 'WrapperInterface.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Adapter/WrapperInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11994, 'Table', '/vendor/topthink/think-migration/phinx/src/Phinx/Db', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11995, 'Column.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11996, 'ForeignKey.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table/ForeignKey.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11997, 'Index.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table/Index.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11998, 'Table.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Db', '/vendor/topthink/think-migration/phinx/src/Phinx/Db/Table.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(11999, 'Migration', '/vendor/topthink/think-migration/phinx/src/Phinx', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12000, 'AbstractMigration.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/AbstractMigration.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12001, 'AbstractTemplateCreation.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/AbstractTemplateCreation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12002, 'CreationInterface.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/CreationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12003, 'IrreversibleMigrationException.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/IrreversibleMigrationException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12004, 'Migration.template.php.dist', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/Migration.template.php.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12005, 'MigrationInterface.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration', '/vendor/topthink/think-migration/phinx/src/Phinx/Migration/MigrationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12006, 'Seed', '/vendor/topthink/think-migration/phinx/src/Phinx', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12007, 'AbstractSeed.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed/AbstractSeed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12008, 'Seed.template.php.dist', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed/Seed.template.php.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12009, 'SeedInterface.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed', '/vendor/topthink/think-migration/phinx/src/Phinx/Seed/SeedInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12010, 'Util', '/vendor/topthink/think-migration/phinx/src/Phinx', '/vendor/topthink/think-migration/phinx/src/Phinx/Util', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12011, 'Util.php', '/vendor/topthink/think-migration/phinx/src/Phinx/Util', '/vendor/topthink/think-migration/phinx/src/Phinx/Util/Util.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12012, 'src', '/vendor/topthink/think-migration', '/vendor/topthink/think-migration/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12013, 'Command.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Command.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12014, 'Creator.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Creator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12015, 'Factory.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Factory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12016, 'FactoryBuilder.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/FactoryBuilder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12017, 'Migrator.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Migrator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12018, 'Seeder.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Seeder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12019, 'Service.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12020, 'command', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12021, 'Migrate.php', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/Migrate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12022, 'Seed.php', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/Seed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12023, 'factory', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12024, 'Create.php', '/vendor/topthink/think-migration/src/command/factory', '/vendor/topthink/think-migration/src/command/factory/Create.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12025, 'migrate', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/migrate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12026, 'Breakpoint.php', '/vendor/topthink/think-migration/src/command/migrate', '/vendor/topthink/think-migration/src/command/migrate/Breakpoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12027, 'Create.php', '/vendor/topthink/think-migration/src/command/migrate', '/vendor/topthink/think-migration/src/command/migrate/Create.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12028, 'Rollback.php', '/vendor/topthink/think-migration/src/command/migrate', '/vendor/topthink/think-migration/src/command/migrate/Rollback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12029, 'Run.php', '/vendor/topthink/think-migration/src/command/migrate', '/vendor/topthink/think-migration/src/command/migrate/Run.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12030, 'Status.php', '/vendor/topthink/think-migration/src/command/migrate', '/vendor/topthink/think-migration/src/command/migrate/Status.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12031, 'seed', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/seed', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12032, 'Create.php', '/vendor/topthink/think-migration/src/command/seed', '/vendor/topthink/think-migration/src/command/seed/Create.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12033, 'Run.php', '/vendor/topthink/think-migration/src/command/seed', '/vendor/topthink/think-migration/src/command/seed/Run.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12034, 'stubs', '/vendor/topthink/think-migration/src/command', '/vendor/topthink/think-migration/src/command/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12035, 'factory.stub', '/vendor/topthink/think-migration/src/command/stubs', '/vendor/topthink/think-migration/src/command/stubs/factory.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12036, 'migrate.stub', '/vendor/topthink/think-migration/src/command/stubs', '/vendor/topthink/think-migration/src/command/stubs/migrate.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12037, 'seed.stub', '/vendor/topthink/think-migration/src/command/stubs', '/vendor/topthink/think-migration/src/command/stubs/seed.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12038, 'db', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/db', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12039, 'Column.php', '/vendor/topthink/think-migration/src/db', '/vendor/topthink/think-migration/src/db/Column.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12040, 'Table.php', '/vendor/topthink/think-migration/src/db', '/vendor/topthink/think-migration/src/db/Table.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12041, 'helper.php', '/vendor/topthink/think-migration/src', '/vendor/topthink/think-migration/src/helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12042, 'think-multi-app', '/vendor/topthink', '/vendor/topthink/think-multi-app', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12043, 'LICENSE', '/vendor/topthink/think-multi-app', '/vendor/topthink/think-multi-app/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12044, 'README.md', '/vendor/topthink/think-multi-app', '/vendor/topthink/think-multi-app/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12045, 'composer.json', '/vendor/topthink/think-multi-app', '/vendor/topthink/think-multi-app/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12046, 'src', '/vendor/topthink/think-multi-app', '/vendor/topthink/think-multi-app/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12047, 'MultiApp.php', '/vendor/topthink/think-multi-app/src', '/vendor/topthink/think-multi-app/src/MultiApp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12048, 'Service.php', '/vendor/topthink/think-multi-app/src', '/vendor/topthink/think-multi-app/src/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12049, 'Url.php', '/vendor/topthink/think-multi-app/src', '/vendor/topthink/think-multi-app/src/Url.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12050, 'command', '/vendor/topthink/think-multi-app/src', '/vendor/topthink/think-multi-app/src/command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12051, 'Build.php', '/vendor/topthink/think-multi-app/src/command', '/vendor/topthink/think-multi-app/src/command/Build.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12052, 'Clear.php', '/vendor/topthink/think-multi-app/src/command', '/vendor/topthink/think-multi-app/src/command/Clear.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12053, 'stubs', '/vendor/topthink/think-multi-app/src/command', '/vendor/topthink/think-multi-app/src/command/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12054, 'controller.stub', '/vendor/topthink/think-multi-app/src/command/stubs', '/vendor/topthink/think-multi-app/src/command/stubs/controller.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12055, 'think-orm', '/vendor/topthink', '/vendor/topthink/think-orm', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12056, '.gitignore', '/vendor/topthink/think-orm', '/vendor/topthink/think-orm/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12057, 'LICENSE', '/vendor/topthink/think-orm', '/vendor/topthink/think-orm/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12058, 'README.md', '/vendor/topthink/think-orm', '/vendor/topthink/think-orm/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12059, 'composer.json', '/vendor/topthink/think-orm', '/vendor/topthink/think-orm/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12060, 'src', '/vendor/topthink/think-orm', '/vendor/topthink/think-orm/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12061, 'DbManager.php', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/DbManager.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12062, 'Model.php', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/Model.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12063, 'Paginator.php', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/Paginator.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12064, 'db', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/db', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12065, 'BaseQuery.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/BaseQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12066, 'Builder.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Builder.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12067, 'CacheItem.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/CacheItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12068, 'Connection.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Connection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12069, 'ConnectionInterface.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/ConnectionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12070, 'Fetch.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Fetch.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12071, 'Mongo.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Mongo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12072, 'PDOConnection.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/PDOConnection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12073, 'Query.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Query.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12074, 'Raw.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Raw.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12075, 'Where.php', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/Where.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12076, 'builder', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/builder', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12077, 'Mongo.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Mongo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12078, 'Mysql.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Mysql.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12079, 'Oracle.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Oracle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12080, 'Pgsql.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Pgsql.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12081, 'Sqlite.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Sqlite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12082, 'Sqlsrv.php', '/vendor/topthink/think-orm/src/db/builder', '/vendor/topthink/think-orm/src/db/builder/Sqlsrv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12083, 'concern', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/concern', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12084, 'AggregateQuery.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12085, 'JoinAndViewQuery.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12086, 'ModelRelationQuery.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12087, 'ParamsBind.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/ParamsBind.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12088, 'ResultOperation.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/ResultOperation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12089, 'TableFieldInfo.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12090, 'TimeFieldQuery.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12091, 'Transaction.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/Transaction.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12092, 'WhereQuery.php', '/vendor/topthink/think-orm/src/db/concern', '/vendor/topthink/think-orm/src/db/concern/WhereQuery.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12093, 'connector', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/connector', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12094, 'Mongo.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Mongo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12095, 'Mysql.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Mysql.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12096, 'Oracle.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Oracle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12097, 'Pgsql.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Pgsql.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12098, 'Sqlite.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Sqlite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12099, 'Sqlsrv.php', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/Sqlsrv.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12100, 'pgsql.sql', '/vendor/topthink/think-orm/src/db/connector', '/vendor/topthink/think-orm/src/db/connector/pgsql.sql', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12101, 'exception', '/vendor/topthink/think-orm/src/db', '/vendor/topthink/think-orm/src/db/exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12102, 'BindParamException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/BindParamException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12103, 'DataNotFoundException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/DataNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12104, 'DbException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/DbException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12105, 'InvalidArgumentException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/InvalidArgumentException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12106, 'ModelEventException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/ModelEventException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12107, 'ModelNotFoundException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/ModelNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12108, 'PDOException.php', '/vendor/topthink/think-orm/src/db/exception', '/vendor/topthink/think-orm/src/db/exception/PDOException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12109, 'facade', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12110, 'Db.php', '/vendor/topthink/think-orm/src/facade', '/vendor/topthink/think-orm/src/facade/Db.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12111, 'model', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/model', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12112, 'Collection.php', '/vendor/topthink/think-orm/src/model', '/vendor/topthink/think-orm/src/model/Collection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12113, 'Pivot.php', '/vendor/topthink/think-orm/src/model', '/vendor/topthink/think-orm/src/model/Pivot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12114, 'Relation.php', '/vendor/topthink/think-orm/src/model', '/vendor/topthink/think-orm/src/model/Relation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12115, 'concern', '/vendor/topthink/think-orm/src/model', '/vendor/topthink/think-orm/src/model/concern', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12116, 'Attribute.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/Attribute.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12117, 'Conversion.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/Conversion.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12118, 'ModelEvent.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/ModelEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12119, 'OptimLock.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/OptimLock.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12120, 'RelationShip.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/RelationShip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12121, 'SoftDelete.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/SoftDelete.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12122, 'TimeStamp.php', '/vendor/topthink/think-orm/src/model/concern', '/vendor/topthink/think-orm/src/model/concern/TimeStamp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12123, 'relation', '/vendor/topthink/think-orm/src/model', '/vendor/topthink/think-orm/src/model/relation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12124, 'BelongsTo.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/BelongsTo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12125, 'BelongsToMany.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/BelongsToMany.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12126, 'HasMany.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/HasMany.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12127, 'HasManyThrough.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/HasManyThrough.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12128, 'HasOne.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/HasOne.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12129, 'HasOneThrough.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/HasOneThrough.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12130, 'MorphMany.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/MorphMany.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12131, 'MorphOne.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/MorphOne.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12132, 'MorphTo.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/MorphTo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12133, 'MorphToMany.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/MorphToMany.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12134, 'OneToOne.php', '/vendor/topthink/think-orm/src/model/relation', '/vendor/topthink/think-orm/src/model/relation/OneToOne.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12135, 'paginator', '/vendor/topthink/think-orm/src', '/vendor/topthink/think-orm/src/paginator', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12136, 'driver', '/vendor/topthink/think-orm/src/paginator', '/vendor/topthink/think-orm/src/paginator/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12137, 'Bootstrap.php', '/vendor/topthink/think-orm/src/paginator/driver', '/vendor/topthink/think-orm/src/paginator/driver/Bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12138, 'think-queue', '/vendor/topthink', '/vendor/topthink/think-queue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12139, '.gitignore', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12140, 'LICENSE', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12141, 'README.md', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12142, 'composer.json', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12143, 'phpunit.xml.dist', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/phpunit.xml.dist', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12144, 'src', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12145, 'Queue.php', '/vendor/topthink/think-queue/src', '/vendor/topthink/think-queue/src/Queue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12146, 'common.php', '/vendor/topthink/think-queue/src', '/vendor/topthink/think-queue/src/common.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12147, 'config.php', '/vendor/topthink/think-queue/src', '/vendor/topthink/think-queue/src/config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12148, 'facade', '/vendor/topthink/think-queue/src', '/vendor/topthink/think-queue/src/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12149, 'Queue.php', '/vendor/topthink/think-queue/src/facade', '/vendor/topthink/think-queue/src/facade/Queue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12150, 'queue', '/vendor/topthink/think-queue/src', '/vendor/topthink/think-queue/src/queue', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12151, 'CallQueuedHandler.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/CallQueuedHandler.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12152, 'Connector.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Connector.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12153, 'FailedJob.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/FailedJob.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12154, 'InteractsWithTime.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/InteractsWithTime.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12155, 'Job.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Job.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12156, 'Listener.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Listener.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12157, 'Queueable.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Queueable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12158, 'Service.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Service.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12159, 'ShouldQueue.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/ShouldQueue.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12160, 'Worker.php', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/Worker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12161, 'command', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/command', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12162, 'FailedTable.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/FailedTable.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12163, 'FlushFailed.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/FlushFailed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12164, 'ForgetFailed.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/ForgetFailed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12165, 'ListFailed.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/ListFailed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12166, 'Listen.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/Listen.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12167, 'Restart.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/Restart.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12168, 'Retry.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/Retry.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12169, 'Table.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/Table.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12170, 'Work.php', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/Work.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12171, 'stubs', '/vendor/topthink/think-queue/src/queue/command', '/vendor/topthink/think-queue/src/queue/command/stubs', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12172, 'failed_jobs.stub', '/vendor/topthink/think-queue/src/queue/command/stubs', '/vendor/topthink/think-queue/src/queue/command/stubs/failed_jobs.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12173, 'jobs.stub', '/vendor/topthink/think-queue/src/queue/command/stubs', '/vendor/topthink/think-queue/src/queue/command/stubs/jobs.stub', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12174, 'connector', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/connector', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12175, 'Database.php', '/vendor/topthink/think-queue/src/queue/connector', '/vendor/topthink/think-queue/src/queue/connector/Database.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12176, 'Redis.php', '/vendor/topthink/think-queue/src/queue/connector', '/vendor/topthink/think-queue/src/queue/connector/Redis.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12177, 'Sync.php', '/vendor/topthink/think-queue/src/queue/connector', '/vendor/topthink/think-queue/src/queue/connector/Sync.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12178, 'event', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/event', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12179, 'JobExceptionOccurred.php', '/vendor/topthink/think-queue/src/queue/event', '/vendor/topthink/think-queue/src/queue/event/JobExceptionOccurred.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12180, 'JobFailed.php', '/vendor/topthink/think-queue/src/queue/event', '/vendor/topthink/think-queue/src/queue/event/JobFailed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12181, 'JobProcessed.php', '/vendor/topthink/think-queue/src/queue/event', '/vendor/topthink/think-queue/src/queue/event/JobProcessed.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12182, 'JobProcessing.php', '/vendor/topthink/think-queue/src/queue/event', '/vendor/topthink/think-queue/src/queue/event/JobProcessing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12183, 'WorkerStopping.php', '/vendor/topthink/think-queue/src/queue/event', '/vendor/topthink/think-queue/src/queue/event/WorkerStopping.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12184, 'exception', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12185, 'MaxAttemptsExceededException.php', '/vendor/topthink/think-queue/src/queue/exception', '/vendor/topthink/think-queue/src/queue/exception/MaxAttemptsExceededException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12186, 'failed', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/failed', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12187, 'Database.php', '/vendor/topthink/think-queue/src/queue/failed', '/vendor/topthink/think-queue/src/queue/failed/Database.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12188, 'None.php', '/vendor/topthink/think-queue/src/queue/failed', '/vendor/topthink/think-queue/src/queue/failed/None.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12189, 'job', '/vendor/topthink/think-queue/src/queue', '/vendor/topthink/think-queue/src/queue/job', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12190, 'Database.php', '/vendor/topthink/think-queue/src/queue/job', '/vendor/topthink/think-queue/src/queue/job/Database.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12191, 'Redis.php', '/vendor/topthink/think-queue/src/queue/job', '/vendor/topthink/think-queue/src/queue/job/Redis.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12192, 'Sync.php', '/vendor/topthink/think-queue/src/queue/job', '/vendor/topthink/think-queue/src/queue/job/Sync.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12193, 'tests', '/vendor/topthink/think-queue', '/vendor/topthink/think-queue/tests', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12194, 'DatabaseConnectorTest.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/DatabaseConnectorTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12195, 'ListenerTest.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/ListenerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12196, 'QueueTest.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/QueueTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12197, 'TestCase.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/TestCase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12198, 'WorkerTest.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/WorkerTest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12199, 'bootstrap.php', '/vendor/topthink/think-queue/tests', '/vendor/topthink/think-queue/tests/bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12200, 'think-template', '/vendor/topthink', '/vendor/topthink/think-template', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12201, '.gitignore', '/vendor/topthink/think-template', '/vendor/topthink/think-template/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12202, 'LICENSE', '/vendor/topthink/think-template', '/vendor/topthink/think-template/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12203, 'README.md', '/vendor/topthink/think-template', '/vendor/topthink/think-template/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12204, 'composer.json', '/vendor/topthink/think-template', '/vendor/topthink/think-template/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12205, 'src', '/vendor/topthink/think-template', '/vendor/topthink/think-template/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12206, 'Template.php', '/vendor/topthink/think-template/src', '/vendor/topthink/think-template/src/Template.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12207, 'facade', '/vendor/topthink/think-template/src', '/vendor/topthink/think-template/src/facade', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12208, 'Template.php', '/vendor/topthink/think-template/src/facade', '/vendor/topthink/think-template/src/facade/Template.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12209, 'template', '/vendor/topthink/think-template/src', '/vendor/topthink/think-template/src/template', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12210, 'TagLib.php', '/vendor/topthink/think-template/src/template', '/vendor/topthink/think-template/src/template/TagLib.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12211, 'driver', '/vendor/topthink/think-template/src/template', '/vendor/topthink/think-template/src/template/driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12212, 'File.php', '/vendor/topthink/think-template/src/template/driver', '/vendor/topthink/think-template/src/template/driver/File.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12213, 'exception', '/vendor/topthink/think-template/src/template', '/vendor/topthink/think-template/src/template/exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12214, 'TemplateNotFoundException.php', '/vendor/topthink/think-template/src/template/exception', '/vendor/topthink/think-template/src/template/exception/TemplateNotFoundException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12215, 'taglib', '/vendor/topthink/think-template/src/template', '/vendor/topthink/think-template/src/template/taglib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12216, 'Cx.php', '/vendor/topthink/think-template/src/template/taglib', '/vendor/topthink/think-template/src/template/taglib/Cx.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12217, 'think-view', '/vendor/topthink', '/vendor/topthink/think-view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12218, '.gitignore', '/vendor/topthink/think-view', '/vendor/topthink/think-view/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12219, 'LICENSE', '/vendor/topthink/think-view', '/vendor/topthink/think-view/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12220, 'README.md', '/vendor/topthink/think-view', '/vendor/topthink/think-view/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12221, 'composer.json', '/vendor/topthink/think-view', '/vendor/topthink/think-view/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12222, 'src', '/vendor/topthink/think-view', '/vendor/topthink/think-view/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12223, 'Think.php', '/vendor/topthink/think-view/src', '/vendor/topthink/think-view/src/Think.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:53', ''),
|
||
(12224, 'volcengine', '/vendor', '/vendor/volcengine', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12225, 'volc-sdk-php', '/vendor/volcengine', '/vendor/volcengine/volc-sdk-php', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12226, '.gitignore', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12227, 'Changelog', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/Changelog', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12228, 'README.md', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12229, 'VERSION', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/VERSION', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12230, 'composer.json', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12231, 'examples', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/examples', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12232, '.gitignore', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12233, 'AdBlocker', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/AdBlocker', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12234, 'DemoAdBlock.php', '/vendor/volcengine/volc-sdk-php/examples/AdBlocker', '/vendor/volcengine/volc-sdk-php/examples/AdBlocker/DemoAdBlock.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12235, 'Billing', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Billing', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12236, 'DemoListBill.php', '/vendor/volcengine/volc-sdk-php/examples/Billing', '/vendor/volcengine/volc-sdk-php/examples/Billing/DemoListBill.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12237, 'DemoListBillDetail.php', '/vendor/volcengine/volc-sdk-php/examples/Billing', '/vendor/volcengine/volc-sdk-php/examples/Billing/DemoListBillDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12238, 'DemoListBillOverviewByProd.php', '/vendor/volcengine/volc-sdk-php/examples/Billing', '/vendor/volcengine/volc-sdk-php/examples/Billing/DemoListBillOverviewByProd.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12239, 'BusinessSecurity', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/BusinessSecurity', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12240, 'DemoRiskDetect.php', '/vendor/volcengine/volc-sdk-php/examples/BusinessSecurity', '/vendor/volcengine/volc-sdk-php/examples/BusinessSecurity/DemoRiskDetect.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12241, 'Cdn', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Cdn', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12242, 'DemoAddCdnDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoAddCdnDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12243, 'DemoAddResourceTags.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoAddResourceTags.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12244, 'DemoDeleteCdnDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDeleteCdnDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12245, 'DemoDeleteResourceTags.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDeleteResourceTags.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12246, 'DemoDescribeAccountingData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeAccountingData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12247, 'DemoDescribeCdnAccessLog.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnAccessLog.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12248, 'DemoDescribeCdnConfig.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12249, 'DemoDescribeCdnData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12250, 'DemoDescribeCdnDataDetail.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnDataDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12251, 'DemoDescribeCdnDomainTopData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnDomainTopData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12252, 'DemoDescribeCdnOriginData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnOriginData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12253, 'DemoDescribeCdnRegionAndIsp.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnRegionAndIsp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12254, 'DemoDescribeCdnService.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnService.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12255, 'DemoDescribeCdnUpperIp.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeCdnUpperIp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12256, 'DemoDescribeContentBlockTasks.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeContentBlockTasks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12257, 'DemoDescribeContentQuota.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeContentQuota.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12258, 'DemoDescribeContentTasks.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeContentTasks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12259, 'DemoDescribeEdgeNrtDataSummary.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeEdgeNrtDataSummary.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12260, 'DemoDescribeEdgeStatisticalData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeEdgeStatisticalData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12261, 'DemoDescribeEdgeTopNrtData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeEdgeTopNrtData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12262, 'DemoDescribeEdgeTopStatisticalData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeEdgeTopStatisticalData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12263, 'DemoDescribeEdgeTopStatusCode.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeEdgeTopStatusCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12264, 'DemoDescribeIPInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeIPInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12265, 'DemoDescribeOriginNrtDataSummary.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeOriginNrtDataSummary.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12266, 'DemoDescribeOriginTopNrtData.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeOriginTopNrtData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12267, 'DemoDescribeOriginTopStatusCode.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoDescribeOriginTopStatusCode.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12268, 'DemoListCdnDomains.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoListCdnDomains.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12269, 'DemoListResourceTags.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoListResourceTags.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12270, 'DemoStartCdnDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoStartCdnDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12271, 'DemoStopCdnDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoStopCdnDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12272, 'DemoSubmitBlockTask.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoSubmitBlockTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12273, 'DemoSubmitPreloadTask.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoSubmitPreloadTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12274, 'DemoSubmitRefreshTask.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoSubmitRefreshTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12275, 'DemoSubmitUnblockTask.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoSubmitUnblockTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12276, 'DemoUpdateCdnConfig.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoUpdateCdnConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12277, 'DemoUpdateResourceTags.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/DemoUpdateResourceTags.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12278, 'init.php', '/vendor/volcengine/volc-sdk-php/examples/Cdn', '/vendor/volcengine/volc-sdk-php/examples/Cdn/init.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12279, 'DemoIam.php', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/DemoIam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12280, 'DemoSign.php', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/DemoSign.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12281, 'GameProtect', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/GameProtect', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12282, 'DemoRiskResult.php', '/vendor/volcengine/volc-sdk-php/examples/GameProtect', '/vendor/volcengine/volc-sdk-php/examples/GameProtect/DemoRiskResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12283, 'ImageX', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/ImageX', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12284, 'DemoDeleteImages.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoDeleteImages.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12285, 'DemoFetchUrl.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoFetchUrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12286, 'DemoGetImageOCR.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoGetImageOCR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12287, 'DemoGetImageSegment.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoGetImageSegment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12288, 'DemoGetUploadToken.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoGetUploadToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12289, 'DemoRequest.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12290, 'DemoUpdateImageUrls.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoUpdateImageUrls.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12291, 'DemoUpload.php', '/vendor/volcengine/volc-sdk-php/examples/ImageX', '/vendor/volcengine/volc-sdk-php/examples/ImageX/DemoUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12292, 'Imp', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Imp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12293, 'job', '/vendor/volcengine/volc-sdk-php/examples/Imp', '/vendor/volcengine/volc-sdk-php/examples/Imp/job', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12294, 'DemoKillJob.php', '/vendor/volcengine/volc-sdk-php/examples/Imp/job', '/vendor/volcengine/volc-sdk-php/examples/Imp/job/DemoKillJob.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12295, 'DemoRetrieveJob.php', '/vendor/volcengine/volc-sdk-php/examples/Imp/job', '/vendor/volcengine/volc-sdk-php/examples/Imp/job/DemoRetrieveJob.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12296, 'DemoSubmitJob.php', '/vendor/volcengine/volc-sdk-php/examples/Imp/job', '/vendor/volcengine/volc-sdk-php/examples/Imp/job/DemoSubmitJob.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12297, 'Live', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Live', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12298, 'DemoAuth.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoAuth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12299, 'DemoBase.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoBase.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12300, 'DemoCallback.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoCallback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12301, 'DemoCert.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoCert.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12302, 'DemoCreatePullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoCreatePullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12303, 'DemoCreateVQScoreTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoCreateVQScoreTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12304, 'DemoDeletePullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDeletePullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12305, 'DemoDeleteRelaySourceV2.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDeleteRelaySourceV2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12306, 'DemoDescribeCDNSnapshotHistory.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeCDNSnapshotHistory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12307, 'DemoDescribeDenyConfig.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeDenyConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12308, 'DemoDescribeForbiddenStreamInfoByPage.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeForbiddenStreamInfoByPage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12309, 'DemoDescribeInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12310, 'DemoDescribeLiveStreamInfoByPage.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeLiveStreamInfoByPage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12311, 'DemoDescribeLiveStreamState.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeLiveStreamState.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12312, 'DemoDescribeRecordTaskFileHistory.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeRecordTaskFileHistory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12313, 'DemoDescribeRelaySourceV2.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeRelaySourceV2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12314, 'DemoDescribeVQScoreTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDescribeVQScoreTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12315, 'DemoDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12316, 'DemoGeneratePlayURL.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoGeneratePlayURL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12317, 'DemoGeneratePushURL.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoGeneratePushURL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12318, 'DemoKillStream.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoKillStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12319, 'DemoListPullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoListPullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12320, 'DemoListVQScoreTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoListVQScoreTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12321, 'DemoRecordPreset.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoRecordPreset.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12322, 'DemoRestartPullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoRestartPullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12323, 'DemoSnapshotAuditPreset.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoSnapshotAuditPreset.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12324, 'DemoSnapshotPreset.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoSnapshotPreset.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12325, 'DemoStopPullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoStopPullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12326, 'DemoStream.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12327, 'DemoTransPreset.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoTransPreset.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12328, 'DemoUpdateDenyConfig.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoUpdateDenyConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12329, 'DemoUpdatePullToPushTask.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoUpdatePullToPushTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12330, 'DemoUpdateRelaySourceV2.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DemoUpdateRelaySourceV2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12331, 'DescribeClosedStreamInfoByPage.php', '/vendor/volcengine/volc-sdk-php/examples/Live', '/vendor/volcengine/volc-sdk-php/examples/Live/DescribeClosedStreamInfoByPage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12332, 'Rtc', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Rtc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12333, 'rtc-openapi-demo', '/vendor/volcengine/volc-sdk-php/examples/Rtc', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12334, 'README.md', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12335, 'Rtc', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/Rtc', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12336, 'DemoRequest.php', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/Rtc', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/Rtc/DemoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12337, 'Rtc.php', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/Rtc', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/Rtc/Rtc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12338, 'VERSION', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/VERSION', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12339, 'composer.json', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo', '/vendor/volcengine/volc-sdk-php/examples/Rtc/rtc-openapi-demo/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12340, 'SecretNumber', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12341, 'DemoBindAXB.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoBindAXB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12342, 'DemoBindAXN.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoBindAXN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12343, 'DemoClick2Call.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoClick2Call.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12344, 'DemoClick2CallLite.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoClick2CallLite.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12345, 'DemoQuerySubscription.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoQuerySubscription.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12346, 'DemoQuerySubscriptionForList.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoQuerySubscriptionForList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12347, 'DemoSelectNumberAndBindAXB.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoSelectNumberAndBindAXB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12348, 'DemoUnBindAXB.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoUnBindAXB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12349, 'DemoUnbindAXN.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoUnbindAXN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12350, 'DemoUpdateAXB.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoUpdateAXB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12351, 'DemoUpdateAXN.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoUpdateAXN.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12352, 'DemoUpgradeAXToAXB.php', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber', '/vendor/volcengine/volc-sdk-php/examples/SecretNumber/DemoUpgradeAXToAXB.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12353, 'Sms', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Sms', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12354, 'DemoSendSms.php', '/vendor/volcengine/volc-sdk-php/examples/Sms', '/vendor/volcengine/volc-sdk-php/examples/Sms/DemoSendSms.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12355, 'Sts', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Sts', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12356, 'DemoAssumeRole.php', '/vendor/volcengine/volc-sdk-php/examples/Sts', '/vendor/volcengine/volc-sdk-php/examples/Sts/DemoAssumeRole.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12357, 'VEdit', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/VEdit', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12358, 'DemoSubmitDirectEditTask.php', '/vendor/volcengine/volc-sdk-php/examples/VEdit', '/vendor/volcengine/volc-sdk-php/examples/VEdit/DemoSubmitDirectEditTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12359, 'DemoSubmitTemplateTask.php', '/vendor/volcengine/volc-sdk-php/examples/VEdit', '/vendor/volcengine/volc-sdk-php/examples/VEdit/DemoSubmitTemplateTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12360, 'Visual', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Visual', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12361, 'DemoConvertPhoto.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoConvertPhoto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12362, 'DemoEnhancePhoto.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoEnhancePhoto.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12363, 'DemoFaceSwap.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoFaceSwap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12364, 'DemoGeneralSegment.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoGeneralSegment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12365, 'DemoHumanSegment.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoHumanSegment.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12366, 'DemoJPCartoon.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoJPCartoon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12367, 'DemoOCR.php', '/vendor/volcengine/volc-sdk-php/examples/Visual', '/vendor/volcengine/volc-sdk-php/examples/Visual/DemoOCR.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12368, 'Vod', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/Vod', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12369, 'DemoAddCallbackSubscription.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoAddCallbackSubscription.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12370, 'DemoApplyUploadInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoApplyUploadInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12371, 'DemoCommitUploadInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoCommitUploadInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12372, 'DemoCreateCdnPreloadTask.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoCreateCdnPreloadTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12373, 'DemoCreateCdnRefreshTask.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoCreateCdnRefreshTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12374, 'DemoCreateSpace.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoCreateSpace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12375, 'DemoCreateVideoClassification.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoCreateVideoClassification.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12376, 'DemoDeleteMedia.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDeleteMedia.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12377, 'DemoDeleteTranscodes.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDeleteTranscodes.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12378, 'DemoDeleteVideoClassification.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDeleteVideoClassification.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12379, 'DemoDescribeIpInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDescribeIpInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12380, 'DemoDescribeVodDomainBandwidthData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDescribeVodDomainBandwidthData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12381, 'DemoDescribeVodDomainTrafficData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDescribeVodDomainTrafficData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12382, 'DemoDescribeVodSpaceStorageData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDescribeVodSpaceStorageData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12383, 'DemoDrm.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoDrm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12384, 'DemoGetAllPlayInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAllPlayInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12385, 'DemoGetAppInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAppInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12386, 'DemoGetAudioEventDetectionForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAudioEventDetectionForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12387, 'DemoGetAudioInfoForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAudioInfoForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12388, 'DemoGetAuditFramesForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAuditFramesForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12389, 'DemoGetAutomaticSpeechRecognitionForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetAutomaticSpeechRecognitionForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12390, 'DemoGetBetterFramesForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetBetterFramesForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12391, 'DemoGetDirectEditProgress.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetDirectEditProgress.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12392, 'DemoGetDirectEditResult.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetDirectEditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12393, 'DemoGetHlsDecryptionKey.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetHlsDecryptionKey.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12394, 'DemoGetMLFramesForAudit.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetMLFramesForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12395, 'DemoGetMediaInfos.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetMediaInfos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12396, 'DemoGetMediaList.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetMediaList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12397, 'DemoGetPlayInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetPlayInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12398, 'DemoGetPlayInfoWithLiveTimeShiftScene.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetPlayInfoWithLiveTimeShiftScene.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12399, 'DemoGetPrivateDrmPlayAuth.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetPrivateDrmPlayAuth.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12400, 'DemoGetRecommendedPoster.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetRecommendedPoster.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12401, 'DemoGetSmartStrategyLitePlayInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetSmartStrategyLitePlayInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12402, 'DemoGetSpaceDetail.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetSpaceDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12403, 'DemoGetSubtitleAuthToken.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetSubtitleAuthToken.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12404, 'DemoGetSubtitleInfoList.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetSubtitleInfoList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12405, 'DemoGetWorkflowExecution', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoGetWorkflowExecution', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12406, 'DemoListCdnAccessLog.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnAccessLog.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12407, 'DemoListCdnPvData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnPvData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12408, 'DemoListCdnStatusData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnStatusData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12409, 'DemoListCdnTasks.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnTasks.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12410, 'DemoListCdnTopAccessUrl.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnTopAccessUrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12411, 'DemoListCdnUsageData.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListCdnUsageData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12412, 'DemoListDomain.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListDomain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12413, 'DemoListSnapshots.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListSnapshots.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12414, 'DemoListSpace.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListSpace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12415, 'DemoListVideoClassifications.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoListVideoClassifications.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12416, 'DemoPlay.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoPlay.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12417, 'DemoPublish.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoPublish.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12418, 'DemoQueryUploadTaskInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoQueryUploadTaskInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12419, 'DemoRetrieveTranscodeResult.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoRetrieveTranscodeResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12420, 'DemoSetCallbackEvent.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoSetCallbackEvent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12421, 'DemoStartWorkflow.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoStartWorkflow.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12422, 'DemoSubmitDirectEditTaskAsync.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoSubmitDirectEditTaskAsync.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12423, 'DemoUpdateMediaInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateMediaInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12424, 'DemoUpdateMediaPublishStatus.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateMediaPublishStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12425, 'DemoUpdateSpace.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateSpace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12426, 'DemoUpdateSpaceUploadConfig.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateSpaceUploadConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12427, 'DemoUpdateSubtitleInfo.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateSubtitleInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12428, 'DemoUpdateSubtitleStatus.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateSubtitleStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12429, 'DemoUpdateVideoClassification.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUpdateVideoClassification.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12430, 'DemoUploadMaterial.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUploadMaterial.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12431, 'DemoUploadMedia.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUploadMedia.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12432, 'DemoUploadMediaByUrl.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUploadMediaByUrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12433, 'DemoUploadSts2.php', '/vendor/volcengine/volc-sdk-php/examples/Vod', '/vendor/volcengine/volc-sdk-php/examples/Vod/DemoUploadSts2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12434, 'VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12435, 'BatchAppend.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/BatchAppend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12436, 'CommitResourceUpload.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/CommitResourceUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12437, 'CreateTask.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/CreateTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12438, 'CreateTtsResource.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/CreateTtsResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12439, 'DeleteResource.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/DeleteResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12440, 'FetchResource.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/FetchResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12441, 'GetResourceUploadUrl.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/GetResourceUploadUrl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12442, 'PauseTask.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/PauseTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12443, 'QueryResource.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/QueryResource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12444, 'ResumeTask.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/ResumeTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12445, 'SingleBatchAppend.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/SingleBatchAppend.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12446, 'SingleCancel.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/SingleCancel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12447, 'SingleInfo.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/SingleInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12448, 'StopTask.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/StopTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12449, 'UpdateTask.php', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify', '/vendor/volcengine/volc-sdk-php/examples/VoiceNotify/UpdateTask.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12450, 'src', '/vendor/volcengine/volc-sdk-php', '/vendor/volcengine/volc-sdk-php/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12451, 'Base', '/vendor/volcengine/volc-sdk-php/src', '/vendor/volcengine/volc-sdk-php/src/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12452, 'Model', '/vendor/volcengine/volc-sdk-php/src/Base', '/vendor/volcengine/volc-sdk-php/src/Base/Model', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12453, 'SignParam.php', '/vendor/volcengine/volc-sdk-php/src/Base/Model', '/vendor/volcengine/volc-sdk-php/src/Base/Model/SignParam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12454, 'SignResult.php', '/vendor/volcengine/volc-sdk-php/src/Base/Model', '/vendor/volcengine/volc-sdk-php/src/Base/Model/SignResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12455, 'SignatureTrait.php', '/vendor/volcengine/volc-sdk-php/src/Base', '/vendor/volcengine/volc-sdk-php/src/Base/SignatureTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12456, 'SignatureV4.php', '/vendor/volcengine/volc-sdk-php/src/Base', '/vendor/volcengine/volc-sdk-php/src/Base/SignatureV4.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12457, 'Singleton.php', '/vendor/volcengine/volc-sdk-php/src/Base', '/vendor/volcengine/volc-sdk-php/src/Base/Singleton.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12458, 'V4Curl.php', '/vendor/volcengine/volc-sdk-php/src/Base', '/vendor/volcengine/volc-sdk-php/src/Base/V4Curl.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12459, 'Service', '/vendor/volcengine/volc-sdk-php/src', '/vendor/volcengine/volc-sdk-php/src/Service', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12460, 'AdBlocker.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/AdBlocker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12461, 'Base', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12462, 'Models', '/vendor/volcengine/volc-sdk-php/src/Service/Base', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12463, 'Base', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/Base', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12464, 'ResponseError.php', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/Base', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/Base/ResponseError.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12465, 'ResponseMetadata.php', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/Base', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/Base/ResponseMetadata.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12466, 'GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12467, 'Base.php', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Base/Models/GPBMetadata/Base.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12468, 'Billing.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Billing.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12469, 'BusinessSecurity.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/BusinessSecurity.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12470, 'Cdn.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Cdn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12471, 'GameProduct.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/GameProduct.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12472, 'Iam.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Iam.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12473, 'ImageX.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/ImageX.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12474, 'Imp', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Imp', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12475, 'Imp.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Imp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12476, 'ImpOption.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/ImpOption.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12477, 'ImpUtils.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/ImpUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12478, 'Models', '/vendor/volcengine/volc-sdk-php/src/Service/Imp', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12479, 'Business', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12480, 'InputPath.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business/InputPath.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12481, 'JobExecution.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business/JobExecution.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12482, 'JobOutput.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Business/JobOutput.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12483, 'GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12484, 'ImpCommon.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata/ImpCommon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12485, 'RequestImp.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata/RequestImp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12486, 'ResponseImp.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/GPBMetadata/ResponseImp.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12487, 'Request', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12488, 'ImpKillJobRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request/ImpKillJobRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12489, 'ImpRetrieveJobRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request/ImpRetrieveJobRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12490, 'ImpSubmitJobRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Request/ImpSubmitJobRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12491, 'Response', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12492, 'ImpKillJobResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response/ImpKillJobResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12493, 'ImpRetrieveJobResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response/ImpRetrieveJobResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12494, 'ImpSubmitJobResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Imp/Models/Response/ImpSubmitJobResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12495, 'Live', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Live', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12496, 'Live.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Live.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12497, 'LiveOption.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live', '/vendor/volcengine/volc-sdk-php/src/Service/Live/LiveOption.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12498, 'LiveUtils.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live', '/vendor/volcengine/volc-sdk-php/src/Service/Live/LiveUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12499, 'Models', '/vendor/volcengine/volc-sdk-php/src/Service/Live', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12500, 'Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12501, 'AddrScoreInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/AddrScoreInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12502, 'CDNSnapshotHistory.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/CDNSnapshotHistory.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12503, 'CDNSnapshotHistoryInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/CDNSnapshotHistoryInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12504, 'ClosedStream.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ClosedStream.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12505, 'ClosedStreamInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ClosedStreamInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12506, 'CreatePullToPushTaskResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/CreatePullToPushTaskResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12507, 'DenyConfigDetail.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/DenyConfigDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12508, 'DescribeDenyConfigResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/DescribeDenyConfigResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12509, 'DomainList.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/DomainList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12510, 'DomainListInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/DomainListInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12511, 'ForbiddenStreamInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ForbiddenStreamInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12512, 'ForbiddenStreamInfoList.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ForbiddenStreamInfoList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12513, 'GeneratePlayURLResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/GeneratePlayURLResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12514, 'GeneratePushURLResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/GeneratePushURLResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12515, 'ListPullToPushTaskResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ListPullToPushTaskResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12516, 'LiveStreamInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/LiveStreamInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12517, 'Pagination.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/Pagination.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12518, 'PlayURL.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/PlayURL.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12519, 'PushURLItem.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/PushURLItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12520, 'RecordHistoryInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/RecordHistoryInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12521, 'RecordTaskFile.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/RecordTaskFile.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12522, 'RelaySourceConfig.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/RelaySourceConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12523, 'RelaySourceConfigList.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/RelaySourceConfigList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12524, 'RelaySourceGroupItemV2.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/RelaySourceGroupItemV2.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12525, 'ScoreInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/ScoreInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12526, 'StreamInfoList.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/StreamInfoList.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12527, 'StreamStateInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/StreamStateInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12528, 'TaskInfoItem.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/TaskInfoItem.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12529, 'VQScoreID.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/VQScoreID.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12530, 'VQScoreInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/VQScoreInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12531, 'VQScoreTaskInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/VQScoreTaskInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12532, 'VQScoreTaskListInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/VQScoreTaskListInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12533, 'VhostWithDenyConfig.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Business/VhostWithDenyConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12534, 'GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12535, 'Addr.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/Addr.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12536, 'DenyConfig.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/DenyConfig.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12537, 'Domain.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/Domain.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12538, 'PullToPush.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/PullToPush.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12539, 'RecordManage.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/RecordManage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12540, 'RelaySource.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/RelaySource.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12541, 'RequestLive.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/RequestLive.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12542, 'ResponseLive.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/ResponseLive.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12543, 'SnapshotManage.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/SnapshotManage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12544, 'StreamManage.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/StreamManage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12545, 'VQScore.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/GPBMetadata/VQScore.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12546, 'Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12547, 'CreateDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/CreateDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12548, 'CreatePullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/CreatePullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12549, 'CreateVQScoreTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/CreateVQScoreTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12550, 'DeleteDenyConfigRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DeleteDenyConfigRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12551, 'DeleteDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DeleteDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12552, 'DeletePullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DeletePullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12553, 'DeleteRelaySourceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DeleteRelaySourceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12554, 'DescribeCDNSnapshotHistoryRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeCDNSnapshotHistoryRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12555, 'DescribeClosedStreamInfoByPageRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeClosedStreamInfoByPageRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12556, 'DescribeDenyConfigRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeDenyConfigRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12557, 'DescribeDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12558, 'DescribeForbiddenStreamInfoByPageRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeForbiddenStreamInfoByPageRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12559, 'DescribeLiveStreamInfoByPageRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeLiveStreamInfoByPageRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12560, 'DescribeLiveStreamStateRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeLiveStreamStateRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12561, 'DescribeRecordTaskFileHistoryRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeRecordTaskFileHistoryRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12562, 'DescribeRelaySourceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeRelaySourceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12563, 'DescribeVQScoreTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DescribeVQScoreTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12564, 'DisableDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/DisableDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12565, 'EnableDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/EnableDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12566, 'ForbidStreamRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ForbidStreamRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12567, 'GeneratePlayURLRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/GeneratePlayURLRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12568, 'GeneratePushURLRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/GeneratePushURLRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12569, 'KillStreamRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/KillStreamRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12570, 'ListDomainDetailRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ListDomainDetailRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12571, 'ListPullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ListPullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12572, 'ListVQScoreTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ListVQScoreTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12573, 'ManagerPullPushDomainBindRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ManagerPullPushDomainBindRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12574, 'RestartPullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/RestartPullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12575, 'ResumeStreamRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/ResumeStreamRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12576, 'StopPullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/StopPullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12577, 'UpdateDenyConfigRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/UpdateDenyConfigRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12578, 'UpdatePullToPushTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/UpdatePullToPushTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12579, 'UpdateRelaySourceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Request/UpdateRelaySourceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12580, 'Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12581, 'CreateDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/CreateDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12582, 'CreatePullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/CreatePullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12583, 'CreateVQScoreTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/CreateVQScoreTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12584, 'DeleteDenyConfigResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DeleteDenyConfigResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12585, 'DeleteDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DeleteDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12586, 'DeletePullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DeletePullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12587, 'DeleteRelaySourceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DeleteRelaySourceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12588, 'DescribeCDNSnapshotHistoryResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeCDNSnapshotHistoryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12589, 'DescribeClosedStreamInfoByPageResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeClosedStreamInfoByPageResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12590, 'DescribeDenyConfigResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeDenyConfigResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12591, 'DescribeDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12592, 'DescribeForbiddenStreamInfoByPageResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeForbiddenStreamInfoByPageResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12593, 'DescribeLiveStreamInfoByPageResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeLiveStreamInfoByPageResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12594, 'DescribeLiveStreamStateResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeLiveStreamStateResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12595, 'DescribeRecordTaskFileHistoryResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeRecordTaskFileHistoryResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12596, 'DescribeRelaySourceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeRelaySourceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12597, 'DescribeVQScoreTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DescribeVQScoreTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12598, 'DisableDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/DisableDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12599, 'EnableDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/EnableDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12600, 'ForbidStreamResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ForbidStreamResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12601, 'GeneratePlayURLResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/GeneratePlayURLResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12602, 'GeneratePushURLResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/GeneratePushURLResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12603, 'KillStreamResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/KillStreamResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12604, 'ListDomainDetailResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ListDomainDetailResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12605, 'ListPullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ListPullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12606, 'ListVQScoreTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ListVQScoreTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12607, 'ManagerPullPushDomainBindResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ManagerPullPushDomainBindResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12608, 'RestartPullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/RestartPullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12609, 'ResumeStreamResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/ResumeStreamResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12610, 'StopPullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/StopPullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12611, 'UpdateDenyConfigResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/UpdateDenyConfigResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12612, 'UpdatePullToPushTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/UpdatePullToPushTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12613, 'UpdateRelaySourceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Live/Models/Response/UpdateRelaySourceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12614, 'Live.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Live.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12615, 'Notify.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Notify.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12616, 'Rtc.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Rtc.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12617, 'SecretNumber.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/SecretNumber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12618, 'Sms.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Sms.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12619, 'Sts.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Sts.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12620, 'VEdit.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/VEdit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12621, 'Visual.php', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Visual.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12622, 'Vod', '/vendor/volcengine/volc-sdk-php/src/Service', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12623, 'Models', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12624, 'Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12625, 'CategoryTagInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/CategoryTagInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12626, 'Clip.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/Clip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12627, 'DeLogoInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/DeLogoInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12628, 'ExecutionStage.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/ExecutionStage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12629, 'GetDirectEditProgress.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/GetDirectEditProgress.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12630, 'GetDirectEditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/GetDirectEditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12631, 'Inspection.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/Inspection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12632, 'LogoOverride.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/LogoOverride.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12633, 'OverrideParams.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/OverrideParams.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12634, 'Quality.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/Quality.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12635, 'SnapshotOverride.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/SnapshotOverride.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12636, 'StageDetail.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/StageDetail.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12637, 'StageStatus.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/StageStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12638, 'SubmitDirectEditTaskAsyncResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/SubmitDirectEditTaskAsyncResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12639, 'TranscodeAudioOverride.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/TranscodeAudioOverride.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12640, 'TranscodeResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/TranscodeResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12641, 'TranscodeVideoOverride.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/TranscodeVideoOverride.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12642, 'ValuePair.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/ValuePair.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12643, 'VisualQuality.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VisualQuality.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12644, 'VodAEDEventItemForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAEDEventItemForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12645, 'VodAEDInfoForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAEDInfoForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12646, 'VodAEDTimeRangeForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAEDTimeRangeForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12647, 'VodASRInfoForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodASRInfoForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12648, 'VodASRLanguageDetailForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodASRLanguageDetailForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12649, 'VodASRUtteranceForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodASRUtteranceForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12650, 'VodASRUtteranceWordForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodASRUtteranceWordForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12651, 'VodAdaptiveInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAdaptiveInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12652, 'VodAllPlayInfoModel.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAllPlayInfoModel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12653, 'VodAllPlayInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAllPlayInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12654, 'VodApplyUploadInfoData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodApplyUploadInfoData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12655, 'VodApplyUploadInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodApplyUploadInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12656, 'VodAudioInfoForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAudioInfoForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12657, 'VodAudioStreamMeta.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodAudioStreamMeta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12658, 'VodBandwidthData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodBandwidthData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12659, 'VodBetterFrameDataForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodBetterFrameDataForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12660, 'VodCallbackAuthType.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCallbackAuthType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12661, 'VodCdnAccessLogElement.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnAccessLogElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12662, 'VodCdnAccessLogInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnAccessLogInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12663, 'VodCdnIpInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnIpInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12664, 'VodCdnStatisticsCommonResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnStatisticsCommonResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12665, 'VodCdnStatisticsData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnStatisticsData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12666, 'VodCdnTaskResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnTaskResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12667, 'VodCdnTopAccessUrlElement.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCdnTopAccessUrlElement.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12668, 'VodClassification.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodClassification.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12669, 'VodCommitData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCommitData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12670, 'VodCommitUploadInfoData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCommitUploadInfoData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12671, 'VodCommitUploadInfoResponseData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCommitUploadInfoResponseData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12672, 'VodCommitUploadInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCommitUploadInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12673, 'VodCommonConfigInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCommonConfigInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12674, 'VodContentInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodContentInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12675, 'VodCreateCdnTaskResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCreateCdnTaskResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12676, 'VodCreateVideoClassificationData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodCreateVideoClassificationData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12677, 'VodDeleteMediaData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDeleteMediaData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12678, 'VodDeleteTranscodesData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDeleteTranscodesData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12679, 'VodDescribeIpInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDescribeIpInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12680, 'VodDescribeVodDomainBandwidthDataResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDescribeVodDomainBandwidthDataResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12681, 'VodDescribeVodDomainTrafficDataResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDescribeVodDomainTrafficDataResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12682, 'VodDescribeVodSpaceStorageDataResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDescribeVodSpaceStorageDataResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12683, 'VodDomainCertificateInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDomainCertificateInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12684, 'VodDomainConfigInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDomainConfigInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12685, 'VodDomainInstanceInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDomainInstanceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12686, 'VodDomainInstanceInfos.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDomainInstanceInfos.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12687, 'VodDomainoInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodDomainoInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12688, 'VodFileSubtitleInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodFileSubtitleInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12689, 'VodFrameDataForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodFrameDataForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12690, 'VodFrameExtractingOptionForAudit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodFrameExtractingOptionForAudit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12691, 'VodGetAppInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetAppInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12692, 'VodGetAudioEventDetectionForAuditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetAudioEventDetectionForAuditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12693, 'VodGetAudioInfoForAuditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetAudioInfoForAuditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12694, 'VodGetAutomaticSpeechRecognitionForAuditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetAutomaticSpeechRecognitionForAuditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12695, 'VodGetBetterFramesForAuditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetBetterFramesForAuditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12696, 'VodGetFramesForAuditResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetFramesForAuditResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12697, 'VodGetHlsDecryptionKeyResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetHlsDecryptionKeyResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12698, 'VodGetMediaInfosData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetMediaInfosData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12699, 'VodGetMediaListData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetMediaListData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12700, 'VodGetOriginalPlayInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetOriginalPlayInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12701, 'VodGetPlayInfoWithLiveTimeShiftSceneResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetPlayInfoWithLiveTimeShiftSceneResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12702, 'VodGetPrivateDrmPlayAuthResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetPrivateDrmPlayAuthResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12703, 'VodGetRecPosterData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetRecPosterData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12704, 'VodGetSmartStrategyLitePlayInfoResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetSmartStrategyLitePlayInfoResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12705, 'VodGetSubtitleInfoListData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetSubtitleInfoListData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12706, 'VodGetWorkflowExecutionDetailResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodGetWorkflowExecutionDetailResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12707, 'VodHeaderPair.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodHeaderPair.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12708, 'VodListCdnAccessLogResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodListCdnAccessLogResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12709, 'VodListCdnTopAccessUrlResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodListCdnTopAccessUrlResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12710, 'VodListWorkflowExecutionResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodListWorkflowExecutionResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12711, 'VodMediaBasicInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodMediaBasicInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12712, 'VodMediaInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodMediaInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12713, 'VodPlayInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPlayInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12714, 'VodPlayInfoModel.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPlayInfoModel.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12715, 'VodPlayInfoModelVersion.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPlayInfoModelVersion.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12716, 'VodPlayInfoWithLiveTimeShiftScene.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPlayInfoWithLiveTimeShiftScene.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12717, 'VodPoint.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPoint.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12718, 'VodPrivateDrmPlayAuthInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodPrivateDrmPlayAuthInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12719, 'VodQueryData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodQueryData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12720, 'VodQueryUploadResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodQueryUploadResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12721, 'VodSamplePosterSnapshot.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSamplePosterSnapshot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12722, 'VodSmartStrategyDataStoreStatus.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSmartStrategyDataStoreStatus.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12723, 'VodSmartStrategyResponseStreamType.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSmartStrategyResponseStreamType.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12724, 'VodSnapshot.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSnapshot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12725, 'VodSnapshotData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSnapshotData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12726, 'VodSourceInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSourceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12727, 'VodSpaceInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSpaceInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12728, 'VodSpaceUploadConfigKey.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSpaceUploadConfigKey.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12729, 'VodSpriteSnapshot.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSpriteSnapshot.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12730, 'VodStartWorkflowResult.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodStartWorkflowResult.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12731, 'VodStorageData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodStorageData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12732, 'VodStoreInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodStoreInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12733, 'VodStoreUriGroup.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodStoreUriGroup.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12734, 'VodSubtitleInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodSubtitleInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12735, 'VodThumbInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodThumbInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12736, 'VodTrafficData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodTrafficData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12737, 'VodTranscodeInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodTranscodeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12738, 'VodURLSet.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodURLSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12739, 'VodUpdateSubtitleStatusData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodUpdateSubtitleStatusData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12740, 'VodUploadAddress.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodUploadAddress.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12741, 'VodUrlResponseData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodUrlResponseData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12742, 'VodUrlUploadURLSet.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodUrlUploadURLSet.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12743, 'VodVideoClassificationsData.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodVideoClassificationsData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12744, 'VodVideoStreamMeta.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodVideoStreamMeta.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12745, 'VodVolumeInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VodVolumeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12746, 'VolumeInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/VolumeInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12747, 'WorkflowExecution.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/WorkflowExecution.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12748, 'WorkflowParams.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Business/WorkflowParams.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12749, 'GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12750, 'RequestVod.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/RequestVod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12751, 'ResponseVod.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/ResponseVod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12752, 'VodAppsManage.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodAppsManage.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12753, 'VodCallback.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodCallback.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12754, 'VodCdn.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodCdn.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12755, 'VodCommon.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodCommon.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12756, 'VodEdit.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodEdit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12757, 'VodMedia.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodMedia.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12758, 'VodPlay.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodPlay.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12759, 'VodSmartStrategy.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodSmartStrategy.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12760, 'VodSpace.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodSpace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12761, 'VodUpload.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12762, 'VodWorkflow.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/GPBMetadata/VodWorkflow.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12763, 'Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12764, 'VodAddCallbackSubscriptionRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodAddCallbackSubscriptionRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12765, 'VodApplyUploadInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodApplyUploadInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12766, 'VodCommitUploadInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodCommitUploadInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12767, 'VodCreateCdnPreloadTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodCreateCdnPreloadTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12768, 'VodCreateCdnRefreshTaskRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodCreateCdnRefreshTaskRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12769, 'VodCreateSpaceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodCreateSpaceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12770, 'VodCreateVideoClassificationRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodCreateVideoClassificationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12771, 'VodDeleteMediaRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDeleteMediaRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12772, 'VodDeleteTranscodesRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDeleteTranscodesRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12773, 'VodDeleteVideoClassificationRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDeleteVideoClassificationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12774, 'VodDescribeIPInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDescribeIPInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12775, 'VodDescribeVodDomainBandwidthDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDescribeVodDomainBandwidthDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12776, 'VodDescribeVodDomainTrafficDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDescribeVodDomainTrafficDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12777, 'VodDescribeVodSpaceStorageDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodDescribeVodSpaceStorageDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12778, 'VodGetAllPlayInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAllPlayInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12779, 'VodGetAppInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAppInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12780, 'VodGetAudioEventDetectionForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAudioEventDetectionForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12781, 'VodGetAudioInfoForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAudioInfoForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12782, 'VodGetAuditFramesForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAuditFramesForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12783, 'VodGetAutomaticSpeechRecognitionForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetAutomaticSpeechRecognitionForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12784, 'VodGetBetterFramesForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetBetterFramesForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12785, 'VodGetDirectEditProgressRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetDirectEditProgressRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12786, 'VodGetDirectEditResultRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetDirectEditResultRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12787, 'VodGetHlsDecryptionKeyRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetHlsDecryptionKeyRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12788, 'VodGetMLFramesForAuditRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetMLFramesForAuditRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12789, 'VodGetMediaInfosRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetMediaInfosRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12790, 'VodGetMediaListRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetMediaListRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12791, 'VodGetPlayInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetPlayInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12792, 'VodGetPlayInfoWithLiveTimeShiftSceneRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetPlayInfoWithLiveTimeShiftSceneRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12793, 'VodGetPrivateDrmPlayAuthRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetPrivateDrmPlayAuthRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12794, 'VodGetRecommendedPosterRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetRecommendedPosterRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12795, 'VodGetSmartStrategyLitePlayInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetSmartStrategyLitePlayInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12796, 'VodGetSpaceDetailRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetSpaceDetailRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12797, 'VodGetSubtitleInfoListRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetSubtitleInfoListRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12798, 'VodGetWorkflowExecutionDetailRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetWorkflowExecutionDetailRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12799, 'VodGetWorkflowExecutionStatusRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodGetWorkflowExecutionStatusRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12800, 'VodListCdnAccessLogRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnAccessLogRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12801, 'VodListCdnPvDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnPvDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12802, 'VodListCdnStatusDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnStatusDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12803, 'VodListCdnTasksRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnTasksRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12804, 'VodListCdnTopAccessUrlRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnTopAccessUrlRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12805, 'VodListCdnUsageDataRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListCdnUsageDataRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12806, 'VodListDomainRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListDomainRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12807, 'VodListSnapshotsRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListSnapshotsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12808, 'VodListSpaceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListSpaceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12809, 'VodListVideoClassificationsRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListVideoClassificationsRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12810, 'VodListWorkflowExecutionRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodListWorkflowExecutionRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12811, 'VodQueryUploadTaskInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodQueryUploadTaskInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12812, 'VodRetrieveTranscodeResultRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodRetrieveTranscodeResultRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12813, 'VodSetCallbackEventRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodSetCallbackEventRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12814, 'VodStartWorkflowRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodStartWorkflowRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12815, 'VodSubmitDirectEditTaskAsyncRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodSubmitDirectEditTaskAsyncRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12816, 'VodUpdateMediaInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateMediaInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12817, 'VodUpdateMediaPublishStatusRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateMediaPublishStatusRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12818, 'VodUpdateSpaceRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateSpaceRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12819, 'VodUpdateSpaceUploadConfigRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateSpaceUploadConfigRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12820, 'VodUpdateSubtitleInfoRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateSubtitleInfoRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12821, 'VodUpdateSubtitleStatusRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateSubtitleStatusRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12822, 'VodUpdateVideoClassificationRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUpdateVideoClassificationRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12823, 'VodUploadMaterialRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUploadMaterialRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12824, 'VodUploadMediaRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUploadMediaRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12825, 'VodUrlUploadJsonRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUrlUploadJsonRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12826, 'VodUrlUploadRequest.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Request/VodUrlUploadRequest.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12827, 'Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12828, 'VodAddCallbackSubscriptionResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodAddCallbackSubscriptionResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12829, 'VodApplyUploadInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodApplyUploadInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12830, 'VodCdnStatisticsCommonResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCdnStatisticsCommonResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12831, 'VodCommitUploadInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCommitUploadInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12832, 'VodCreateCdnPreloadTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCreateCdnPreloadTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12833, 'VodCreateCdnRefreshTaskResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCreateCdnRefreshTaskResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12834, 'VodCreateSpaceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCreateSpaceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12835, 'VodCreateVideoClassificationResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodCreateVideoClassificationResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12836, 'VodDeleteMediaResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDeleteMediaResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12837, 'VodDeleteTranscodesResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDeleteTranscodesResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12838, 'VodDeleteVideoClassificationResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDeleteVideoClassificationResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12839, 'VodDescribeIPInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDescribeIPInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12840, 'VodDescribeVodDomainBandwidthDataResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDescribeVodDomainBandwidthDataResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12841, 'VodDescribeVodDomainTrafficDataResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDescribeVodDomainTrafficDataResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12842, 'VodDescribeVodSpaceStorageDataResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodDescribeVodSpaceStorageDataResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12843, 'VodGetAllPlayInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAllPlayInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12844, 'VodGetAppInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAppInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12845, 'VodGetAudioEventDetectionForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAudioEventDetectionForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12846, 'VodGetAudioInfoForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAudioInfoForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12847, 'VodGetAuditFramesForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAuditFramesForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12848, 'VodGetAutomaticSpeechRecognitionForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetAutomaticSpeechRecognitionForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12849, 'VodGetBetterFramesForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetBetterFramesForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12850, 'VodGetDirectEditProgressResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetDirectEditProgressResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12851, 'VodGetDirectEditResultResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetDirectEditResultResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12852, 'VodGetHlsDecryptionKeyResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetHlsDecryptionKeyResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12853, 'VodGetMLFramesForAuditResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetMLFramesForAuditResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12854, 'VodGetMediaInfosResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetMediaInfosResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12855, 'VodGetMediaListResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetMediaListResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12856, 'VodGetOriginalPlayInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetOriginalPlayInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12857, 'VodGetPlayInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetPlayInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12858, 'VodGetPlayInfoWithLiveTimeShiftSceneResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetPlayInfoWithLiveTimeShiftSceneResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12859, 'VodGetPrivateDrmPlayAuthResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetPrivateDrmPlayAuthResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12860, 'VodGetRecommendedPosterResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetRecommendedPosterResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12861, 'VodGetSmartStrategyLitePlayInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetSmartStrategyLitePlayInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12862, 'VodGetSpaceDetailResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetSpaceDetailResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12863, 'VodGetSubtitleInfoListResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetSubtitleInfoListResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12864, 'VodGetWorkflowExecutionDetailResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetWorkflowExecutionDetailResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12865, 'VodGetWorkflowExecutionStatusResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodGetWorkflowExecutionStatusResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12866, 'VodListCdnAccessLogResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListCdnAccessLogResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12867, 'VodListCdnTasksResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListCdnTasksResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12868, 'VodListCdnTopAccessUrlResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListCdnTopAccessUrlResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12869, 'VodListDomainResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListDomainResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12870, 'VodListSnapshotsResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListSnapshotsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12871, 'VodListSpaceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListSpaceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12872, 'VodListVideoClassificationsResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListVideoClassificationsResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12873, 'VodListWorkflowExecutionResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodListWorkflowExecutionResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12874, 'VodQueryUploadTaskInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodQueryUploadTaskInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12875, 'VodRetrieveTranscodeResultResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodRetrieveTranscodeResultResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12876, 'VodSetCallbackEventResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodSetCallbackEventResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12877, 'VodStartWorkflowResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodStartWorkflowResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12878, 'VodSubmitDirectEditTaskAsyncResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodSubmitDirectEditTaskAsyncResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12879, 'VodUpdateMediaInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateMediaInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12880, 'VodUpdateMediaPublishStatusResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateMediaPublishStatusResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12881, 'VodUpdateSpaceResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateSpaceResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12882, 'VodUpdateSpaceUploadConfigResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateSpaceUploadConfigResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12883, 'VodUpdateSubtitleInfoResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateSubtitleInfoResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12884, 'VodUpdateSubtitleStatusResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateSubtitleStatusResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12885, 'VodUpdateVideoClassificationResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUpdateVideoClassificationResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12886, 'VodUploadMediaResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUploadMediaResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12887, 'VodUrlUploadResponse.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Models/Response/VodUrlUploadResponse.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12888, 'Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12889, 'FunctionInner.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/FunctionInner.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12890, 'Functions.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/Functions.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12891, 'OptionInfo.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/OptionInfo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12892, 'SnapshotTimeInput.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/SnapshotTimeInput.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12893, 'VodUpload.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/VodUpload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12894, 'WorkflowInput.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Upload/WorkflowInput.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12895, 'Vod.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/Vod.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12896, 'VodOption.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/VodOption.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12897, 'VodUtils.php', '/vendor/volcengine/volc-sdk-php/src/Service/Vod', '/vendor/volcengine/volc-sdk-php/src/Service/Vod/VodUtils.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12898, 'workerman', '/vendor', '/vendor/workerman', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12899, 'channel', '/vendor/workerman', '/vendor/workerman/channel', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12900, 'README.md', '/vendor/workerman/channel', '/vendor/workerman/channel/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12901, 'composer.json', '/vendor/workerman/channel', '/vendor/workerman/channel/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12902, 'src', '/vendor/workerman/channel', '/vendor/workerman/channel/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12903, 'Client.php', '/vendor/workerman/channel/src', '/vendor/workerman/channel/src/Client.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12904, 'Server.php', '/vendor/workerman/channel/src', '/vendor/workerman/channel/src/Server.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12905, 'test', '/vendor/workerman/channel', '/vendor/workerman/channel/test', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12906, 'server.php', '/vendor/workerman/channel/test', '/vendor/workerman/channel/test/server.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12907, 'crontab', '/vendor/workerman', '/vendor/workerman/crontab', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12908, 'README.md', '/vendor/workerman/crontab', '/vendor/workerman/crontab/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12909, 'composer.json', '/vendor/workerman/crontab', '/vendor/workerman/crontab/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12910, 'example', '/vendor/workerman/crontab', '/vendor/workerman/crontab/example', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12911, 'test.php', '/vendor/workerman/crontab/example', '/vendor/workerman/crontab/example/test.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12912, 'src', '/vendor/workerman/crontab', '/vendor/workerman/crontab/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12913, 'Crontab.php', '/vendor/workerman/crontab/src', '/vendor/workerman/crontab/src/Crontab.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12914, 'Parser.php', '/vendor/workerman/crontab/src', '/vendor/workerman/crontab/src/Parser.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12915, 'workerman', '/vendor/workerman', '/vendor/workerman/workerman', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12916, '.gitignore', '/vendor/workerman/workerman', '/vendor/workerman/workerman/.gitignore', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12917, 'Autoloader.php', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Autoloader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12918, 'Connection', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Connection', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12919, 'AsyncTcpConnection.php', '/vendor/workerman/workerman/Connection', '/vendor/workerman/workerman/Connection/AsyncTcpConnection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12920, 'AsyncUdpConnection.php', '/vendor/workerman/workerman/Connection', '/vendor/workerman/workerman/Connection/AsyncUdpConnection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12921, 'ConnectionInterface.php', '/vendor/workerman/workerman/Connection', '/vendor/workerman/workerman/Connection/ConnectionInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12922, 'TcpConnection.php', '/vendor/workerman/workerman/Connection', '/vendor/workerman/workerman/Connection/TcpConnection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12923, 'UdpConnection.php', '/vendor/workerman/workerman/Connection', '/vendor/workerman/workerman/Connection/UdpConnection.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12924, 'Events', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Events', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12925, 'Ev.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/Ev.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12926, 'Event.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/Event.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12927, 'EventInterface.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/EventInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12928, 'Libevent.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/Libevent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12929, 'React', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/React', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12930, 'Base.php', '/vendor/workerman/workerman/Events/React', '/vendor/workerman/workerman/Events/React/Base.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12931, 'ExtEventLoop.php', '/vendor/workerman/workerman/Events/React', '/vendor/workerman/workerman/Events/React/ExtEventLoop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12932, 'ExtLibEventLoop.php', '/vendor/workerman/workerman/Events/React', '/vendor/workerman/workerman/Events/React/ExtLibEventLoop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12933, 'StreamSelectLoop.php', '/vendor/workerman/workerman/Events/React', '/vendor/workerman/workerman/Events/React/StreamSelectLoop.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12934, 'Select.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12935, 'Swoole.php', '/vendor/workerman/workerman/Events', '/vendor/workerman/workerman/Events/Swoole.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12936, 'Lib', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Lib', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12937, 'Constants.php', '/vendor/workerman/workerman/Lib', '/vendor/workerman/workerman/Lib/Constants.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12938, 'Timer.php', '/vendor/workerman/workerman/Lib', '/vendor/workerman/workerman/Lib/Timer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12939, 'MIT-LICENSE.txt', '/vendor/workerman/workerman', '/vendor/workerman/workerman/MIT-LICENSE.txt', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12940, 'Protocols', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Protocols', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12941, 'Frame.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Frame.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12942, 'Http', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Http', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12943, 'mime.types', '/vendor/workerman/workerman/Protocols/Http', '/vendor/workerman/workerman/Protocols/Http/mime.types', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12944, 'Http.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Http.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12945, 'ProtocolInterface.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/ProtocolInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12946, 'Text.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Text.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12947, 'Websocket.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Websocket.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12948, 'Ws.php', '/vendor/workerman/workerman/Protocols', '/vendor/workerman/workerman/Protocols/Ws.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12949, 'README.md', '/vendor/workerman/workerman', '/vendor/workerman/workerman/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12950, 'WebServer.php', '/vendor/workerman/workerman', '/vendor/workerman/workerman/WebServer.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12951, 'Worker.php', '/vendor/workerman/workerman', '/vendor/workerman/workerman/Worker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12952, 'composer.json', '/vendor/workerman/workerman', '/vendor/workerman/workerman/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12953, 'xaboy', '/vendor', '/vendor/xaboy', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12954, 'form-builder', '/vendor/xaboy', '/vendor/xaboy/form-builder', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12955, 'LICENSE', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/LICENSE', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12956, 'README.md', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/README.md', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12957, 'composer.json', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/composer.json', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12958, 'demo', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/demo', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12959, 'demo.php', '/vendor/xaboy/form-builder/demo', '/vendor/xaboy/form-builder/demo/demo.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12960, 'elm.php', '/vendor/xaboy/form-builder/demo', '/vendor/xaboy/form-builder/demo/elm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12961, 'iview.php', '/vendor/xaboy/form-builder/demo', '/vendor/xaboy/form-builder/demo/iview.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12962, 'images', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/images', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12963, 'components.png', '/vendor/xaboy/form-builder/images', '/vendor/xaboy/form-builder/images/components.png', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12964, 'demo02.jpg', '/vendor/xaboy/form-builder/images', '/vendor/xaboy/form-builder/images/demo02.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12965, 'demo03.jpg', '/vendor/xaboy/form-builder/images', '/vendor/xaboy/form-builder/images/demo03.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12966, 'demo04.jpg', '/vendor/xaboy/form-builder/images', '/vendor/xaboy/form-builder/images/demo04.jpg', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12967, 'src', '/vendor/xaboy/form-builder', '/vendor/xaboy/form-builder/src', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12968, 'Annotation', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Annotation', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12969, 'AnnotationReader.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/AnnotationReader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12970, 'ClassName.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/ClassName.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12971, 'Col.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/Col.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12972, 'Emit.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/Emit.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12973, 'Group.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/Group.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12974, 'Info.php', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/Info.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12975, 'Validate', '/vendor/xaboy/form-builder/src/Annotation', '/vendor/xaboy/form-builder/src/Annotation/Validate', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12976, 'Enum.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Enum.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12977, 'Len.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Len.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12978, 'Max.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Max.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12979, 'Min.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Min.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12980, 'Pattern.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Pattern.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12981, 'Range.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Range.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12982, 'Required.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/Required.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12983, 'ValidateAnnotation.php', '/vendor/xaboy/form-builder/src/Annotation/Validate', '/vendor/xaboy/form-builder/src/Annotation/Validate/ValidateAnnotation.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12984, 'Contract', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Contract', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12985, 'AnnotationInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/AnnotationInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12986, 'BootstrapInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/BootstrapInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12987, 'ColComponentInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/ColComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12988, 'ConfigInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/ConfigInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12989, 'CustomComponentInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/CustomComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12990, 'FormComponentInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/FormComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12991, 'FormHandleInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/FormHandleInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12992, 'FormOptionsComponentInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/FormOptionsComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12993, 'OptionComponentInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/OptionComponentInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12994, 'StyleInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/StyleInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12995, 'ValidateInterface.php', '/vendor/xaboy/form-builder/src/Contract', '/vendor/xaboy/form-builder/src/Contract/ValidateInterface.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12996, 'Driver', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Driver', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12997, 'CustomComponent.php', '/vendor/xaboy/form-builder/src/Driver', '/vendor/xaboy/form-builder/src/Driver/CustomComponent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12998, 'FormComponent.php', '/vendor/xaboy/form-builder/src/Driver', '/vendor/xaboy/form-builder/src/Driver/FormComponent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(12999, 'FormOptionsComponent.php', '/vendor/xaboy/form-builder/src/Driver', '/vendor/xaboy/form-builder/src/Driver/FormOptionsComponent.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13000, 'Factory', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Factory', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13001, 'Base.php', '/vendor/xaboy/form-builder/src/Factory', '/vendor/xaboy/form-builder/src/Factory/Base.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13002, 'Elm.php', '/vendor/xaboy/form-builder/src/Factory', '/vendor/xaboy/form-builder/src/Factory/Elm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13003, 'Iview.php', '/vendor/xaboy/form-builder/src/Factory', '/vendor/xaboy/form-builder/src/Factory/Iview.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13004, 'Form', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Form', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13005, 'ElmForm.php', '/vendor/xaboy/form-builder/src/Form', '/vendor/xaboy/form-builder/src/Form/ElmForm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13006, 'IviewForm.php', '/vendor/xaboy/form-builder/src/Form', '/vendor/xaboy/form-builder/src/Form/IviewForm.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13007, 'Form.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Form.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13008, 'FormComponentDriver.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/FormComponentDriver.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13009, 'FormHandle.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/FormHandle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13010, 'Handle', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Handle', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13011, 'ElmFormHandle.php', '/vendor/xaboy/form-builder/src/Handle', '/vendor/xaboy/form-builder/src/Handle/ElmFormHandle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13012, 'IviewFormHandle.php', '/vendor/xaboy/form-builder/src/Handle', '/vendor/xaboy/form-builder/src/Handle/IviewFormHandle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13013, 'Helper.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Helper.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13014, 'Json.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Json.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13015, 'Response.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Response.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13016, 'Rule', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Rule', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13017, 'BaseRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/BaseRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13018, 'CallPropsRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/CallPropsRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13019, 'ChildrenRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/ChildrenRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13020, 'ControlRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/ControlRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13021, 'EmitRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/EmitRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13022, 'OptionsRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/OptionsRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13023, 'PropsRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/PropsRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13024, 'ValidateRule.php', '/vendor/xaboy/form-builder/src/Rule', '/vendor/xaboy/form-builder/src/Rule/ValidateRule.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13025, 'Template', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Template', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13026, 'createScript.min.php', '/vendor/xaboy/form-builder/src/Template', '/vendor/xaboy/form-builder/src/Template/createScript.min.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13027, 'createScript.php', '/vendor/xaboy/form-builder/src/Template', '/vendor/xaboy/form-builder/src/Template/createScript.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13028, 'form.php', '/vendor/xaboy/form-builder/src/Template', '/vendor/xaboy/form-builder/src/Template/form.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13029, 'UI', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/UI', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13030, 'Elm', '/vendor/xaboy/form-builder/src/UI', '/vendor/xaboy/form-builder/src/UI/Elm', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13031, 'Bootstrap.php', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13032, 'Components', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13033, 'Button.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Button.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13034, 'Cascader.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Cascader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13035, 'Checkbox.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Checkbox.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13036, 'ColorPicker.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/ColorPicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13037, 'DatePicker.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/DatePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13038, 'Frame.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Frame.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13039, 'Group.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Group.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13040, 'Hidden.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Hidden.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13041, 'Input.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Input.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13042, 'InputNumber.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/InputNumber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13043, 'Option.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Option.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13044, 'Popover.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Popover.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13045, 'Radio.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Radio.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13046, 'Rate.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Rate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13047, 'Select.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13048, 'Slider.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Slider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13049, 'Switches.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Switches.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13050, 'TimePicker.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/TimePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13051, 'Tooltip.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Tooltip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13052, 'Tree.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Tree.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13053, 'TreeData.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/TreeData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13054, 'Upload.php', '/vendor/xaboy/form-builder/src/UI/Elm/Components', '/vendor/xaboy/form-builder/src/UI/Elm/Components/Upload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13055, 'Config.php', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13056, 'Style', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13057, 'Col.php', '/vendor/xaboy/form-builder/src/UI/Elm/Style', '/vendor/xaboy/form-builder/src/UI/Elm/Style/Col.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13058, 'FormStyle.php', '/vendor/xaboy/form-builder/src/UI/Elm/Style', '/vendor/xaboy/form-builder/src/UI/Elm/Style/FormStyle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13059, 'Row.php', '/vendor/xaboy/form-builder/src/UI/Elm/Style', '/vendor/xaboy/form-builder/src/UI/Elm/Style/Row.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13060, 'Traits', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13061, 'CascaderFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/CascaderFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13062, 'CheckBoxFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/CheckBoxFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13063, 'ColorPickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/ColorPickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13064, 'DatePickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/DatePickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13065, 'FormStyleFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/FormStyleFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13066, 'FrameFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/FrameFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13067, 'GroupFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/GroupFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13068, 'HiddenFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/HiddenFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13069, 'InputFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/InputFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13070, 'InputNumberFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/InputNumberFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13071, 'RadioFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/RadioFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13072, 'RateFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/RateFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13073, 'SelectFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/SelectFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13074, 'SliderFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/SliderFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13075, 'SwitchesFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/SwitchesFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13076, 'TimePickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/TimePickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13077, 'TreeFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/TreeFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13078, 'UploadFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/UploadFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13079, 'ValidateFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Elm/Traits', '/vendor/xaboy/form-builder/src/UI/Elm/Traits/ValidateFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13080, 'Validate.php', '/vendor/xaboy/form-builder/src/UI/Elm', '/vendor/xaboy/form-builder/src/UI/Elm/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13081, 'Iview', '/vendor/xaboy/form-builder/src/UI', '/vendor/xaboy/form-builder/src/UI/Iview', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13082, 'Bootstrap.php', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Bootstrap.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13083, 'Components', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13084, 'Button.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Button.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13085, 'Cascader.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Cascader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13086, 'Checkbox.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Checkbox.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13087, 'ColorPicker.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/ColorPicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13088, 'DatePicker.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/DatePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13089, 'Frame.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Frame.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13090, 'Group.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Group.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13091, 'Hidden.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Hidden.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13092, 'Input.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Input.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13093, 'InputNumber.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/InputNumber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13094, 'Option.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Option.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13095, 'Poptip.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Poptip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13096, 'Radio.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Radio.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13097, 'Rate.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Rate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13098, 'Select.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13099, 'Slider.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Slider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13100, 'Switches.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Switches.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13101, 'TimePicker.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/TimePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13102, 'Tooltip.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Tooltip.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13103, 'Tree.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Tree.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13104, 'TreeData.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/TreeData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13105, 'Upload.php', '/vendor/xaboy/form-builder/src/UI/Iview/Components', '/vendor/xaboy/form-builder/src/UI/Iview/Components/Upload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13106, 'Config.php', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Config.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13107, 'Style', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Style', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13108, 'Col.php', '/vendor/xaboy/form-builder/src/UI/Iview/Style', '/vendor/xaboy/form-builder/src/UI/Iview/Style/Col.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13109, 'FormStyle.php', '/vendor/xaboy/form-builder/src/UI/Iview/Style', '/vendor/xaboy/form-builder/src/UI/Iview/Style/FormStyle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13110, 'Row.php', '/vendor/xaboy/form-builder/src/UI/Iview/Style', '/vendor/xaboy/form-builder/src/UI/Iview/Style/Row.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13111, 'Traits', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13112, 'CascaderFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/CascaderFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13113, 'CheckBoxFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/CheckBoxFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13114, 'ColorPickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/ColorPickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13115, 'DatePickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/DatePickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13116, 'FormStyleFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/FormStyleFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13117, 'FrameFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/FrameFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13118, 'GroupFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/GroupFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13119, 'HiddenFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/HiddenFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13120, 'InputFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/InputFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13121, 'InputNumberFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/InputNumberFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13122, 'RadioFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/RadioFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13123, 'RateFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/RateFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13124, 'SelectFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/SelectFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13125, 'SliderFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/SliderFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13126, 'SwitchesFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/SwitchesFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13127, 'TimePickerFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/TimePickerFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13128, 'TreeFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/TreeFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13129, 'UploadFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/UploadFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13130, 'ValidateFactoryTrait.php', '/vendor/xaboy/form-builder/src/UI/Iview/Traits', '/vendor/xaboy/form-builder/src/UI/Iview/Traits/ValidateFactoryTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13131, 'Validate.php', '/vendor/xaboy/form-builder/src/UI/Iview', '/vendor/xaboy/form-builder/src/UI/Iview/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13132, 'Util.php', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/Util.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13133, 'components', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/components', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13134, 'Cascader.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Cascader.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13135, 'Checkbox.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Checkbox.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13136, 'Col.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Col.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13137, 'ColorPicker.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/ColorPicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13138, 'DatePicker.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/DatePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13139, 'FormStyle.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/FormStyle.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13140, 'Frame.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Frame.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13141, 'Hidden.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Hidden.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13142, 'Input.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Input.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13143, 'InputNumber.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/InputNumber.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13144, 'Option.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Option.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13145, 'Radio.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Radio.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13146, 'Rate.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Rate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13147, 'Row.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Row.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13148, 'Select.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Select.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13149, 'Slider.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Slider.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13150, 'Switches.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Switches.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13151, 'TimePicker.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/TimePicker.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13152, 'Tree.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Tree.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13153, 'TreeData.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/TreeData.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13154, 'Upload.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Upload.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13155, 'Validate.php', '/vendor/xaboy/form-builder/src/components', '/vendor/xaboy/form-builder/src/components/Validate.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13156, 'exception', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/exception', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13157, 'FormBuilderException.php', '/vendor/xaboy/form-builder/src/exception', '/vendor/xaboy/form-builder/src/exception/FormBuilderException.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13158, 'interfaces', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/interfaces', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13159, 'FormComponentInterFace.php', '/vendor/xaboy/form-builder/src/interfaces', '/vendor/xaboy/form-builder/src/interfaces/FormComponentInterFace.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13160, 'traits', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/traits', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13161, 'component', '/vendor/xaboy/form-builder/src/traits', '/vendor/xaboy/form-builder/src/traits/component', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13162, 'CallPropsTrait.php', '/vendor/xaboy/form-builder/src/traits/component', '/vendor/xaboy/form-builder/src/traits/component/CallPropsTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13163, 'ComponentOptionsTrait.php', '/vendor/xaboy/form-builder/src/traits/component', '/vendor/xaboy/form-builder/src/traits/component/ComponentOptionsTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13164, 'form', '/vendor/xaboy/form-builder/src/traits', '/vendor/xaboy/form-builder/src/traits/form', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13165, 'FormCascaderTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormCascaderTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13166, 'FormCheckBoxTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormCheckBoxTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13167, 'FormColorPickerTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormColorPickerTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13168, 'FormDatePickerTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormDatePickerTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13169, 'FormFrameTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormFrameTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13170, 'FormHiddenTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormHiddenTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13171, 'FormInputNumberTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormInputNumberTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13172, 'FormInputTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormInputTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13173, 'FormOptionTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormOptionTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13174, 'FormRadioTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormRadioTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13175, 'FormRateTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormRateTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13176, 'FormSelectTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormSelectTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13177, 'FormSliderTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormSliderTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13178, 'FormStyleTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormStyleTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13179, 'FormSwitchesTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormSwitchesTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13180, 'FormTimePickerTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormTimePickerTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13181, 'FormTreeTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormTreeTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13182, 'FormUploadTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormUploadTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13183, 'FormValidateTrait.php', '/vendor/xaboy/form-builder/src/traits/form', '/vendor/xaboy/form-builder/src/traits/form/FormValidateTrait.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13184, 'view', '/vendor/xaboy/form-builder/src', '/vendor/xaboy/form-builder/src/view', 'dir', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13185, 'form.php', '/vendor/xaboy/form-builder/src/view', '/vendor/xaboy/form-builder/src/view/form.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13186, 'formScript.php', '/vendor/xaboy/form-builder/src/view', '/vendor/xaboy/form-builder/src/view/formScript.php', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', ''),
|
||
(13187, 'workerman.bat', '', '/workerman.bat', 'file', '2023-04-26 16:58:01', '2023-04-26 16:56:54', '命令行启动'),
|
||
(13188, 'apifox.json', '', '/apifox.json', 'file', '2023-04-26 15:14:11', '2023-04-28 11:10:11', '');
|
||
SQL
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "system_menus",
|
||
'sql' => "DROP TABLE `@table`"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 1,
|
||
'table' => "system_menus",
|
||
'findSql' => "select * from information_schema.tables where table_name ='@table'",
|
||
'sql' => "CREATE TABLE `@table` (
|
||
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
|
||
`pid` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '父级id',
|
||
`icon` varchar(16) NOT NULL DEFAULT '' COMMENT '图标',
|
||
`menu_name` varchar(32) NOT NULL DEFAULT '' COMMENT '按钮名',
|
||
`module` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '模块名',
|
||
`controller` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '控制器',
|
||
`action` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT '方法名',
|
||
`api_url` varchar(100) NOT NULL DEFAULT '' COMMENT 'api接口地址',
|
||
`methods` varchar(10) NOT NULL DEFAULT '' COMMENT '提交方式POST GET PUT DELETE',
|
||
`params` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '[]' COMMENT '参数',
|
||
`sort` tinyint(3) NOT NULL DEFAULT '1' COMMENT '排序',
|
||
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否为隐藏菜单0=隐藏菜单,1=显示菜单',
|
||
`is_show_path` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为隐藏菜单供前台使用',
|
||
`access` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '子管理员是否可用',
|
||
`menu_path` varchar(128) NOT NULL DEFAULT '' COMMENT '路由名称 前端使用',
|
||
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
|
||
`auth_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为菜单 1菜单 2功能',
|
||
`header` varchar(50) NOT NULL DEFAULT '' COMMENT '顶部菜单标示',
|
||
`is_header` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否顶部菜单1是0否',
|
||
`unique_auth` varchar(150) NOT NULL DEFAULT '' COMMENT '前台唯一标识',
|
||
`is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除',
|
||
`mark` varchar(500) NOT NULL DEFAULT '' COMMENT '备注',
|
||
PRIMARY KEY (`id`) USING BTREE,
|
||
KEY `pid` (`pid`) USING BTREE,
|
||
KEY `is_show` (`is_show`) USING BTREE,
|
||
KEY `access` (`access`) USING BTREE
|
||
) ENGINE=InnoDB AUTO_INCREMENT=2473 DEFAULT CHARSET=utf8 COMMENT='菜单表'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "system_menus",
|
||
'sql' => <<<SQL
|
||
INSERT INTO `@table` (`id`, `pid`, `icon`, `menu_name`, `module`, `controller`, `action`, `api_url`, `methods`, `params`, `sort`, `is_show`, `is_show_path`, `access`, `menu_path`, `path`, `auth_type`, `header`, `is_header`, `unique_auth`, `is_del`, `mark`) VALUES
|
||
(1, 0, 'md-basket', '商品', 'admin', 'product', 'index', '', '', '[]', 115, 1, 1, 1, '/product', '', 1, '0', 1, 'admin-product', 0, '商品'),
|
||
(2, 1, '', '商品管理', 'admin', 'product.product', 'index', '', '', '[]', 1, 1, 1, 1, '/product/product_list', '', 1, '', 0, 'admin-store-storeProuduct-index', 0, '商品管理'),
|
||
(3, 1, '', '商品分类', 'admin', 'product.storeCategory', 'index', '', '', '[]', 1, 1, 1, 1, '/product/product_classify', '', 1, 'product', 0, 'admin-store-storeCategory-index', 0, '商品分类'),
|
||
(4, 0, 'md-cart', '订单', 'admin', 'order', 'index', '', '', '[]', 120, 1, 1, 1, '/order', '', 1, 'home', 1, 'admin-order', 0, '订单'),
|
||
(5, 4, '', '订单管理', 'admin', 'order.store_order', 'index', '', '', '[]', 10, 1, 1, 1, '/order/list', '4', 1, 'order', 0, 'admin-order-storeOrder-index', 0, '订单管理'),
|
||
(6, 1, '', '商品评论', 'admin', 'store.store_product_reply', 'index', '', '', '[]', 0, 1, 1, 1, '/product/product_reply', '', 1, 'product', 0, 'product-product-reply', 0, '商品评论'),
|
||
(7, 0, 'md-home', '主页', 'admin', 'index', '', '', '', '[]', 127, 1, 1, 1, '/home', '', 1, 'home', 1, 'admin-home', 0, '主页'),
|
||
(9, 0, 'md-person', '用户', 'admin', 'user.user', '', '', '', '[]', 125, 1, 1, 1, '/user', '', 1, 'user', 1, 'admin-user', 0, '用户'),
|
||
(10, 9, '', '用户管理', 'admin', 'user.user', 'index', '', '', '[]', 10, 1, 1, 1, '/user/list', '', 1, 'user', 0, 'admin-user-user-index', 0, '用户管理'),
|
||
(11, 9, '', '用户等级', 'admin', 'user.user_level', 'index', '', '', '[]', 7, 1, 1, 1, '/user/level', '', 1, 'user', 0, 'user-user-level', 0, '用户等级'),
|
||
(12, 0, 'md-settings', '设置', 'admin', 'setting.system_config', 'index', '', '', '[]', 1, 1, 1, 1, '/setting', '', 1, 'setting', 1, 'admin-setting', 0, '设置'),
|
||
(14, 12, '', '管理权限', 'admin', 'setting.system_admin', '', '', '', '[]', 0, 1, 1, 1, '/setting/auth/list', '', 1, 'setting', 0, 'setting-system-admin', 0, '管理权限'),
|
||
(19, 14, '', '角色管理', 'admin', 'setting.system_role', 'index', '', '', '[]', 1, 1, 1, 1, '/setting/system_role/index', '', 1, 'setting', 0, 'setting-system-role', 0, '角色管理'),
|
||
(20, 14, '', '管理员列表', 'admin', 'setting.system_admin', 'index', '', '', '[]', 1, 1, 1, 1, '/setting/system_admin/index', '', 1, 'setting', 0, 'setting-system-list', 0, '管理员列表'),
|
||
(21, 14, '', '权限设置', 'admin', 'setting.system_menus', 'index', '', '', '[]', 1, 1, 1, 1, '/setting/system_menus/index', '12/14', 1, 'setting', 1, 'setting-system-menus', 0, '菜单管理'),
|
||
(23, 12, '', '系统设置', 'admin', 'setting.system_config', 'index', '', '', '[]', 10, 1, 1, 1, '/setting/system_config', '', 1, 'setting', 0, 'setting-system-config', 0, '系统设置'),
|
||
(25, 0, 'md-hammer', '维护', 'admin', 'system', '', '', '', '[]', 0, 1, 1, 1, '/system', '', 1, 'setting', 1, 'admin-system', 0, '维护'),
|
||
(26, 0, 'ios-people', '分销', 'admin', 'agent', '', '', '', '[]', 104, 1, 1, 1, '/agent', '', 1, 'user', 1, 'admin-agent', 0, '分销'),
|
||
(27, 0, 'ios-paper-plane', '营销', 'admin', 'marketing', '', '', '', '[]', 110, 1, 1, 1, '/marketing', '', 1, 'home', 1, 'admin-marketing', 0, '营销'),
|
||
(28, 26, '', '分销设置', 'admin', 'setting.system_config', '', '', '', '[]', 1, 1, 1, 1, '/setting/system_config_retail/2/9', '', 1, 'setting', 0, 'setting-system-config', 0, '分销设置'),
|
||
(29, 26, '', '分销员管理', 'admin', 'agent.agent_manage', 'index', '', '', '[]', 99, 1, 1, 1, '/agent/agent_manage/index', '', 1, 'user', 0, 'agent-agent-manage', 0, '分销员管理'),
|
||
(30, 27, '', '优惠券', 'admin', 'marketing.store_coupon', '', '', '', '[]', 100, 1, 1, 1, '/marketing/store_coupon', '27', 1, 'marketing', 0, 'marketing-store_coupon-index', 0, '优惠券'),
|
||
(31, 27, '', '砍价管理', 'admin', 'marketing.store_bargain', '', '', '', '[]', 85, 1, 1, 1, '/marketing/store_bargain', '27', 1, 'marketing', 0, 'marketing-store_bargain-index', 0, '砍价管理'),
|
||
(32, 27, '', '拼团管理', 'admin', 'marketing.store_combination', '', '', '', '[]', 80, 1, 1, 1, '/marketing/store_combination', '27', 1, 'marketing', 0, 'marketing-store_combination-index', 0, '拼团管理'),
|
||
(33, 27, '', '秒杀管理', 'admin', 'marketing.store_seckill', '', '', '', '[]', 75, 1, 1, 1, '/marketing/store_seckill', '27', 1, 'marketing', 0, 'marketing-store_seckill-index', 0, '秒杀管理'),
|
||
(34, 27, '', '积分管理', 'admin', 'marketing.user_point', '', '', '', '[]', 95, 1, 1, 1, '/marketing/user_point', '27', 1, 'marketing', 0, 'marketing-user_point-index', 0, '积分管理'),
|
||
(35, 0, 'logo-usd', '财务', 'admin', 'finance', '', '', '', '[]', 90, 1, 1, 1, '/finance', '', 1, 'home', 1, 'admin-finance', 0, '财务'),
|
||
(36, 35, '', '财务操作', 'admin', 'finance', '', '', '', '[]', 1, 1, 1, 1, '/finance/user_extract', '', 1, 'finance', 0, 'finance-user_extract-index', 0, '财务操作'),
|
||
(37, 35, '', '财务记录', 'admin', 'finance', '', '', '', '[]', 1, 1, 1, 1, '/finance/user_recharge', '', 1, 'finance', 0, 'finance-user-recharge-index', 0, '财务记录'),
|
||
(38, 35, '', '佣金记录', 'admin', 'finance', '', '', '', '[]', 1, 1, 1, 1, '/finance/finance', '', 1, 'finance', 0, 'finance-finance-index', 0, '佣金记录'),
|
||
(39, 36, '', '提现申请', 'admin', 'finance.user_extract', '', '', '', '[]', 1, 1, 1, 1, '/finance/user_extract/index', '', 1, 'finance', 0, 'finance-user_extract', 0, '提现申请'),
|
||
(40, 37, '', '充值记录', 'admin', 'finance.user_recharge', '', '', '', '[]', 1, 1, 1, 1, '/finance/user_recharge/index', '', 1, 'finance', 0, 'finance-user-recharge', 0, '充值记录'),
|
||
(42, 38, '', '佣金记录', 'admin', 'finance.finance', '', '', '', '[]', 1, 1, 1, 1, '/finance/finance/commission', '', 1, 'finance', 0, 'finance-finance-commission', 0, '佣金记录'),
|
||
(43, 0, 'ios-book', '内容', 'admin', 'cms', '', '', '', '[]', 85, 1, 1, 1, '/cms', '', 1, 'home', 1, 'admin-cms', 0, '内容'),
|
||
(44, 43, '', '文章管理', 'admin', 'cms.article', 'index', '', '', '[]', 1, 1, 1, 1, '/cms/article/index', '', 1, 'cms', 0, 'cms-article-index', 0, '文章管理'),
|
||
(45, 43, '', '文章分类', 'admin', 'cms.article_category', 'index', '', '', '[]', 1, 1, 1, 1, '/cms/article_category/index', '', 1, 'cms', 0, 'cms-article-category', 0, '文章分类'),
|
||
(47, 65, '', '系统日志', 'admin', 'system.system_log', 'index', '', '', '[]', 0, 1, 1, 1, '/system/maintain/system_log/index', '', 1, 'system', 0, 'system-maintain-system-log', 0, '系统日志'),
|
||
(56, 25, '', '开发配置', 'admin', 'system', '', '', '', '[]', 10, 1, 1, 1, '/system/config', '', 1, 'system', 0, 'system-config-index', 0, '开发配置'),
|
||
(57, 65, '', '刷新缓存', 'admin', 'system', 'clear', '', '', '[]', 1, 1, 1, 1, '/system/maintain/clear/index', '', 1, 'system', 0, 'system-clear', 0, '刷新缓存'),
|
||
(65, 25, '', '安全维护', 'admin', 'system', '', '', '', '[]', 7, 1, 1, 1, '/system/maintain', '', 1, 'system', 0, 'system-maintain-index', 0, '安全维护'),
|
||
(66, 1073, '', '清除数据', 'admin', 'system.system_cleardata', 'index', '', '', '[]', 0, 1, 1, 1, '/system/maintain/system_cleardata/index', '25/1073', 1, 'system', 0, 'system-maintain-system-cleardata', 0, '清除数据'),
|
||
(67, 1695, '', '数据库管理', 'admin', 'system.system_databackup', 'index', '', '', '[]', 0, 1, 1, 1, '/system/maintain/system_databackup/index', '25/1695', 1, 'system', 1, 'system-maintain-system-databackup', 0, '数据库管理'),
|
||
(69, 135, '', '公众号', 'admin', 'wechat', '', '', '', '[]', 4, 1, 1, 1, '/app/wechat', '135', 1, 'app', 0, 'admin-wechat', 0, '公众号'),
|
||
(71, 30, '', '优惠券列表', 'admin', 'marketing.store_coupon_issue', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_coupon_issue/index', '', 1, 'marketing', 0, 'marketing-store_coupon_issue', 0, '优惠券列表'),
|
||
(72, 30, '', '用户领取记录', 'admin', 'marketing.store_coupon_user', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_coupon_user/index', '', 1, 'marketing', 0, 'marketing-store_coupon_user', 0, '用户领取记录'),
|
||
(74, 31, '', '砍价商品', 'admin', 'marketing.store_bargain', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_bargain/index', '', 1, 'marketing', 0, 'marketing-store_bargain', 0, '砍价商品'),
|
||
(75, 32, '', '拼团商品', 'admin', 'marketing.store_combination', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_combination/index', '', 1, 'marketing', 0, 'marketing-store_combination', 0, '拼团商品'),
|
||
(76, 32, '', '拼团列表', 'admin', 'marketing.store_combination', 'combina_list', '', '', '[]', 0, 1, 1, 1, '/marketing/store_combination/combina_list', '', 1, 'marketing', 0, 'marketing-store_combination-combina_list', 0, '拼团列表'),
|
||
(77, 33, '', '秒杀商品', 'admin', 'marketing.store_seckill', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_seckill/index', '', 1, 'marketing', 0, 'marketing-store_seckill', 0, '秒杀商品'),
|
||
(78, 33, '', '秒杀配置', 'admin', 'marketing.store_seckill', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/store_seckill_data/index/49', '', 1, 'marketing', 0, 'marketing-store_seckill-data', 0, '秒杀配置'),
|
||
(79, 34, '', '积分配置', 'admin', 'setting.system_config/index.html', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/integral/system_config/3/11', '', 1, 'marketing', 0, 'marketing-integral-system_config', 0, '积分配置'),
|
||
(92, 69, '', '微信菜单', 'admin', 'application.wechat_menus', 'index', '', '', '[]', 0, 1, 1, 1, '/app/wechat/setting/menus/index', '', 1, 'app', 0, 'application-wechat-menus', 0, '微信菜单'),
|
||
(94, 1056, '', '一号通', 'admin', 'setting.sms_config', '', '', '', '[]', 8, 1, 1, 1, '/setting/sms/sms_config/index', '12/1056', 1, 'setting', 0, 'setting-sms', 0, '一号通'),
|
||
(99, 1, '', '商品规格', 'admin', 'store.store_product', 'index', '', '', '[]', 1, 1, 1, 1, '/product/product_attr', '', 1, 'product', 0, 'product-product-attr', 0, '商品规格'),
|
||
(109, 69, '', '图文管理', 'admin', 'wechat.wechat_news_category', 'index', '', '', '[]', 0, 1, 1, 1, '/app/wechat/news_category/index', '', 1, 'app', 0, 'wechat-wechat-news-category-index', 0, '图文管理'),
|
||
(111, 56, '', '配置分类', 'admin', 'setting.system_config_tab', 'index', '', '', '[]', 99, 1, 1, 1, '/system/config/system_config_tab/index', '25/56', 1, 'system', 0, 'system-config-system_config-tab', 0, '配置分类'),
|
||
(112, 56, '', '组合数据', 'admin', 'setting.system_group', 'index', '', '', '[]', 98, 1, 1, 1, '/system/config/system_group/index', '25/56', 1, 'system', 0, 'system-config-system_config-group', 0, '组合数据'),
|
||
(113, 114, '', '关注回复', 'admin', 'wechat.reply', 'index', '', '', '[]', 0, 1, 1, 1, '/app/wechat/reply/follow/subscribe', '135/69/114', 1, 'app', 0, 'wechat-wechat-reply-subscribe', 0, '关注回复'),
|
||
(114, 69, '', '自动回复', 'admin', 'wechat.reply', '', '', '', '[]', 0, 1, 1, 1, '/app/wechat/reply', '', 1, 'app', 0, 'wechat-wechat-reply-index', 0, '自动回复'),
|
||
(115, 114, '', '关键字回复', 'admin', 'wechat.reply', 'keyword', '', '', '[]', 0, 1, 1, 1, '/app/wechat/reply/keyword', '', 1, 'app', 0, 'wechat-wechat-reply-keyword', 0, '关键字回复'),
|
||
(116, 114, '', '无效词回复', 'admin', 'wechat.reply', 'index', '', '', '[]', 0, 1, 1, 1, '/app/wechat/reply/index/default', '135/69/114', 1, 'app', 0, 'wechat-wechat-reply-default', 0, '无效词回复'),
|
||
(128, 656, '', '数据配置', 'admin', 'setting.system_group_data', 'index', '', '', '[]', 2, 1, 1, 1, '/setting/system_visualization_data', '12/656', 1, 'system', 0, 'admin-setting-system_visualization_data', 0, '数据配置'),
|
||
(135, 0, 'md-cube', '应用', 'admin', 'app', 'index', '', '', '[]', 70, 1, 1, 1, '/app', '', 1, 'app', 1, 'admin-app', 0, '应用'),
|
||
(144, 303, '', '提货点设置', 'admin', 'merchant.system_store', 'index', '', '', '[]', 5, 1, 1, 1, '/setting/merchant/system_store/index', '', 1, '', 0, 'setting-system-config-merchant', 0, '提货点设置'),
|
||
(145, 1073, '', '物流公司', 'admin', 'freight.express', 'index', '', '', '[]', 4, 1, 1, 1, '/setting/freight/express/index', '25/1073', 1, '', 0, 'setting-freight-express', 0, '物流公司'),
|
||
(154, 34, '', '签到配置', 'admin', 'setting.system_group_data', 'index', '', '', '[]', 0, 1, 1, 1, '/marketing/sign', '', 1, '', 0, 'marketing-sign-index', 0, '签到配置'),
|
||
(165, 0, 'md-chatboxes', '客服', 'admin', 'setting.storeService', 'index', '', '', '[]', 104, 1, 1, 1, '/kefu', '', 1, '', 1, 'setting-store-service', 0, '客服'),
|
||
(227, 9, '', '用户分组', 'admin', 'user.user_group', 'index', '', '', '[]', 9, 1, 1, 1, '/user/group', '', 1, 'user', 0, 'user-user-group', 0, '用户分组'),
|
||
(229, 1073, '', '城市数据', 'admin', 'setting.system_city', '', '', '', '[]', 1, 1, 1, 1, '/setting/freight/city/list', '25/1073', 1, 'setting', 0, 'setting-system-city', 0, '城市数据'),
|
||
(230, 303, '', '运费模板', 'admin', 'setting.shipping_templates', '', '', '', '[]', 0, 1, 1, 1, '/setting/freight/shipping_templates/list', '', 1, 'setting', 0, 'setting-shipping-templates', 0, '运费模板'),
|
||
(300, 144, '', '提货点', 'admin', 'merchant.system_store', 'index', '', '', '[]', 0, 1, 1, 1, '/setting/merchant/system_store/list', '', 1, 'setting', 0, 'setting-merchant-system-store', 0, '提货点'),
|
||
(301, 144, '', '核销员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/merchant/system_store_staff/index', '', 1, 'setting', 0, 'setting-merchant-system-store-staff', 0, '核销员'),
|
||
(302, 4, '', '核销订单', 'admin', '', 'index', '', '', '[]', 0, 1, 1, 1, '/setting/merchant/system_verify_order/index', '4', 1, 'setting', 0, 'setting-merchant-system-verify-order', 0, '核销订单'),
|
||
(303, 12, '', '发货设置', 'admin', 'setting', 'index', '', '', '[]', 0, 1, 1, 1, '/setting/freight', '12', 1, '', 0, 'admin-setting-freight', 0, '发货设置'),
|
||
(566, 656, '', '素材管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/file', '12/656', 1, '', 0, 'system-file', 0, '素材管理'),
|
||
(589, 9, '', '用户标签', 'admin', 'user.user_label', 'index', '', '', '[]', 8, 1, 1, 1, '/user/label', '', 1, 'user', 0, 'user-user-label', 0, '用户标签'),
|
||
(605, 25, '', '商业授权', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/maintain/auth', '', 1, '', 0, 'system-maintain-auth', 0, '商业授权'),
|
||
(655, 65, '', '在线升级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/onlineUpgrade/index', '25/65', 1, '', 0, 'system-onlineUpgrade-index', 0, '在线升级'),
|
||
(656, 0, 'md-construct', '装修', 'admin', '', '', '', '', '[]', 80, 1, 1, 1, '/setting/pages', '', 1, '', 1, 'admin-setting-pages', 0, '装修'),
|
||
(657, 656, '', '页面设计', 'admin', '', '', '', '', '[]', 3, 1, 1, 1, '/setting/pages/devise', '12/656', 1, '', 0, 'admin-setting-pages-devise', 0, '页面设计'),
|
||
(678, 165, '', '客服列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/store_service/index', '', 1, '', 0, 'admin-setting-store_service-index', 0, '客服列表'),
|
||
(679, 165, '', '客服话术', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/store_service/speechcraft', '', 1, '', 0, 'admin-setting-store_service-speechcraft', 0, '客服话术'),
|
||
(686, 27, '', '直播管理', 'admin', '', '', '', '', '[]', 65, 1, 1, 1, '/marketing/live', '27', 1, '', 0, 'admin-marketing-live', 0, '直播管理'),
|
||
(687, 686, '', '直播间管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/live/live_room', '', 1, '', 0, 'admin-marketing-live-live_room', 0, '直播间管理'),
|
||
(688, 686, '', '直播商品管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/live/live_goods', '', 1, '', 0, 'admin-marketing-live-live_goods', 0, '直播商品管理'),
|
||
(689, 686, '', '主播管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/live/anchor', '', 1, '', 0, 'admin-marketing-live-anchor', 0, '主播管理'),
|
||
(717, 7, '', '商品统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/statistic/product', '7', 1, '', 0, 'admin-statistic', 0, '商品统计'),
|
||
(718, 7, '', '用户统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/statistic/user', '7', 1, '', 0, 'admin-statistic', 0, '用户统计'),
|
||
(720, 303, '', '配送员管理', 'admin', '', '', '', '', '[]', 10, 1, 1, 1, '/setting/delivery_service/index', '', 1, '', 0, 'setting-delivery-service', 0, '配送员管理'),
|
||
(731, 27, '', '付费会员', 'admin', '', '', '', '', '[]', 70, 1, 1, 1, '/user/grade', '27', 1, '', 0, 'user-user-grade', 0, '付费会员'),
|
||
(738, 165, '', '用户留言', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/store_service/feedback', '', 1, '', 0, 'admin-setting-store_service-feedback', 0, '用户留言'),
|
||
(751, 731, '', '会员类型', 'admin', '', '', '', '', '[]', 5, 1, 1, 1, '/user/grade/type', '', 1, '', 0, 'admin-user-member-type', 0, '会员类型'),
|
||
(755, 31, '', '砍价列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_bargain/bargain_list', '', 1, '', 0, 'marketing-store_bargain-bargain_list', 0, '砍价列表'),
|
||
(760, 4, '', '收银订单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/order/offline', '', 1, '', 0, 'admin-order-offline', 0, '收银订单'),
|
||
(762, 731, '', '卡密会员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/user/grade/card', '', 1, '', 0, 'admin-user-grade-card', 0, '卡密会员'),
|
||
(763, 731, '', '会员记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/user/grade/record', '', 1, '', 0, 'admin-user-grade-record', 0, '会员记录'),
|
||
(765, 731, '', '会员权益', 'admin', '', '', '', '', '[]', 4, 1, 1, 1, '/user/grade/right', '', 1, '', 0, 'admin-user-grade-right', 0, '会员权益'),
|
||
(766, 7, '', '交易统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/statistic/transaction', '7', 1, '', 0, 'admin-statistic', 0, '交易统计'),
|
||
(767, 36, '', '发票管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/order/invoice/list', '', 1, '', 0, 'admin-order-startOrderInvoice-index', 0, '发票管理'),
|
||
(896, 26, '', '分销等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/membership_level/index', '26', 1, '', 0, 'admin-setting-membership_level-index', 0, '分销等级'),
|
||
(897, 4, '', '售后订单', 'admin', '', '', '', '', '[]', 9, 1, 1, 1, '/order/refund', '4', 1, '', 0, 'admin-order-refund', 0, '售后订单'),
|
||
(898, 12, '', '消息管理', 'admin', '', '', '', '', '[]', 9, 1, 1, 1, '/setting/notification/index', '12', 1, '', 0, 'setting-notification', 0, '消息管理'),
|
||
(902, 656, '', '主题风格', 'admin', '', '', '', '', '[]', 2, 1, 1, 1, '/setting/theme_style', '12/656', 1, '', 0, 'admin-setting-theme_style', 0, '主题风格'),
|
||
(903, 656, '', 'PC商城', 'admin', '', '', '', '', '[]', 2, 1, 1, 1, '/setting/pc_group_data', '12/656', 1, '', 0, 'setting-system-pc_data', 0, 'PC商城'),
|
||
(905, 34, '', '积分商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_integral/index', '27/34', 1, '', 0, 'marketing-store_integral', 0, '积分商品'),
|
||
(909, 27, '', '抽奖管理', 'admin', '', '', '', '', '[]', 90, 1, 1, 1, '/marketing/lottery/index', '27', 1, '', 0, 'marketing-lottery-index', 0, '抽奖管理'),
|
||
(912, 34, '', '积分订单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_integral/order_list', '27/34', 1, '', 0, 'marketing-store_integral-order', 0, '积分订单'),
|
||
(993, 135, '', '小程序', 'admin', '', '', '', '', '[]', 3, 1, 1, 1, '/app/routine', '135', 1, '', 0, 'admin-routine', 0, '小程序'),
|
||
(994, 993, '', '小程序下载', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/app/routine/download', '135/993', 1, '', 0, 'routine-download', 0, '小程序下载'),
|
||
(997, 7, '', '订单统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/statistic/order', '7', 1, '', 0, 'admin-statistic', 0, '订单统计'),
|
||
(998, 37, '', '资金流水', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/finance/capital_flow/index', '35/37', 1, '', 0, 'finance-capital_flow-index', 0, '资金流水'),
|
||
(999, 37, '', '账单记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/finance/billing_records/index', '35/37', 1, '', 0, 'finance-billing_records-index', 0, '账单记录'),
|
||
(1001, 34, '', '积分记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/point_record', '27/34', 1, '', 0, 'marketing-point_record-index', 0, '积分记录'),
|
||
(1002, 34, '', '积分统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/point_statistic', '27/34', 1, '', 0, 'marketing-point_statistic-index', 0, '积分统计'),
|
||
(1003, 35, '', '余额记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/finance/balance', '35', 1, '', 0, 'finance-balance-index', 0, '余额记录'),
|
||
(1004, 1003, '', '余额记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/finance/balance/balance', '35/1003', 1, '', 0, 'finance-user-balance', 0, '余额记录'),
|
||
(1005, 7, '', '余额统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/statistic/balance', '7', 1, '', 0, 'admin-statistic', 0, '余额统计'),
|
||
(1006, 69, '', '公众号配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/wechat_config/3/2', '135/69', 1, '', 0, 'setting-system-config', 0, '公众号配置'),
|
||
(1007, 993, '', '小程序配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/routine_config/3/7', '135/993', 1, '', 0, 'setting-system-config', 0, '小程序配置'),
|
||
(1008, 135, '', 'PC端', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/app/pc', '135', 1, '', 0, 'admin-pc', 0, 'PC端'),
|
||
(1009, 135, '', 'APP', 'admin', '', '', '', '', '[]', 2, 1, 1, 1, '/app/app', '135', 1, '', 0, 'admin-app', 0, 'APP'),
|
||
(1010, 1008, '', 'PC端配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/pc_config/3/75', '135/1008', 1, '', 0, 'setting-system-config', 0, 'PC端配置'),
|
||
(1011, 1009, '', 'APP配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/app_config/3/77', '135/1009', 1, '', 0, 'setting-system-config', 0, 'APP配置'),
|
||
(1012, 1056, '', '系统存储配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/storage', '12', 1, '', 0, 'setting-storage', 0, '系统存储配置'),
|
||
(1013, 26, '', '事业部', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/agent/division', '26', 1, '', 0, 'agent-division', 0, '事业部'),
|
||
(1014, 1013, '', '事业部列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/division/index', '26/1013', 1, '', 0, 'agent-division-index', 0, '事业部列表'),
|
||
(1015, 1013, '', '代理商列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/division/agent/index', '26/1013', 1, '', 0, 'agent-division-agent-index', 0, '代理商列表'),
|
||
(1016, 1013, '', '代理商申请', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/division/agent/applyList', '26/1013', 1, '', 0, 'agent-division-agent-applyList', 0, '代理商申请'),
|
||
(1018, 909, '', '抽奖配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/lottery/create', '27/909', 1, '', 0, 'admin-marketing-lottery-create', 0, '抽奖配置'),
|
||
(1019, 909, '', '中奖记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/lottery/recording_list', '27/909', 1, '', 0, 'admin-marketing-lottery-recording_list-id', 0, '中奖记录'),
|
||
(1023, 27, '', '渠道码', 'admin', '', '', '', '', '[]', 55, 1, 1, 1, '/marketing/channel_code/channelCodeIndex', '27', 1, '', 0, 'marketing-channel_code-index', 0, '渠道码'),
|
||
(1053, 27, '', '充值配置', 'admin', '', '', '', '', '[]', 60, 1, 1, 1, '/marketing/recharge', '27', 1, '', 0, 'marketing-recharge-index', 0, '充值配置'),
|
||
(1055, 1009, '', '版本管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/app/app/version', '135/1009', 1, '', 0, 'admin-app-version', 0, '版本管理'),
|
||
(1056, 12, '', '接口配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config', '12', 1, '', 0, 'setting-other', 0, '接口配置'),
|
||
(1057, 1056, '', '小票打印配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/print/2/21', '12/1056', 1, '', 0, 'setting-other-print', 0, '小票打印配置'),
|
||
(1058, 1056, '', '商品采集配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/copy/2/41', '12/1056', 1, '', 0, 'setting-other-copy', 0, '商品采集配置'),
|
||
(1059, 1056, '', '物流查询配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/logistics/2/64', '12/1056', 1, '', 0, 'setting-other-logistics', 0, '物流查询配置'),
|
||
(1060, 1056, '', '电子面单配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/electronic/2/66', '12/1056', 1, '', 0, 'setting-other-electronic', 0, '电子面单配置'),
|
||
(1061, 12, '', '协议设置', 'admin', '', '', '', '', '[]', 9, 1, 1, 1, '/setting/agreement', '12', 1, '', 0, 'setting-agreement', 0, '协议设置'),
|
||
(1062, 1056, '', '短信接口配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/sms/2/96', '12/1056', 1, '', 0, 'setting-other-sms', 0, '短信接口配置'),
|
||
(1063, 1056, '', '商城支付配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/other_config/pay/2/23', '12/1056', 1, '', 0, 'setting-other-pay', 0, '商城支付配置'),
|
||
(1064, 25, '', '对外接口', 'admin', '', '', '', '', '[]', 6, 1, 1, 1, '/setting/other_out_config', '25', 1, '', 0, 'setting-other-out', 0, '对外接口'),
|
||
(1066, 1064, '', '账号管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/system_out_account/index', '25/1064', 1, '', 0, 'setting-system-out-account-index', 0, '账号管理'),
|
||
(1067, 25, '', '语言设置', 'admin', '', '', '', '', '[]', 5, 1, 1, 1, '/setting/lang', '25', 1, '', 0, 'admin-lang', 0, '语言设置'),
|
||
(1068, 1067, '', '语言列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/lang/list', '12/1067', 1, '', 0, 'admin-lang-list', 0, '语言列表'),
|
||
(1069, 1067, '', '语言详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/lang/info', '12/1067', 1, '', 0, 'admin-lang-info', 0, '语言详情'),
|
||
(1070, 1067, '', '地区列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/lang/country', '25/1067', 1, '', 0, 'admin-lang-country', 0, '地区列表'),
|
||
(1071, 1695, '', '文件管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/maintain/system_file/opendir', '25/1695', 1, '', 0, 'system-maintain-system-file', 0, '文件管理'),
|
||
(1073, 25, '', '数据维护', 'admin', '', '', '', '', '[]', 7, 1, 1, 1, 'system/database/index', '25', 1, '', 0, 'system-database-index', 0, '数据维护'),
|
||
(1075, 731, '', '会员配置', 'admin', '', '', '', '', '[]', 6, 1, 1, 1, '/marketing/member/system_config/3/67', '27/731', 1, '', 0, 'marketing-member-system_config', 0, '会员配置'),
|
||
(1076, 56, '', '定时任务', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/crontab', '25/56', 1, '', 0, 'system-crontab-index', 0, '定时任务'),
|
||
(1078, 1695, '', '接口管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/backend_routing', '25/1695', 1, '', 0, 'system-config-backend-routing', 0, '接口管理'),
|
||
(1101, 1695, '', '代码生成', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/code_generation_list', '25/1695', 1, '', 0, 'system-config-code-generation-list', 0, '代码生成'),
|
||
(1695, 25, '', '开发工具', 'admin', '', '', '', '', '[]', 1, 1, 1, 1, '/tool', '25', 1, '', 0, 'admin-tool', 0, '开发工具'),
|
||
(2450, 69, '', '添加图文消息', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/app/wechat/news_category/save', '135/69', 3, '', 0, 'wechat-wechat-news-category-save', 0, '添加图文消息'),
|
||
(2451, 43, '', '文章添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/cms/article/add_article', '43', 3, '', 0, 'cms-article-creat', 0, '文章添加'),
|
||
(2452, 32, '', '拼团添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_combination/create', '27/32', 3, '', 0, 'marketing-store_combination-create', 0, '拼团添加'),
|
||
(2453, 30, '', '添加优惠券', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_coupon_issue/create', '27/30', 3, '', 0, 'marketing-store_coupon_issue-create', 0, '添加优惠券'),
|
||
(2454, 1, '', '商品添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/product/add_product', '1', 3, '', 0, 'admin-store-storeProuduct-index', 0, '商品添加'),
|
||
(2455, 31, '', '砍价添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_bargain/create', '27/31', 3, '', 0, 'marketing-store_bargain-create', 0, '砍价添加'),
|
||
(2456, 33, '', '秒杀添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_seckill/create', '27/33', 3, '', 0, 'marketing-store_seckill-create', 0, '秒杀添加'),
|
||
(2457, 34, '', '积分商品添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/store_integral/create', '27/34', 3, '', 0, 'marketing-store_integral-create', 0, '积分商品添加'),
|
||
(2458, 686, '', '直播间添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/live/add_live_room', '27/686', 3, '', 0, 'admin-marketing-live-add_live_room', 0, '直播间添加'),
|
||
(2459, 686, '', '直播商品管理', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/live/add_live_goods', '27/686', 3, '', 0, 'admin-marketing-live-add_live_goods', 0, '直播商品管理'),
|
||
(2460, 27, '', '渠道码添加', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/marketing/channel_code/create', '27', 3, '', 0, 'marketing-channel_code-create', 0, '渠道码添加'),
|
||
(2461, 656, '', '装修页面', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/setting/pages/diy', '656', 3, '', 0, 'admin-setting-pages-diy', 0, '装修页面'),
|
||
(2462, 1695, '', '代码生成', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/code_generation', '25/1695', 3, '', 0, 'system-config-code-generation', 0, '代码生成'),
|
||
(2463, 1695, '', '文件管理入口', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/maintain/system_file/login', '25/1695', 3, '', 0, 'system-maintain-system-file', 0, '文件管理入口'),
|
||
(2464, 7, '', '主页', 'admin', '', '', '', '', '[]', 100, 1, 1, 1, '/index', '7', 1, '', 0, 'admin-index-index', 0, '主页'),
|
||
(2472, 56, '', '权限维护', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/system/system_menus/index', '25/56', 1, '', 0, 'system_menus-index', 0, '权限规则'),
|
||
(2475, 10, '', '添加用户', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-create', 0, '添加用户'),
|
||
(2476, 2475, '', '添加编辑用户信息时候的信息', '', '', '', 'user/user/user_save_info/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-user_save_info', 0, '添加编辑用户信息时候的信息'),
|
||
(2477, 2475, '', '添加或修改用户标签表单', '', '', '', 'user/user_label/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-add', 0, '添加或修改用户标签表单'),
|
||
(2478, 2475, '', '添加或修改用户标签', '', '', '', 'user/user_label/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-save', 0, '添加或修改用户标签'),
|
||
(2479, 2475, '', '保存用户', '', '', '', 'user/user', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user', 0, '保存用户'),
|
||
(2480, 2475, '', '获取修改用户表单', '', '', '', 'user/user/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-edit', 0, '获取修改用户表单'),
|
||
(2481, 2475, '', '修改用户', '', '', '', 'user/user/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user', 0, '修改用户'),
|
||
(2482, 2475, '', '添加用户', '', '', '', 'user/user/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-save', 0, '添加用户'),
|
||
(2483, 10, '', '发送优惠券', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-send-coupon', 0, '发送优惠券'),
|
||
(2484, 2483, '', '发送优惠券列表', '', '', '', 'marketing/coupon/grant', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-grant', 0, '发送优惠券列表'),
|
||
(2485, 2483, '', '发送优惠券', '', '', '', 'marketing/coupon/user/grant', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-user-grant', 0, '发送优惠券'),
|
||
(2486, 10, '', '批量设置分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-batch-set-group', 0, '批量设置分组'),
|
||
(2487, 2486, '', '用户分组表单', '', '', '', 'user/set_group', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-set_group', 0, '用户分组表单'),
|
||
(2488, 2486, '', '设置用户分组', '', '', '', 'user/save_set_group', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-save_set_group', 0, '设置用户分组'),
|
||
(2489, 10, '', '批量设置标签', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-batch-set-label', 0, '批量设置标签'),
|
||
(2490, 2489, '', '获取用户标签', '', '', '', 'user/label/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-label', 0, '获取用户标签'),
|
||
(2491, 2489, '', '保存用户标签', '', '', '', 'user/save_set_label', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-save_set_label', 0, '保存用户标签'),
|
||
(2492, 10, '', '用户导出', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-export', 0, '用户导出'),
|
||
(2493, 2492, '', '用户列表导出', '', '', '', 'export/user_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-user_list', 0, '用户列表导出'),
|
||
(2494, 10, '', '用户详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-info', 0, '用户详情'),
|
||
(2495, 2494, '', '获取用户详情', '', '', '', 'user/user/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-6465801810568', 0, '获取用户详情'),
|
||
(2496, 2494, '', '修改用户', '', '', '', 'user/user/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-646580181056f', 0, '修改用户'),
|
||
(2497, 2494, '', '添加编辑用户信息时候的信息', '', '', '', 'user/user/user_save_info/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user-user_save_info-6465801810573', 0, '添加编辑用户信息时候的信息'),
|
||
(2498, 2494, '', '获取指定用户的信息', '', '', '', 'user/one_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-one_info', 0, '获取指定用户的信息'),
|
||
(2499, 2494, '', '添加或修改用户标签表单', '', '', '', 'user/user_label/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-add-6465802de8e2c', 0, '添加或修改用户标签表单'),
|
||
(2500, 2494, '', '添加或修改用户标签', '', '', '', 'user/user_label/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-save-6465802de8e30', 0, '添加或修改用户标签'),
|
||
(2501, 10, '', '积分余额', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-set-balance', 0, '积分余额'),
|
||
(2502, 2501, '', '修改积分余额表单', '', '', '', 'user/edit_other/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-edit_other', 0, '修改积分余额表单'),
|
||
(2503, 2501, '', '修改积分余额', '', '', '', 'user/update_other/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-update_other', 0, '修改积分余额'),
|
||
(2504, 10, '', '赠送会员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-set-level-time', 0, '赠送会员'),
|
||
(2505, 2504, '', '赠送付费会员时长', '', '', '', 'user/give_level_time/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-give_level_time', 0, '赠送付费会员时长'),
|
||
(2506, 2504, '', '执行赠送付费会员时长', '', '', '', 'user/save_give_level_time/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-save_give_level_time', 0, '执行赠送付费会员时长'),
|
||
(2507, 10, '', '设置分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-set-group', 0, '设置分组'),
|
||
(2508, 2507, '', '用户分组表单', '', '', '', 'user/set_group', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-set_group-646585b911c0b', 0, '用户分组表单'),
|
||
(2509, 2507, '', '设置用户分组', '', '', '', 'user/save_set_group', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-save_set_group-646585b911c11', 0, '设置用户分组'),
|
||
(2510, 10, '', '设置标签', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-set-label', 0, '设置标签'),
|
||
(2511, 2510, '', '获取用户标签', '', '', '', 'user/label/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-label-646585fd46ff0', 0, '获取用户标签'),
|
||
(2512, 2510, '', '设置和取消用户标签', '', '', '', 'user/label/<uid>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-label-646585fd46ff6', 0, '设置和取消用户标签'),
|
||
(2513, 10, '', '修改上级推广人', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/10', 3, '', 0, 'user-set-spread', 0, '修改上级推广人'),
|
||
(2514, 2513, '', '新增客服选择用户列表', '', '', '', 'app/wechat/kefu/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-create', 0, '新增客服选择用户列表'),
|
||
(2515, 2513, '', '修改上级推广人', '', '', '', 'agent/spread', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-spread', 0, '修改上级推广人'),
|
||
(2516, 227, '', '添加分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/227', 3, '', 0, 'user-group-add', 0, '添加分组'),
|
||
(2517, 227, '', '修改分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/227', 3, '', 0, 'user-group-update', 0, '修改分组'),
|
||
(2518, 227, '', '删除分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/227', 3, '', 0, 'user-group-delete', 0, '删除分组'),
|
||
(2519, 2516, '', '添加修改分组表单', '', '', '', 'user/user_group/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_group-add', 0, '添加修改分组表单'),
|
||
(2520, 2516, '', '保存分组表单数据', '', '', '', 'user/user_group/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_group-save', 0, '保存分组表单数据'),
|
||
(2521, 2517, '', '保存分组表单数据', '', '', '', 'user/user_group/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_group-save-646586e1d4557', 0, '保存分组表单数据'),
|
||
(2522, 2517, '', '添加修改分组表单', '', '', '', 'user/user_group/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_group-add-646586e1d455e', 0, '添加修改分组表单'),
|
||
(2523, 2518, '', '删除用户分组数据', '', '', '', 'user/user_group/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_group-del', 0, '删除用户分组数据'),
|
||
(2525, 589, '', '标签分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/589', 3, '', 0, 'user-label-cate', 0, '标签分类'),
|
||
(2526, 589, '', '添加标签', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/589', 3, '', 0, 'user-label-add', 0, '添加标签'),
|
||
(2527, 589, '', '修改标签', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/589', 3, '', 0, 'user-label-update', 0, '修改标签'),
|
||
(2528, 589, '', '删除标签', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/589', 3, '', 0, 'user-label-delete', 0, '删除标签'),
|
||
(2529, 2525, '', '获取标签分类表单', '', '', '', 'user/user_label_cate/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label_cate-create', 0, '获取标签分类表单'),
|
||
(2530, 2525, '', '保存标签分类', '', '', '', 'user/user_label_cate', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label_cate', 0, '保存标签分类'),
|
||
(2531, 2525, '', '获取修改标签分类表单', '', '', '', 'user/user_label_cate/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label_cate-edit', 0, '获取修改标签分类表单'),
|
||
(2532, 2525, '', '修改标签分类', '', '', '', 'user/user_label_cate/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label_cate', 0, '修改标签分类'),
|
||
(2533, 2525, '', '删除标签分类', '', '', '', 'user/user_label_cate/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label_cate', 0, '删除标签分类'),
|
||
(2534, 2526, '', '添加或修改用户标签', '', '', '', 'user/user_label/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-save-6465897098557', 0, '添加或修改用户标签'),
|
||
(2535, 2526, '', '添加或修改用户标签表单', '', '', '', 'user/user_label/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-add-646589709855d', 0, '添加或修改用户标签表单'),
|
||
(2536, 2527, '', '添加或修改用户标签', '', '', '', 'user/user_label/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-save-6465897903b20', 0, '添加或修改用户标签'),
|
||
(2537, 2527, '', '添加或修改用户标签表单', '', '', '', 'user/user_label/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-add-6465897903b2c', 0, '添加或修改用户标签表单'),
|
||
(2538, 2528, '', '删除用户标签', '', '', '', 'user/user_label/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_label-del', 0, '删除用户标签'),
|
||
(2539, 11, '', '添加等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/11', 3, '', 0, 'user-level-add', 0, '添加等级'),
|
||
(2540, 11, '', '修改等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/11', 3, '', 0, 'user-level-update', 0, '修改等级'),
|
||
(2541, 11, '', '删除等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/11', 3, '', 0, 'user-level-delete', 0, '删除等级'),
|
||
(2542, 11, '', '设置等级状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '9/11', 3, '', 0, 'user-level-status', 0, '设置等级状态'),
|
||
(2543, 2539, '', '添加或修改用户等级', '', '', '', 'user/user_level', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level', 0, '添加或修改用户等级'),
|
||
(2544, 2539, '', '添加用户等级表单', '', '', '', 'user/user_level/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level-create', 0, '添加用户等级表单'),
|
||
(2545, 2540, '', '添加用户等级表单', '', '', '', 'user/user_level/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level-create-64658a1262574', 0, '添加用户等级表单'),
|
||
(2546, 2540, '', '添加或修改用户等级', '', '', '', 'user/user_level', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level-64658a126257b', 0, '添加或修改用户等级'),
|
||
(2547, 2541, '', '删除用户等级', '', '', '', 'user/user_level/delete/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level-delete', 0, '删除用户等级'),
|
||
(2548, 2542, '', '设置用户等级上下架', '', '', '', 'user/user_level/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-user_level-set_show', 0, '设置用户等级上下架'),
|
||
(2549, 5, '', '删除订单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-delete', 0, '删除订单'),
|
||
(2550, 5, '', '订单核销', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-write-off', 0, '订单核销'),
|
||
(2551, 5, '', '订单导出', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-export', 0, '订单导出'),
|
||
(2554, 2549, '', '删除订单单个', '', '', '', 'order/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-del', 0, '删除订单单个'),
|
||
(2555, 2549, '', '批量删除订单', '', '', '', 'order/dels', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-dels', 0, '批量删除订单'),
|
||
(2556, 2550, '', '订单核销', '', '', '', 'order/write', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-write', 0, '订单核销'),
|
||
(2557, 2550, '', '订单号核销', '', '', '', 'order/write_update/<order_id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-write_update', 0, '订单号核销'),
|
||
(2558, 2551, '', '订单列表导出', '', '', '', 'export/order_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-order_list', 0, '订单列表导出'),
|
||
(2559, 5, '', '订单编辑', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-edit', 0, '订单编辑'),
|
||
(2560, 5, '', '订单发货', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-send', 0, '订单发货'),
|
||
(2561, 5, '', '线下确认付款', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-offline-confirm', 0, '线下确认付款'),
|
||
(2562, 5, '', '订单详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-info', 0, '订单详情'),
|
||
(2563, 5, '', '订单记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-record', 0, '订单记录'),
|
||
(2564, 5, '', '电子面单打印', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-electron', 0, '电子面单打印'),
|
||
(2565, 5, '', '小票打印', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-tips', 0, '小票打印'),
|
||
(2566, 5, '', '订单备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-mark', 0, '订单备注'),
|
||
(2567, 5, '', '确认收货', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-take', 0, '确认收货'),
|
||
(2568, 5, '', '删除订单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-delete', 0, '删除订单'),
|
||
(2569, 5, '', '快递面单打印', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/5', 3, '', 0, 'order-express', 0, '快递面单打印'),
|
||
(2570, 2559, '', '获取订单编辑表单', '', '', '', 'order/edit/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-edit-6465a3050171f', 0, '获取订单编辑表单'),
|
||
(2571, 2559, '', '修改订单', '', '', '', 'order/update/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-update', 0, '修改订单'),
|
||
(2572, 2560, '', '订单发送货', '', '', '', 'order/delivery/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery', 0, '订单发送货'),
|
||
(2573, 2560, '', '获取订单可拆分商品列表', '', '', '', 'order/split_cart_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-split_cart_info', 0, '获取订单可拆分商品列表'),
|
||
(2574, 2560, '', '拆单发送货', '', '', '', 'order/split_delivery/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-split_delivery', 0, '拆单发送货'),
|
||
(2575, 2560, '', '获取订单拆分子订单列表', '', '', '', 'order/split_order/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-split_order', 0, '获取订单拆分子订单列表'),
|
||
(2576, 2560, '', '获取配送信息表单', '', '', '', 'order/distribution/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-distribution', 0, '获取配送信息表单'),
|
||
(2577, 2560, '', '获取物流公司', '', '', '', 'order/express_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-express_list', 0, '获取物流公司'),
|
||
(2578, 2560, '', '获取物流信息', '', '', '', 'order/express/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-express-6465a3438b950', 0, '获取物流信息'),
|
||
(2579, 2560, '', '面单默认配置信息', '', '', '', 'order/sheet_info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-sheet_info', 0, '面单默认配置信息'),
|
||
(2580, 2560, '', '订单列表获取配送员', '', '', '', 'order/delivery/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-list', 0, '订单列表获取配送员'),
|
||
(2581, 2560, '', '电子面单模板列表', '', '', '', 'order/expr/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-expr-temp', 0, '电子面单模板列表'),
|
||
(2582, 2560, '', '快递公司电子面单模版', '', '', '', 'order/express/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-express-temp', 0, '快递公司电子面单模版'),
|
||
(2583, 2560, '', '更多操作打印电子面单', '', '', '', 'order/order_dump/<order_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-order_dump', 0, '更多操作打印电子面单'),
|
||
(2584, 2561, '', '线下支付', '', '', '', 'order/pay_offline/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-pay_offline', 0, '线下支付'),
|
||
(2585, 2562, '', '订单详情', '', '', '', 'order/info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-info-6465a369a2c3b', 0, '订单详情'),
|
||
(2586, 2563, '', '获取订单状态', '', '', '', 'order/status/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-status', 0, '获取订单状态'),
|
||
(2587, 2564, '', '面单默认配置信息', '', '', '', 'order/sheet_info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-sheet_info-6465a3eb77bb4', 0, '面单默认配置信息'),
|
||
(2588, 2564, '', '快递公司电子面单模版', '', '', '', 'order/express/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-express-temp-6465a3eb77bbf', 0, '快递公司电子面单模版'),
|
||
(2589, 2564, '', '更多操作打印电子面单', '', '', '', 'order/order_dump/<order_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-order_dump-6465a3eb77bc6', 0, '更多操作打印电子面单'),
|
||
(2590, 2564, '', '电子面单模板列表', '', '', '', 'order/expr/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-expr-temp-6465a3eb77bcd', 0, '电子面单模板列表'),
|
||
(2591, 2565, '', '打印订单', '', '', '', 'order/print/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-print', 0, '打印订单'),
|
||
(2592, 2566, '', '修改备注信息', '', '', '', 'order/remark/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-remark', 0, '修改备注信息'),
|
||
(2593, 2567, '', '确认收货', '', '', '', 'order/take/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-take-6465a61b2ebdb', 0, '确认收货'),
|
||
(2594, 2568, '', '删除订单单个', '', '', '', 'order/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-del-6465a66347928', 0, '删除订单单个'),
|
||
(2595, 2568, '', '批量删除订单', '', '', '', 'order/dels', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-dels-6465a66347931', 0, '批量删除订单'),
|
||
(2596, 2569, '', '更多操作打印电子面单', '', '', '', 'order/order_dump/<order_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-order_dump-6465a69038c44', 0, '更多操作打印电子面单'),
|
||
(2597, 2569, '', '快递公司电子面单模版', '', '', '', 'order/express/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-express-temp-6465a69038c4c', 0, '快递公司电子面单模版'),
|
||
(2598, 2569, '', '电子面单模板列表', '', '', '', 'order/expr/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-expr-temp-6465a69038c51', 0, '电子面单模板列表'),
|
||
(2599, 897, '', '订单详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/897', 3, '', 0, 'refund-info', 0, '订单详情'),
|
||
(2600, 897, '', '售后备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/897', 3, '', 0, 'refund-mark', 0, '售后备注'),
|
||
(2601, 897, '', '退款', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/897', 3, '', 0, 'refund-yes', 0, '退款'),
|
||
(2602, 897, '', '不退款', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/897', 3, '', 0, 'refund-no', 0, '不退款'),
|
||
(2603, 2599, '', '获取退款单详情', '', '', '', 'refund/info/<uni>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-info-6465c125e62a0', 0, '获取退款单详情'),
|
||
(2604, 2600, '', '售后订单备注', '', '', '', 'refund/remark/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-remark', 0, '售后订单备注'),
|
||
(2605, 2601, '', '商家同意退款,等待用户退货', '', '', '', 'refund/agree/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-agree', 0, '商家同意退款,等待用户退货'),
|
||
(2606, 2601, '', '售后订单退款表单', '', '', '', 'refund/refund/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-refund', 0, '售后订单退款表单'),
|
||
(2607, 2601, '', '售后订单退款', '', '', '', 'refund/refund/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-refund', 0, '售后订单退款'),
|
||
(2608, 2602, '', '修改不退款理由', '', '', '', 'refund/no_refund/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-no_refund', 0, '修改不退款理由'),
|
||
(2609, 2602, '', '获取不退款表单', '', '', '', 'refund/no_refund/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'refund-no_refund', 0, '获取不退款表单'),
|
||
(2610, 760, '', '收款二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '4/760', 3, '', 0, 'order-offline-qrcode', 0, '收款二维码'),
|
||
(2611, 2610, '', '获取线下付款二维码', '', '', '', 'order/offline_scan', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-offline_scan', 0, '获取线下付款二维码'),
|
||
(2612, 2, '', '添加商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-add', 0, '添加商品'),
|
||
(2613, 2, '', '商品采集', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-copy', 0, '商品采集'),
|
||
(2614, 2, '', '批量修改', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-batch-edit', 0, '批量修改'),
|
||
(2615, 2, '', '商品上下架', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-batch-status', 0, '商品上下架'),
|
||
(2616, 2, '', '商品导出', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-export', 0, '商品导出'),
|
||
(2617, 2, '', '查看商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-info', 0, '查看商品'),
|
||
(2618, 2, '', '编辑商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-edit', 0, '编辑商品'),
|
||
(2619, 2, '', '商品评论', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-reply', 0, '商品评论'),
|
||
(2620, 2, '', '商品回收站', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/2', 3, '', 0, 'product-recycle', 0, '商品回收站'),
|
||
(2621, 2612, '', '获取退出未保存的数据', '', '', '', 'product/cache', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache', 0, '获取退出未保存的数据'),
|
||
(2622, 2612, '', '保存还未提交数据', '', '', '', 'product/cache', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache', 0, '保存还未提交数据'),
|
||
(2623, 2612, '', '获取商品规格', '', '', '', 'product/product/attrs/<id>/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-attrs', 0, '获取商品规格'),
|
||
(2624, 2612, '', '新建或修改商品', '', '', '', 'product/product/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product', 0, '新建或修改商品'),
|
||
(2625, 2612, '', '商品快速编辑', '', '', '', 'product/product/set_product/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-set_product', 0, '商品快速编辑'),
|
||
(2626, 2612, '', '商品规则列表', '', '', '', 'product/product/rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule', 0, '商品规则列表'),
|
||
(2627, 2612, '', '新建或编辑商品规则', '', '', '', 'product/product/rule/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule', 0, '新建或编辑商品规则'),
|
||
(2628, 2612, '', '生成商品规格列表', '', '', '', 'product/generate_attr/<id>/<type>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-generate_attr', 0, '生成商品规格列表'),
|
||
(2629, 2612, '', '获取商品规则属性模板', '', '', '', 'product/product/get_rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_rule', 0, '获取商品规则属性模板'),
|
||
(2630, 2612, '', '获取运费模板', '', '', '', 'product/product/get_template', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_template', 0, '获取运费模板'),
|
||
(2631, 2612, '', '上传视频密钥接口', '', '', '', 'product/product/get_temp_keys', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_temp_keys', 0, '上传视频密钥接口'),
|
||
(2632, 2612, '', '导入虚拟商品卡密', '', '', '', 'product/product/import_card', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-import_card', 0, '导入虚拟商品卡密'),
|
||
(2633, 2613, '', '获取采集商品数据', '', '', '', 'product/crawl', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-crawl', 0, '获取采集商品数据'),
|
||
(2634, 2613, '', '获取复制商品配置', '', '', '', 'product/copy_config', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-copy_config', 0, '获取复制商品配置'),
|
||
(2635, 2613, '', '保存采集商品数据', '', '', '', 'product/crawl/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-crawl-save', 0, '保存采集商品数据'),
|
||
(2636, 2613, '', '复制其他平台商品', '', '', '', 'product/copy', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-copy-6465c40d4430f', 0, '复制其他平台商品'),
|
||
(2637, 2613, '', '保存还未提交数据', '', '', '', 'product/cache', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache-6465c40d44313', 0, '保存还未提交数据'),
|
||
(2638, 2613, '', '获取退出未保存的数据', '', '', '', 'product/cache', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache-6465c40d44317', 0, '获取退出未保存的数据'),
|
||
(2639, 2613, '', '获取商品规格', '', '', '', 'product/product/attrs/<id>/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-attrs-6465c40d4431b', 0, '获取商品规格'),
|
||
(2640, 2613, '', '新建或修改商品', '', '', '', 'product/product/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-6465c40d44320', 0, '新建或修改商品'),
|
||
(2641, 2613, '', '商品快速编辑', '', '', '', 'product/product/set_product/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-set_product-6465c40d44324', 0, '商品快速编辑'),
|
||
(2642, 2613, '', '商品规则列表', '', '', '', 'product/product/rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c40d44328', 0, '商品规则列表'),
|
||
(2643, 2613, '', '新建或编辑商品规则', '', '', '', 'product/product/rule/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c40d4432c', 0, '新建或编辑商品规则'),
|
||
(2644, 2613, '', '商品规则详情', '', '', '', 'product/product/rule/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c40d4432f', 0, '商品规则详情'),
|
||
(2645, 2613, '', '生成商品规格列表', '', '', '', 'product/generate_attr/<id>/<type>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-generate_attr-6465c40d44333', 0, '生成商品规格列表'),
|
||
(2646, 2613, '', '获取商品规则属性模板', '', '', '', 'product/product/get_rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_rule-6465c40d44337', 0, '获取商品规则属性模板'),
|
||
(2647, 2613, '', '获取运费模板', '', '', '', 'product/product/get_template', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_template-6465c40d4433b', 0, '获取运费模板'),
|
||
(2648, 2613, '', '上传视频密钥接口', '', '', '', 'product/product/get_temp_keys', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_temp_keys-6465c40d4433f', 0, '上传视频密钥接口'),
|
||
(2649, 2614, '', '商品批量设置', '', '', '', 'product/batch/setting', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-batch-setting', 0, '商品批量设置'),
|
||
(2650, 2615, '', '设置批量商品下架', '', '', '', 'product/product/product_unshow', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-product_unshow', 0, '设置批量商品下架'),
|
||
(2651, 2615, '', '设置批量商品上架', '', '', '', 'product/product/product_show', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-product_show', 0, '设置批量商品上架'),
|
||
(2652, 2615, '', '修改商品状态', '', '', '', 'product/product/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-set_show', 0, '修改商品状态'),
|
||
(2653, 2616, '', '商品列表导出', '', '', '', 'export/product_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-product_list', 0, '商品列表导出'),
|
||
(2654, 2617, '', '商品详情', '', '', '', 'product/product/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-6465c46cedb2c', 0, '商品详情'),
|
||
(2655, 2618, '', '获取退出未保存的数据', '', '', '', 'product/cache', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache-6465c48f616d4', 0, '获取退出未保存的数据'),
|
||
(2656, 2618, '', '保存还未提交数据', '', '', '', 'product/cache', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-cache-6465c48f616dd', 0, '保存还未提交数据'),
|
||
(2657, 2618, '', '获取商品规格', '', '', '', 'product/product/attrs/<id>/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-attrs-6465c48f616e5', 0, '获取商品规格'),
|
||
(2658, 2618, '', '新建或修改商品', '', '', '', 'product/product/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-6465c48f616eb', 0, '新建或修改商品'),
|
||
(2659, 2618, '', '商品详情', '', '', '', 'product/product/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-6465c48f616f0', 0, '商品详情'),
|
||
(2660, 2618, '', '商品快速编辑', '', '', '', 'product/product/set_product/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-set_product-6465c48f616f5', 0, '商品快速编辑'),
|
||
(2661, 2618, '', '商品规则列表', '', '', '', 'product/product/rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c48f616fb', 0, '商品规则列表'),
|
||
(2662, 2618, '', '新建或编辑商品规则', '', '', '', 'product/product/rule/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c48f61700', 0, '新建或编辑商品规则'),
|
||
(2663, 2618, '', '商品规则详情', '', '', '', 'product/product/rule/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465c48f61705', 0, '商品规则详情'),
|
||
(2664, 2618, '', '生成商品规格列表', '', '', '', 'product/generate_attr/<id>/<type>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-generate_attr-6465c48f6170b', 0, '生成商品规格列表'),
|
||
(2665, 2618, '', '获取商品规则属性模板', '', '', '', 'product/product/get_rule', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_rule-6465c48f61710', 0, '获取商品规则属性模板'),
|
||
(2666, 2618, '', '获取运费模板', '', '', '', 'product/product/get_template', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_template-6465c48f61715', 0, '获取运费模板'),
|
||
(2667, 2618, '', '上传视频密钥接口', '', '', '', 'product/product/get_temp_keys', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-get_temp_keys-6465c48f6171a', 0, '上传视频密钥接口'),
|
||
(2668, 2618, '', '导入虚拟商品卡密', '', '', '', 'product/product/import_card', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-import_card-6465c48f6171f', 0, '导入虚拟商品卡密'),
|
||
(2669, 2620, '', '商品放入回收站', '', '', '', 'product/product/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-6465c51a7665e', 0, '商品放入回收站'),
|
||
(2670, 3, '', '添加分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/3', 3, '', 0, 'product-cate-add', 0, '添加分类'),
|
||
(2671, 3, '', '修改分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/3', 3, '', 0, 'product-cate-edit', 0, '修改分类'),
|
||
(2672, 3, '', '删除分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/3', 3, '', 0, 'product-cate-delete', 0, '删除分类'),
|
||
(2673, 3, '', '分类状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/3', 3, '', 0, 'product-cate-status', 0, '分类状态'),
|
||
(2674, 2670, '', '商品分类新增', '', '', '', 'product/category', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category', 0, '商品分类新增'),
|
||
(2675, 2670, '', '商品分类新增表单', '', '', '', 'product/category/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category-create', 0, '商品分类新增表单'),
|
||
(2676, 2671, '', '商品分类编辑表单', '', '', '', 'product/category/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category-6465c612c552f', 0, '商品分类编辑表单'),
|
||
(2677, 2671, '', '商品分类编辑', '', '', '', 'product/category/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category-6465c612c5536', 0, '商品分类编辑'),
|
||
(2678, 2672, '', '删除商品分类', '', '', '', 'product/category/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category-6465c638c6d16', 0, '删除商品分类'),
|
||
(2679, 2673, '', '商品分类修改状态', '', '', '', 'product/category/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-category-set_show', 0, '商品分类修改状态'),
|
||
(2680, 99, '', '添加规格', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/99', 3, '', 0, 'product-rule-add', 0, '添加规格'),
|
||
(2681, 99, '', '编辑规格', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/99', 3, '', 0, 'product-rule-edit', 0, '编辑规格'),
|
||
(2682, 99, '', '删除规格', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/99', 3, '', 0, 'product-rule-delete', 0, '删除规格'),
|
||
(2683, 2680, '', '商品规则详情', '', '', '', 'product/product/rule/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465d8779407b', 0, '商品规则详情'),
|
||
(2684, 2680, '', '新建或编辑商品规则', '', '', '', 'product/product/rule/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465d87794082', 0, '新建或编辑商品规则'),
|
||
(2685, 2681, '', '新建或编辑商品规则', '', '', '', 'product/product/rule/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465d88b800ca', 0, '新建或编辑商品规则'),
|
||
(2686, 2681, '', '商品规则详情', '', '', '', 'product/product/rule/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-6465d88b800d4', 0, '商品规则详情'),
|
||
(2687, 2682, '', '删除商品规则', '', '', '', 'product/product/rule/delete', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-product-rule-delete', 0, '删除商品规则'),
|
||
(2688, 6, '', '添加自评', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/6', 3, '', 0, 'product-reply-add', 0, '添加自评'),
|
||
(2689, 6, '', '回复评论', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/6', 3, '', 0, 'product-reply-reply', 0, '回复评论'),
|
||
(2690, 6, '', '删除评论', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '1/6', 3, '', 0, 'product-reply-delete', 0, '删除评论'),
|
||
(2691, 2688, '', '虚拟评论表单', '', '', '', 'product/reply/fictitious_reply/<product_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-reply-fictitious_reply', 0, '虚拟评论表单'),
|
||
(2692, 2688, '', '保存虚拟评论', '', '', '', 'product/reply/save_fictitious_reply', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-reply-save_fictitious_reply', 0, '保存虚拟评论'),
|
||
(2693, 2689, '', '商品回复评论', '', '', '', 'product/reply/set_reply/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-reply-set_reply', 0, '商品回复评论'),
|
||
(2694, 2690, '', '删除商品评论', '', '', '', 'product/reply/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'product-reply-6465d92d1ba2d', 0, '删除商品评论'),
|
||
(2695, 71, '', '添加复制优惠券', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/30/71', 3, '', 0, 'coupon-add', 0, '添加复制优惠券'),
|
||
(2696, 71, '', '删除优惠券', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/30/71', 3, '', 0, 'coupon-delete', 0, '删除优惠券'),
|
||
(2697, 71, '', '领取记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/30/71', 3, '', 0, 'coupon-receive', 0, '领取记录'),
|
||
(2698, 2695, '', '添加优惠券', '', '', '', 'marketing/coupon/save_coupon', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-save_coupon', 0, '添加优惠券'),
|
||
(2699, 2695, '', '一键复制优惠券', '', '', '', 'marketing/coupon/copy/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-copy', 0, '一键复制优惠券'),
|
||
(2700, 2696, '', '已发布优惠券删除', '', '', '', 'marketing/coupon/released/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-released', 0, '已发布优惠券删除'),
|
||
(2701, 2697, '', '已发布优惠券领取记录', '', '', '', 'marketing/coupon/released/issue_log/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-released-issue_log', 0, '已发布优惠券领取记录'),
|
||
(2702, 2697, '', '会员领取记录', '', '', '', 'marketing/coupon/user', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-coupon-user', 0, '会员领取记录'),
|
||
(2703, 154, '', '添加签到', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/154', 3, '', 0, 'sign-add', 0, '添加签到'),
|
||
(2704, 154, '', '编辑签到', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/154', 3, '', 0, 'sign-edit', 0, '编辑签到'),
|
||
(2705, 154, '', '删除签到', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/154', 3, '', 0, 'sign-delete', 0, '删除签到'),
|
||
(2706, 154, '', '签到状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/154', 3, '', 0, 'sign-status', 0, '签到状态'),
|
||
(2707, 2703, '', '保存签到天数配置', '', '', '', 'setting/sign_data', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data', 0, '保存签到天数配置'),
|
||
(2708, 2703, '', '获取签到天数配置表单', '', '', '', 'setting/sign_data/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data-create', 0, '获取签到天数配置表单'),
|
||
(2709, 2704, '', '修改签到天数配置', '', '', '', 'setting/sign_data/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data-6465e3db34cdb', 0, '修改签到天数配置'),
|
||
(2710, 2704, '', '获取修改签到天数配置表单', '', '', '', 'setting/sign_data/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data-edit', 0, '获取修改签到天数配置表单'),
|
||
(2711, 2705, '', '删除签到天数配置', '', '', '', 'setting/sign_data/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data-6465e3ea279c4', 0, '删除签到天数配置'),
|
||
(2712, 2706, '', '修改签到数据状态', '', '', '', 'setting/sign_data/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-sign_data-set_status', 0, '修改签到数据状态'),
|
||
(2713, 905, '', '添加积分商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/905', 3, '', 0, 'point-product-add', 0, '添加积分商品'),
|
||
(2714, 905, '', '编辑积分商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/905', 3, '', 0, 'point-product-edit', 0, '编辑积分商品'),
|
||
(2715, 905, '', '删除积分商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/905', 3, '', 0, 'point-product-delete', 0, '删除积分商品'),
|
||
(2716, 905, '', '积分商品状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/905', 3, '', 0, 'point-product-status', 0, '积分商品状态'),
|
||
(2717, 905, '', '兑换记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/905', 3, '', 0, 'point-product-record', 0, '兑换记录'),
|
||
(2718, 2713, '', '积分商品新增或编辑', '', '', '', 'marketing/integral/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral', 0, '积分商品新增或编辑'),
|
||
(2719, 2714, '', '积分商品新增或编辑', '', '', '', 'marketing/integral/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-6465e598dac7e', 0, '积分商品新增或编辑'),
|
||
(2720, 2714, '', '积分商品详情', '', '', '', 'marketing/integral/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-6465e598dac85', 0, '积分商品详情'),
|
||
(2721, 2715, '', '积分商品删除', '', '', '', 'marketing/integral/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-6465e5a7d7e0b', 0, '积分商品删除'),
|
||
(2722, 2716, '', '修改积分商品状态', '', '', '', 'marketing/integral/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-set_show', 0, '修改积分商品状态'),
|
||
(2723, 912, '', '订单发货', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-send', 0, '订单发货'),
|
||
(2724, 912, '', '订单详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-info', 0, '订单详情'),
|
||
(2725, 912, '', '订单记录', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-record', 0, '订单记录'),
|
||
(2726, 912, '', '小票打印', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-print', 0, '小票打印'),
|
||
(2727, 912, '', '订单备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-mark', 0, '订单备注'),
|
||
(2728, 912, '', '确认收货', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/912', 3, '', 0, 'point-order-take', 0, '确认收货'),
|
||
(2729, 2723, '', '积分订单发送货', '', '', '', 'marketing/integral/order/delivery/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-delivery', 0, '积分订单发送货'),
|
||
(2730, 2723, '', '获取积分订单配送信息表单', '', '', '', 'marketing/integral/order/distribution/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-distribution', 0, '获取积分订单配送信息表单'),
|
||
(2731, 2723, '', '修改积分订单配送信息', '', '', '', 'marketing/integral/order/distribution/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-distribution', 0, '修改积分订单配送信息'),
|
||
(2732, 2723, '', '积分订单获取物流公司', '', '', '', 'marketing/integral/order/express_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-express_list', 0, '积分订单获取物流公司'),
|
||
(2733, 2723, '', '积分订单快递公司电子面单模版', '', '', '', 'marketing/integral/order/express/temp', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-express-temp', 0, '积分订单快递公司电子面单模版'),
|
||
(2734, 2723, '', '积分订单列表获取配送员', '', '', '', 'marketing/integral/order/delivery/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-delivery-list', 0, '积分订单列表获取配送员'),
|
||
(2735, 2723, '', '积分订单获取面单默认配置信息', '', '', '', 'marketing/integral/order/sheet_info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-sheet_info', 0, '积分订单获取面单默认配置信息'),
|
||
(2736, 2723, '', '积分订单获取物流信息', '', '', '', 'marketing/integral/order/express/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-express', 0, '积分订单获取物流信息'),
|
||
(2737, 2724, '', '积分商城订单详情数据', '', '', '', 'marketing/integral/order/info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-info', 0, '积分商城订单详情数据'),
|
||
(2738, 2725, '', '获取积分订单状态', '', '', '', 'marketing/integral/order/status/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-status', 0, '获取积分订单状态'),
|
||
(2739, 2726, '', '打印积分订单', '', '', '', 'marketing/integral/order/print/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-print', 0, '打印积分订单'),
|
||
(2740, 2727, '', '积分记录列表备注', '', '', '', 'marketing/point_record/remark/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-point_record-remark', 0, '积分记录列表备注'),
|
||
(2741, 2728, '', '积分订单确认收货', '', '', '', 'marketing/integral/order/take/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-integral-order-take', 0, '积分订单确认收货'),
|
||
(2742, 1001, '', '积分记录备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/34/1001', 3, '', 0, 'point-record', 0, '积分记录备注'),
|
||
(2743, 2742, '', '积分记录列表备注', '', '', '', 'marketing/point_record/remark/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-point_record-remark-6465fd1a75f76', 0, '积分记录列表备注'),
|
||
(2744, 1018, '', '抽奖保存', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/909/1018', 3, '', 0, 'lottery-save', 0, '抽奖保存'),
|
||
(2745, 2744, '', '修改抽奖活动数据', '', '', '', 'marketing/lottery/edit/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-lottery-edit', 0, '修改抽奖活动数据'),
|
||
(2746, 1019, '', '中奖发货', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/909/1019', 3, '', 0, 'lottery-send', 0, '中奖发货'),
|
||
(2747, 1019, '', '中奖备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/909/1019', 3, '', 0, 'lottery-mark', 0, '中奖备注'),
|
||
(2748, 2746, '', '抽奖中奖发货、备注处理', '', '', '', 'marketing/lottery/record/deliver', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-lottery-record-deliver', 0, '抽奖中奖发货、备注处理'),
|
||
(2749, 2747, '', '抽奖中奖发货、备注处理', '', '', '', 'marketing/lottery/record/deliver', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-lottery-record-deliver-6465fe30cf185', 0, '抽奖中奖发货、备注处理'),
|
||
(2750, 74, '', '添加砍价', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/74', 3, '', 0, 'bargain-add', 0, '添加砍价'),
|
||
(2751, 74, '', '导出砍价', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/74', 3, '', 0, 'bargain-export', 0, '导出砍价'),
|
||
(2752, 74, '', '编辑砍价', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/74', 3, '', 0, 'bargain-edit', 0, '编辑砍价'),
|
||
(2753, 74, '', '删除砍价', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/74', 3, '', 0, 'bargain-delete', 0, '删除砍价'),
|
||
(2754, 74, '', '砍价统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/74', 3, '', 0, 'bargain-statistics', 0, '砍价统计'),
|
||
(2755, 2750, '', '新增或编辑砍价商品', '', '', '', 'marketing/bargain/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain', 0, '新增或编辑砍价商品'),
|
||
(2756, 2750, '', '砍价商品详情', '', '', '', 'marketing/bargain/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain', 0, '砍价商品详情'),
|
||
(2757, 2750, '', '修改砍价商品状态', '', '', '', 'marketing/bargain/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain-set_status', 0, '修改砍价商品状态'),
|
||
(2758, 2751, '', '砍价商品列表导出', '', '', '', 'export/bargain_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-bargain_list', 0, '砍价商品列表导出'),
|
||
(2759, 2752, '', '砍价商品详情', '', '', '', 'marketing/bargain/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain-6465ff00a7c2b', 0, '砍价商品详情'),
|
||
(2760, 2752, '', '新增或编辑砍价商品', '', '', '', 'marketing/bargain/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain-6465ff00a7c33', 0, '新增或编辑砍价商品'),
|
||
(2761, 2752, '', '修改砍价商品状态', '', '', '', 'marketing/bargain/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain-set_status-6465ff00a7c39', 0, '修改砍价商品状态'),
|
||
(2762, 2753, '', '删除砍价商品', '', '', '', 'marketing/bargain/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain-6465ff10afa4e', 0, '删除砍价商品'),
|
||
(2763, 755, '', '查看详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/31/755', 3, '', 0, 'bargain-list-info', 0, '查看详情'),
|
||
(2764, 2763, '', '参与砍价列表', '', '', '', 'marketing/bargain_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain_list', 0, '参与砍价列表'),
|
||
(2765, 2763, '', '砍价人列表', '', '', '', 'marketing/bargain_list_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-bargain_list_info', 0, '砍价人列表'),
|
||
(2766, 75, '', '添加拼团', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/75', 3, '', 0, 'combination-add', 0, '添加拼团'),
|
||
(2767, 75, '', '导出拼团', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/75', 3, '', 0, 'combination-export', 0, '导出拼团'),
|
||
(2768, 75, '', '编辑拼团', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/75', 3, '', 0, 'combination-edit', 0, '编辑拼团'),
|
||
(2769, 75, '', '删除拼团', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/75', 3, '', 0, 'combination-delete', 0, '删除拼团'),
|
||
(2770, 75, '', '拼团统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/75', 3, '', 0, 'combination-statistics', 0, '拼团统计'),
|
||
(2771, 2766, '', '拼团商品详情', '', '', '', 'marketing/combination/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination', 0, '拼团商品详情'),
|
||
(2772, 2766, '', '新增或编辑拼团商品', '', '', '', 'marketing/combination/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination', 0, '新增或编辑拼团商品'),
|
||
(2773, 2766, '', '修改拼团商品状态', '', '', '', 'marketing/combination/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-set_status', 0, '修改拼团商品状态'),
|
||
(2774, 2767, '', '拼团商品列表导出', '', '', '', 'export/combination_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-combination_list', 0, '拼团商品列表导出'),
|
||
(2775, 2768, '', '新增或编辑拼团商品', '', '', '', 'marketing/combination/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-6466cb2165ea1', 0, '新增或编辑拼团商品'),
|
||
(2776, 2768, '', '修改拼团商品状态', '', '', '', 'marketing/combination/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-set_status-6466cb2165ea7', 0, '修改拼团商品状态'),
|
||
(2777, 2768, '', '拼团商品详情', '', '', '', 'marketing/combination/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-6466cb2165eab', 0, '拼团商品详情'),
|
||
(2778, 2769, '', '删除拼团商品', '', '', '', 'marketing/combination/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-6466cb2e9b9a8', 0, '删除拼团商品'),
|
||
(2779, 76, '', '拼团详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/32/76', 3, '', 0, 'combination-list-info', 0, '拼团详情'),
|
||
(2780, 2779, '', '参与拼团列表', '', '', '', 'marketing/combination/combine/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-combine-list', 0, '参与拼团列表'),
|
||
(2781, 2779, '', '拼团人列表', '', '', '', 'marketing/combination/order_pink/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-combination-order_pink', 0, '拼团人列表'),
|
||
(2782, 77, '', '添加秒杀', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/33/77', 3, '', 0, 'seckill-add', 0, '添加秒杀'),
|
||
(2783, 77, '', '导出秒杀', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/33/77', 3, '', 0, 'seckill-export', 0, '导出秒杀'),
|
||
(2784, 77, '', '编辑秒杀', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/33/77', 3, '', 0, 'seckill-edit', 0, '编辑秒杀'),
|
||
(2785, 77, '', '删除秒杀', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/33/77', 3, '', 0, 'seckill-delete', 0, '删除秒杀'),
|
||
(2786, 77, '', '秒杀统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/33/77', 3, '', 0, 'seckill-statistics', 0, '秒杀统计'),
|
||
(2787, 2782, '', '秒杀商品详情', '', '', '', 'marketing/seckill/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill', 0, '秒杀商品详情'),
|
||
(2788, 2782, '', '新增或编辑秒杀商品', '', '', '', 'marketing/seckill/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill', 0, '新增或编辑秒杀商品'),
|
||
(2789, 2782, '', '修改秒杀商品状态', '', '', '', 'marketing/seckill/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-set_status', 0, '修改秒杀商品状态'),
|
||
(2790, 2783, '', '秒杀商品列表导出', '', '', '', 'export/seckill_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-seckill_list', 0, '秒杀商品列表导出'),
|
||
(2791, 2784, '', '秒杀商品详情', '', '', '', 'marketing/seckill/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-6466d624dd816', 0, '秒杀商品详情'),
|
||
(2792, 2784, '', '新增或编辑秒杀商品', '', '', '', 'marketing/seckill/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-6466d624dd820', 0, '新增或编辑秒杀商品'),
|
||
(2793, 2784, '', '修改秒杀商品状态', '', '', '', 'marketing/seckill/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-set_status-6466d624dd826', 0, '修改秒杀商品状态'),
|
||
(2794, 2785, '', '删除秒杀商品', '', '', '', 'marketing/seckill/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-6466d630e8c12', 0, '删除秒杀商品'),
|
||
(2795, 2786, '', '秒杀参与人', '', '', '', 'marketing/seckill/statistics/order/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-statistics-order', 0, '秒杀参与人'),
|
||
(2796, 2786, '', '秒杀统计', '', '', '', 'marketing/seckill/statistics/head/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-statistics-head', 0, '秒杀统计'),
|
||
(2797, 2786, '', '秒杀参与人', '', '', '', 'marketing/seckill/statistics/people/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'marketing-seckill-statistics-people', 0, '秒杀参与人'),
|
||
(2798, 751, '', '添加会员类型', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/751', 3, '', 0, 'member-add', 0, '添加会员类型'),
|
||
(2799, 751, '', '编辑会员类型', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/751', 3, '', 0, 'member-edit', 0, '编辑会员类型'),
|
||
(2800, 751, '', '删除会员类型', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/751', 3, '', 0, 'member-delete', 0, '删除会员类型'),
|
||
(2801, 751, '', '会员类型状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/751', 3, '', 0, 'member-status', 0, '会员类型状态'),
|
||
(2802, 2798, '', '会员类型列表', '', '', '', 'user/member/ship', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member-ship', 0, '会员类型列表'),
|
||
(2803, 2798, '', '会员类型修改状态', '', '', '', 'user/member_ship/set_ship_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-set_ship_status', 0, '会员类型修改状态'),
|
||
(2804, 2798, '', '会员卡类型编辑', '', '', '', 'user/member_ship/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-save', 0, '会员卡类型编辑'),
|
||
(2805, 2799, '', '会员类型列表', '', '', '', 'user/member/ship', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member-ship-6466db17503ca', 0, '会员类型列表'),
|
||
(2806, 2799, '', '会员类型修改状态', '', '', '', 'user/member_ship/set_ship_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-set_ship_status-6466db17503d2', 0, '会员类型修改状态'),
|
||
(2807, 2799, '', '会员类型删除', '', '', '', 'user/member_ship/delete/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-delete', 0, '会员类型删除'),
|
||
(2808, 2799, '', '会员卡类型编辑', '', '', '', 'user/member_ship/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-save-6466db17503dc', 0, '会员卡类型编辑'),
|
||
(2809, 2800, '', '会员类型删除', '', '', '', 'user/member_ship/delete/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-delete-6466db246a1e5', 0, '会员类型删除'),
|
||
(2810, 2801, '', '会员类型修改状态', '', '', '', 'user/member_ship/set_ship_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_ship-set_ship_status-6466db33cfbdf', 0, '会员类型修改状态'),
|
||
(2811, 765, '', '编辑会员权益', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/765', 3, '', 0, 'member-right-edit', 0, '编辑会员权益'),
|
||
(2812, 765, '', '会员权益状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/765', 3, '', 0, 'member-right-status', 0, '会员权益状态'),
|
||
(2813, 2811, '', '会员权益修改', '', '', '', 'user/member_right/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_right-save', 0, '会员权益修改'),
|
||
(2814, 2812, '', '会员权益修改', '', '', '', 'user/member_right/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_right-save-6466e10aa77e5', 0, '会员权益修改'),
|
||
(2815, 762, '', '添加批次', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/762', 3, '', 0, 'member-card-add', 0, '添加批次'),
|
||
(2816, 762, '', '下载二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/762', 3, '', 0, 'member-card-down-qrcode', 0, '下载二维码'),
|
||
(2817, 762, '', '编辑批次名', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/762', 3, '', 0, 'member-card-edit', 0, '编辑批次名'),
|
||
(2818, 762, '', '查看卡列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/762', 3, '', 0, 'member-card-scan', 0, '查看卡列表'),
|
||
(2819, 762, '', '导出会员卡密', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/731/762', 3, '', 0, 'member-card-export', 0, '导出会员卡密'),
|
||
(2820, 2815, '', '添加会员卡批次', '', '', '', 'user/member_batch/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_batch-save', 0, '添加会员卡批次'),
|
||
(2821, 2815, '', '会员卡列表', '', '', '', 'user/member_card/index/<card_batch_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_card-index', 0, '会员卡列表'),
|
||
(2822, 2815, '', '会员卡批次快速修改', '', '', '', 'user/member_batch/set_value/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_batch-set_value', 0, '会员卡批次快速修改'),
|
||
(2823, 2815, '', '会员卡修改状态', '', '', '', 'user/member_card/set_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_card-set_status', 0, '会员卡修改状态'),
|
||
(2824, 2816, '', '兑换会员卡二维码', '', '', '', 'user/member_scan', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_scan', 0, '兑换会员卡二维码'),
|
||
(2825, 2817, '', '会员卡批次快速修改', '', '', '', 'user/member_batch/set_value/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_batch-set_value-6466f21a4c295', 0, '会员卡批次快速修改'),
|
||
(2826, 2817, '', '会员卡修改状态', '', '', '', 'user/member_card/set_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_card-set_status-6466f21a4c29e', 0, '会员卡修改状态'),
|
||
(2827, 2818, '', '会员卡列表', '', '', '', 'user/member_card/index/<card_batch_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'user-member_card-index-6466f23950641', 0, '会员卡列表'),
|
||
(2828, 2819, '', '会员卡导出', '', '', '', 'export/member_card/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'export-member_card', 0, '会员卡导出'),
|
||
(2829, 687, '', '添加直播间', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-add', 0, '添加直播间'),
|
||
(2830, 687, '', '同步直播间', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-sync', 0, '同步直播间'),
|
||
(2831, 687, '', '直播间详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-info', 0, '直播间详情'),
|
||
(2832, 687, '', '删除直播间', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-delete', 0, '删除直播间'),
|
||
(2833, 687, '', '直播间状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-status', 0, '直播间状态'),
|
||
(2834, 2829, '', '直播间添加', '', '', '', 'live/room/add', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-add-64671181de1c7', 0, '直播间添加'),
|
||
(2835, 2829, '', '直播间详情', '', '', '', 'live/room/detail/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-detail', 0, '直播间详情'),
|
||
(2836, 2830, '', '同步直播间状态', '', '', '', 'live/room/syncRoom', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-syncRoom', 0, '同步直播间状态'),
|
||
(2837, 2831, '', '直播间详情', '', '', '', 'live/room/detail/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-detail-646711a2b8bd3', 0, '直播间详情'),
|
||
(2838, 2832, '', '删除直播间', '', '', '', 'live/room/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-del', 0, '删除直播间'),
|
||
(2839, 2833, '', '设置直播间是否显示', '', '', '', 'live/room/set_show/<id>/<is_show>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-set_show', 0, '设置直播间是否显示'),
|
||
(2840, 687, '', '直播间添加商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/687', 3, '', 0, 'live-room-add-product', 0, '直播间添加商品'),
|
||
(2841, 2840, '', '直播间添加商品', '', '', '', 'live/room/add_goods', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-room-add_goods', 0, '直播间添加商品'),
|
||
(2842, 688, '', '添加直播商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/688', 3, '', 0, 'live-product-add', 0, '添加直播商品'),
|
||
(2843, 688, '', '直播商品详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/688', 3, '', 0, 'live-product-info', 0, '直播商品详情'),
|
||
(2844, 688, '', '删除直播商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/688', 3, '', 0, 'live-product-delete', 0, '删除直播商品'),
|
||
(2845, 2842, '', '生成直播商品', '', '', '', 'live/goods/create', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-goods-create', 0, '生成直播商品'),
|
||
(2846, 2842, '', '添加修改直播商品', '', '', '', 'live/goods/add', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-goods-add', 0, '添加修改直播商品'),
|
||
(2847, 2843, '', '直播商品详情', '', '', '', 'live/goods/detail/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-goods-detail', 0, '直播商品详情'),
|
||
(2848, 2844, '', '删除直播商品', '', '', '', 'live/goods/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-goods-del', 0, '删除直播商品'),
|
||
(2849, 689, '', '添加主播', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/689', 3, '', 0, 'live-anchor-add', 0, '添加主播'),
|
||
(2850, 689, '', '修改主播', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/689', 3, '', 0, 'live-anchor-edit', 0, '修改主播'),
|
||
(2851, 689, '', '删除主播', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/686/689', 3, '', 0, 'live-anchor-delete', 0, '删除主播'),
|
||
(2852, 2849, '', '保存主播数据', '', '', '', 'live/anchor/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-anchor-save', 0, '保存主播数据'),
|
||
(2853, 2849, '', '添加修改主播表单', '', '', '', 'live/anchor/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-anchor-add-64671b7155864', 0, '添加修改主播表单'),
|
||
(2854, 2850, '', '保存主播数据', '', '', '', 'live/anchor/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-anchor-save-64671b7b408c3', 0, '保存主播数据'),
|
||
(2855, 2850, '', '添加修改主播表单', '', '', '', 'live/anchor/add/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-anchor-add-64671b7b408ca', 0, '添加修改主播表单'),
|
||
(2856, 2851, '', '删除主播', '', '', '', 'live/anchor/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'live-anchor-del', 0, '删除主播'),
|
||
(2857, 1023, '', '添加分组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-code-add', 0, '添加分组'),
|
||
(2858, 1023, '', '新建二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-add', 0, '新建二维码'),
|
||
(2859, 1023, '', '编辑二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-edit', 0, '编辑二维码'),
|
||
(2860, 1023, '', '删除二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-delete', 0, '删除二维码'),
|
||
(2861, 1023, '', '下载二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-down', 0, '下载二维码'),
|
||
(2862, 1023, '', '二维码统计', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-statistics', 0, '二维码统计'),
|
||
(2863, 1023, '', '扫码用户列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '27/1023', 3, '', 0, 'channel-qrcode-user', 0, '扫码用户列表'),
|
||
(2864, 2857, '', '渠道码分类列表', '', '', '', 'app/wechat_qrcode/cate/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-cate-list', 0, '渠道码分类列表'),
|
||
(2865, 2857, '', '渠道码分类添加编辑表单', '', '', '', 'app/wechat_qrcode/cate/create/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-cate-create', 0, '渠道码分类添加编辑表单'),
|
||
(2866, 2857, '', '渠道码分类保存', '', '', '', 'app/wechat_qrcode/cate/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-cate-save', 0, '渠道码分类保存'),
|
||
(2867, 2857, '', '渠道码分类删除', '', '', '', 'app/wechat_qrcode/cate/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-cate-del', 0, '渠道码分类删除'),
|
||
(2868, 2858, '', '保存渠道码', '', '', '', 'app/wechat_qrcode/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-save', 0, '保存渠道码'),
|
||
(2869, 2858, '', '渠道码详情', '', '', '', 'app/wechat_qrcode/info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-info', 0, '渠道码详情'),
|
||
(2870, 2859, '', '渠道码列表', '', '', '', 'app/wechat_qrcode/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-list', 0, '渠道码列表'),
|
||
(2871, 2859, '', '渠道码详情', '', '', '', 'app/wechat_qrcode/info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-info-64671d713f4e3', 0, '渠道码详情'),
|
||
(2872, 2859, '', '保存渠道码', '', '', '', 'app/wechat_qrcode/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-save-64671d713f4e9', 0, '保存渠道码'),
|
||
(2873, 2860, '', '删除渠道码', '', '', '', 'app/wechat_qrcode/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-del', 0, '删除渠道码'),
|
||
(2874, 2862, '', '渠道码统计', '', '', '', 'app/wechat_qrcode/statistic/<qid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-statistic', 0, '渠道码统计'),
|
||
(2875, 2863, '', '渠道码用户列表', '', '', '', 'app/wechat_qrcode/user_list/<qid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat_qrcode-user_list', 0, '渠道码用户列表'),
|
||
(2876, 29, '', '推广人列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-user-list', 0, '推广人列表'),
|
||
(2877, 29, '', '推广订单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-order-list', 0, '推广订单'),
|
||
(2878, 29, '', '推广二维码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-qrcode', 0, '推广二维码'),
|
||
(2879, 29, '', '修改上级推广人', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-edit-spread', 0, '修改上级推广人'),
|
||
(2880, 29, '', '删除上级推广人', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-delete-spread', 0, '删除上级推广人'),
|
||
(2881, 29, '', '取消推广资格', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-cancel', 0, '取消推广资格'),
|
||
(2882, 29, '', '修改分销等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/29', 3, '', 0, 'spread-edit-level', 0, '修改分销等级'),
|
||
(2883, 2876, '', '推广人列表', '', '', '', 'agent/stair', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-stair', 0, '推广人列表'),
|
||
(2884, 2877, '', '推广订单列表', '', '', '', 'agent/stair/order', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-stair-order', 0, '推广订单列表'),
|
||
(2885, 2878, '', '查看小程序推广二维码', '', '', '', 'agent/look_xcx_code', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-look_xcx_code', 0, '查看小程序推广二维码'),
|
||
(2886, 2878, '', '查看H5推广二维码', '', '', '', 'agent/look_h5_code', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-look_h5_code', 0, '查看H5推广二维码'),
|
||
(2887, 2878, '', '查看公众号推广二维码', '', '', '', 'agent/look_code', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-look_code', 0, '查看公众号推广二维码'),
|
||
(2888, 2879, '', '修改上级推广人', '', '', '', 'agent/spread', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-spread-64671e9e67c6d', 0, '修改上级推广人'),
|
||
(2889, 2880, '', '清除上级推广人', '', '', '', 'agent/stair/delete_spread/<uid>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-stair-delete_spread', 0, '清除上级推广人'),
|
||
(2890, 896, '', '添加分销等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/896', 3, '', 0, 'spread-level-add', 0, '添加分销等级'),
|
||
(2891, 896, '', '修改分销等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/896', 3, '', 0, 'spread-level-edit', 0, '修改分销等级'),
|
||
(2892, 896, '', '删除分销等级', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/896', 3, '', 0, 'spread-level-delete', 0, '删除分销等级'),
|
||
(2893, 896, '', '分销等级任务', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/896', 3, '', 0, 'spread-level-task', 0, '分销等级任务'),
|
||
(2894, 2890, '', '获取分销员等级表单', '', '', '', 'agent/level/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level-create', 0, '获取分销员等级表单'),
|
||
(2895, 2890, '', '保存分销员等级', '', '', '', 'agent/level', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level', 0, '保存分销员等级'),
|
||
(2896, 2891, '', '修改分销员等级', '', '', '', 'agent/level/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level-64671f51e1c5d', 0, '修改分销员等级'),
|
||
(2897, 2891, '', '获取修改分销员等级表单', '', '', '', 'agent/level/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level-edit', 0, '获取修改分销员等级表单'),
|
||
(2898, 2891, '', '修改分销等级状态', '', '', '', 'agent/level/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level-set_status', 0, '修改分销等级状态'),
|
||
(2899, 2892, '', '删除分销员等级', '', '', '', 'agent/level/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level-64671f5ca12b7', 0, '删除分销员等级'),
|
||
(2900, 2893, '', '获取分销员等级任务列表', '', '', '', 'agent/level_task', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task', 0, '获取分销员等级任务列表'),
|
||
(2901, 2893, '', '保存分销员等级任务', '', '', '', 'agent/level_task', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task', 0, '保存分销员等级任务'),
|
||
(2902, 2893, '', '获取分销员等级任务表单', '', '', '', 'agent/level_task/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task-create', 0, '获取分销员等级任务表单'),
|
||
(2903, 2893, '', '获取修改分销员等级任务表单', '', '', '', 'agent/level_task/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task-edit', 0, '获取修改分销员等级任务表单'),
|
||
(2904, 2893, '', '修改分销员等级任务', '', '', '', 'agent/level_task/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task', 0, '修改分销员等级任务'),
|
||
(2905, 2893, '', '删除分销员等级任务', '', '', '', 'agent/level_task/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task', 0, '删除分销员等级任务'),
|
||
(2906, 2893, '', '修改分销等级任务状态', '', '', '', 'agent/level_task/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-level_task-set_status', 0, '修改分销等级任务状态'),
|
||
(2907, 1014, '', '添加事业部', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1014', 3, '', 0, 'division-add', 0, '添加事业部'),
|
||
(2908, 1014, '', '修改事业部', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1014', 3, '', 0, 'division-edit', 0, '修改事业部'),
|
||
(2909, 1014, '', '删除事业部', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1014', 3, '', 0, 'division-delete', 0, '删除事业部'),
|
||
(2910, 1014, '', '查看代理商', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1014', 3, '', 0, 'division-scan-agent', 0, '查看代理商'),
|
||
(2911, 2907, '', '添加事业部', '', '', '', 'agent/division/create/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-create', 0, '添加事业部'),
|
||
(2912, 2907, '', '事业部保存', '', '', '', 'agent/division/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-save', 0, '事业部保存'),
|
||
(2913, 2908, '', '添加事业部', '', '', '', 'agent/division/create/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-create-646720ac60991', 0, '添加事业部'),
|
||
(2914, 2908, '', '事业部保存', '', '', '', 'agent/division/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-save-646720ac6099a', 0, '事业部保存'),
|
||
(2915, 2909, '', '删除代理商', '', '', '', 'agent/division/del/<type>/<uid>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-del', 0, '删除代理商'),
|
||
(2916, 2910, '', '下级列表', '', '', '', 'agent/division/down_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-down_list', 0, '下级列表'),
|
||
(2917, 1015, '', '添加代理商', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1015', 3, '', 0, 'division-agent-add', 0, '添加代理商'),
|
||
(2918, 1015, '', '修改代理商', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1015', 3, '', 0, 'division-agent-edit', 0, '修改代理商'),
|
||
(2919, 1015, '', '删除代理商', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1015', 3, '', 0, 'division-agent-delete', 0, '删除代理商'),
|
||
(2920, 1015, '', '查看员工', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1015', 3, '', 0, 'division-agent-staff', 0, '查看员工'),
|
||
(2921, 2917, '', '添加事业部', '', '', '', 'agent/division/agent/create/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-agent-create', 0, '添加事业部'),
|
||
(2922, 2917, '', '事业部保存', '', '', '', 'agent/division/agent/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-agent-save', 0, '事业部保存'),
|
||
(2923, 2918, '', '添加事业部', '', '', '', 'agent/division/agent/create/<uid>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-agent-create-64672134e5497', 0, '添加事业部'),
|
||
(2924, 2918, '', '事业部保存', '', '', '', 'agent/division/agent/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-agent-save-64672134e54a1', 0, '事业部保存'),
|
||
(2925, 2919, '', '删除代理商', '', '', '', 'agent/division/del/<type>/<uid>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-del-64672140f09bd', 0, '删除代理商'),
|
||
(2926, 2920, '', '下级列表', '', '', '', 'agent/division/down_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-down_list-6467214aa534c', 0, '下级列表'),
|
||
(2927, 1016, '', '审核代理商', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '26/1013/1016', 3, '', 0, 'division-agent-apply', 0, '审核代理商'),
|
||
(2928, 2927, '', '代理商申请列表', '', '', '', 'agent/division/agent_apply/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-agent_apply-list', 0, '代理商申请列表'),
|
||
(2929, 2927, '', '审核表单', '', '', '', 'agent/division/examine_apply/<id>/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-examine_apply', 0, '审核表单'),
|
||
(2930, 2927, '', '提交审核', '', '', '', 'agent/division/apply_agent/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-apply_agent-save', 0, '提交审核'),
|
||
(2931, 2927, '', '删除审核', '', '', '', 'agent/division/del_apply/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'agent-division-del_apply', 0, '删除审核'),
|
||
(2932, 678, '', '添加客服', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/678', 3, '', 0, 'service-add', 0, '添加客服'),
|
||
(2933, 678, '', '编辑客服', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/678', 3, '', 0, 'service-edit', 0, '编辑客服'),
|
||
(2934, 678, '', '删除客服', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/678', 3, '', 0, 'service-delete', 0, '删除客服'),
|
||
(2935, 678, '', '进入工作台', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/678', 3, '', 0, 'service-in', 0, '进入工作台'),
|
||
(2936, 2932, '', '添加客服表单', '', '', '', 'app/wechat/kefu/add', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-add', 0, '添加客服表单'),
|
||
(2937, 2932, '', '修改客服表单', '', '', '', 'app/wechat/kefu/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-edit', 0, '修改客服表单'),
|
||
(2938, 2932, '', '添加客服', '', '', '', 'app/wechat/kefu', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu', 0, '添加客服'),
|
||
(2939, 2932, '', '修改客服', '', '', '', 'app/wechat/kefu/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu', 0, '修改客服'),
|
||
(2940, 2932, '', '修改客服状态', '', '', '', 'app/wechat/kefu/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-set_status', 0, '修改客服状态'),
|
||
(2941, 2933, '', '修改客服表单', '', '', '', 'app/wechat/kefu/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-edit-646723c8147fd', 0, '修改客服表单'),
|
||
(2942, 2933, '', '修改客服', '', '', '', 'app/wechat/kefu/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-646723c814806', 0, '修改客服'),
|
||
(2943, 2933, '', '修改客服状态', '', '', '', 'app/wechat/kefu/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-set_status-646723c81480d', 0, '修改客服状态'),
|
||
(2944, 2934, '', '删除客服', '', '', '', 'app/wechat/kefu/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-646723d59c121', 0, '删除客服'),
|
||
(2945, 2935, '', '客服登录', '', '', '', 'app/wechat/kefu/login/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-kefu-login', 0, '客服登录'),
|
||
(2946, 679, '', '添加分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/679', 3, '', 0, 'service-speechcraft-cate-add', 0, '添加分类'),
|
||
(2947, 679, '', '添加话术', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/679', 3, '', 0, 'service-speechcraft-add', 0, '添加话术'),
|
||
(2948, 679, '', '编辑话术', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/679', 3, '', 0, 'service-speechcraft-edit', 0, '编辑话术'),
|
||
(2949, 679, '', '删除话术', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/679', 3, '', 0, 'service-speechcraft-delete', 0, '删除话术'),
|
||
(2950, 2946, '', '获取客服话术分类列表', '', '', '', 'app/wechat/speechcraftcate', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraftcate', 0, '获取客服话术分类列表'),
|
||
(2951, 2946, '', '保存客服话术分类', '', '', '', 'app/wechat/speechcraftcate', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraftcate', 0, '保存客服话术分类'),
|
||
(2952, 2946, '', '获取客服话术分类表单', '', '', '', 'app/wechat/speechcraftcate/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraftcate-create', 0, '获取客服话术分类表单'),
|
||
(2953, 2946, '', '获取修改客服话术分类表单', '', '', '', 'app/wechat/speechcraftcate/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraftcate-edit', 0, '获取修改客服话术分类表单'),
|
||
(2954, 2946, '', '修改客服话术分类', '', '', '', 'app/wechat/speechcraftcate/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraftcate', 0, '修改客服话术分类'),
|
||
(2955, 2947, '', '保存客服话术', '', '', '', 'app/wechat/speechcraft', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraft', 0, '保存客服话术'),
|
||
(2956, 2947, '', '获取客服话术表单', '', '', '', 'app/wechat/speechcraft/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraft-create', 0, '获取客服话术表单'),
|
||
(2957, 2948, '', '获取修改客服话术表单', '', '', '', 'app/wechat/speechcraft/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraft-edit', 0, '获取修改客服话术表单'),
|
||
(2958, 2948, '', '修改客服话术', '', '', '', 'app/wechat/speechcraft/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraft-646726ba5bc91', 0, '修改客服话术'),
|
||
(2959, 2949, '', '删除客服话术', '', '', '', 'app/wechat/speechcraft/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-speechcraft-6467272d0c6c4', 0, '删除客服话术'),
|
||
(2960, 738, '', '回复留言', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/738', 3, '', 0, 'service-feedback-reply', 0, '回复留言'),
|
||
(2961, 738, '', '删除留言', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '165/738', 3, '', 0, 'service-feedback-delete', 0, '删除留言'),
|
||
(2962, 2960, '', '获取修改用户反馈表单', '', '', '', 'app/feedback/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-feedback-edit', 0, '获取修改用户反馈表单'),
|
||
(2963, 2960, '', '修改用户反馈', '', '', '', 'app/feedback/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-feedback', 0, '修改用户反馈'),
|
||
(2964, 2961, '', '删除用户反馈', '', '', '', 'app/feedback/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-feedback-64672949545ff', 0, '删除用户反馈'),
|
||
(2965, 39, '', '审核提现', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/36/39', 3, '', 0, 'extract-status', 0, '审核提现'),
|
||
(2966, 39, '', '编辑提现', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/36/39', 3, '', 0, 'extract-edit', 0, '编辑提现'),
|
||
(2967, 2965, '', '拒绝提现申请', '', '', '', 'finance/extract/refuse/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-extract-refuse', 0, '拒绝提现申请'),
|
||
(2968, 2965, '', '通过提现申请', '', '', '', 'finance/extract/adopt/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-extract-adopt', 0, '通过提现申请'),
|
||
(2969, 2966, '', '提现记录修改', '', '', '', 'finance/extract/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-extract', 0, '提现记录修改'),
|
||
(2970, 2966, '', '提现记录修改表单', '', '', '', 'finance/extract/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-extract-edit', 0, '提现记录修改表单'),
|
||
(2971, 767, '', '编辑发票', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/36/767', 3, '', 0, 'invoice-edit', 0, '编辑发票'),
|
||
(2972, 767, '', '订单信息', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/36/767', 3, '', 0, 'invoice-order-info', 0, '订单信息'),
|
||
(2973, 2971, '', '申请发票列表', '', '', '', 'order/invoice/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-invoice-list', 0, '申请发票列表'),
|
||
(2974, 2971, '', '设置发票状态', '', '', '', 'order/invoice/set/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-invoice-set', 0, '设置发票状态'),
|
||
(2975, 2972, '', '开票订单详情', '', '', '', 'order/invoice_order_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-invoice_order_info', 0, '开票订单详情'),
|
||
(2976, 40, '', '充值删除', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/37/40', 3, '', 0, 'recharge-delete', 0, '充值删除'),
|
||
(2977, 40, '', '充值退款', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/37/40', 3, '', 0, 'recharge-refund', 0, '充值退款'),
|
||
(2978, 2976, '', '删除充值记录', '', '', '', 'finance/recharge/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-recharge', 0, '删除充值记录'),
|
||
(2979, 2976, '', '充值记录列表', '', '', '', 'finance/recharge', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-recharge', 0, '充值记录列表'),
|
||
(2980, 2977, '', '充值退款', '', '', '', 'finance/recharge/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-recharge-64672c72c2273', 0, '充值退款'),
|
||
(2981, 2977, '', '充值退款表单', '', '', '', 'finance/recharge/<id>/refund_edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'finance-recharge-refund_edit', 0, '充值退款表单'),
|
||
(2982, 998, '', '资金流水备注', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/37/998', 3, '', 0, 'capital-flow-mark', 0, '资金流水备注'),
|
||
(2983, 2982, '', '设置备注', '', '', '', 'statistic/flow/set_mark/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'statistic-flow-set_mark', 0, '设置备注'),
|
||
(2984, 999, '', '账单详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/37/999', 3, '', 0, 'billing-info', 0, '账单详情'),
|
||
(2985, 999, '', '下载账单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '35/37/999', 3, '', 0, 'billing-down', 0, '下载账单'),
|
||
(2986, 2984, '', '账单记录', '', '', '', 'statistic/flow/get_record', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'statistic-flow-get_record', 0, '账单记录'),
|
||
(2987, 2985, '', '资金流水', '', '', '', 'statistic/flow/get_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'statistic-flow-get_list', 0, '资金流水'),
|
||
(2988, 44, '', '添加文章', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/44', 3, '', 0, 'cms-add', 0, '添加文章'),
|
||
(2989, 44, '', '编辑文章', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/44', 3, '', 0, 'cms-edit', 0, '编辑文章'),
|
||
(2990, 44, '', '删除文章', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/44', 3, '', 0, 'cms-delete', 0, '删除文章'),
|
||
(2991, 44, '', '关联商品', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/44', 3, '', 0, 'cms-product', 0, '关联商品'),
|
||
(2992, 2988, '', '保存文章', '', '', '', 'cms/cms', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms', 0, '保存文章'),
|
||
(2993, 2988, '', '获取文章表单', '', '', '', 'cms/cms/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-create', 0, '获取文章表单'),
|
||
(2994, 2989, '', '获取修改文章表单', '', '', '', 'cms/cms/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-edit', 0, '获取修改文章表单'),
|
||
(2995, 2989, '', '获取文章详细信息', '', '', '', 'cms/cms/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-64673315dd264', 0, '获取文章详细信息'),
|
||
(2996, 2989, '', '修改文章', '', '', '', 'cms/cms/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-64673315dd287', 0, '修改文章'),
|
||
(2997, 2990, '', '删除文章', '', '', '', 'cms/cms/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-6467331dc244e', 0, '删除文章'),
|
||
(2998, 2991, '', '取消文章关联商品', '', '', '', 'cms/cms/unrelation/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-unrelation', 0, '取消文章关联商品'),
|
||
(2999, 2991, '', '文章关联商品', '', '', '', 'cms/cms/relation/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-cms-relation', 0, '文章关联商品'),
|
||
(3000, 45, '', '添加分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/45', 3, '', 0, 'cms-cate-add', 0, '添加分类'),
|
||
(3001, 45, '', '修改分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/45', 3, '', 0, 'cms-cate-edit', 0, '修改分类'),
|
||
(3002, 45, '', '删除分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/45', 3, '', 0, 'cms-cate-delete', 0, '删除分类'),
|
||
(3003, 45, '', '查看文章', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '43/45', 3, '', 0, 'cms-cate-cms', 0, '查看文章'),
|
||
(3004, 3000, '', '保存文章分类', '', '', '', 'cms/category', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-category', 0, '保存文章分类'),
|
||
(3005, 3000, '', '获取文章分类表单', '', '', '', 'cms/category/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-category-create', 0, '获取文章分类表单'),
|
||
(3006, 3001, '', '修改文章分类', '', '', '', 'cms/category/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-category-646733862d224', 0, '修改文章分类'),
|
||
(3007, 3001, '', '获取修改文章分类表单', '', '', '', 'cms/category/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-category-edit', 0, '获取修改文章分类表单'),
|
||
(3008, 3002, '', '删除文章分类', '', '', '', 'cms/category/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'cms-category-646733a5e8994', 0, '删除文章分类'),
|
||
(3009, 657, '', '商城首页', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657', 3, '', 0, 'pages-diy-index', 0, '商城首页'),
|
||
(3010, 657, '', '商品分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657', 3, '', 0, 'pages-diy-cate', 0, '商品分类'),
|
||
(3011, 657, '', '个人中心', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657', 3, '', 0, 'pages-diy-user', 0, '个人中心'),
|
||
(3012, 3009, '', '添加专题页', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3009', 3, '', 0, 'pages-diy-add', 0, '添加专题页'),
|
||
(3013, 3009, '', '编辑页面', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3009', 3, '', 0, 'pages-diy-edit', 0, '编辑页面'),
|
||
(3014, 3009, '', '删除页面', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3009', 3, '', 0, 'pages-diy-delete', 0, '删除页面'),
|
||
(3015, 3009, '', '设为首页', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3009', 3, '', 0, 'pages-diy-status', 0, '设为首页'),
|
||
(3016, 3012, '', '添加DIY模板', '', '', '', 'diy/save/<id?>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-save', 0, '添加DIY模板'),
|
||
(3017, 3012, '', '添加DIY模板', '', '', '', 'diy/diy_save/<id?>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-diy_save', 0, '添加DIY模板'),
|
||
(3018, 3012, '', '获取前端页面路径', '', '', '', 'diy/get_url', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_url', 0, '获取前端页面路径'),
|
||
(3019, 3012, '', '获取商品分类', '', '', '', 'diy/get_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_category', 0, '获取商品分类'),
|
||
(3020, 3012, '', '获取商品列表', '', '', '', 'diy/get_product', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_product', 0, '获取商品列表'),
|
||
(3021, 3012, '', '获取门店自提开启状态', '', '', '', 'diy/get_store_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_store_status', 0, '获取门店自提开启状态'),
|
||
(3022, 3012, '', '还原Diy默认数据', '', '', '', 'diy/recovery/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-recovery', 0, '还原Diy默认数据'),
|
||
(3023, 3012, '', '获取所有二级分类', '', '', '', 'diy/get_by_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_by_category', 0, '获取所有二级分类'),
|
||
(3024, 3012, '', '设置Diy默认数据', '', '', '', 'diy/set_recovery/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-set_recovery', 0, '设置Diy默认数据'),
|
||
(3025, 3012, '', '获取商品列表', '', '', '', 'diy/get_product_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_product_list', 0, '获取商品列表'),
|
||
(3026, 3012, '', '获取页面链接', '', '', '', 'diy/get_page_link/<cate_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_link', 0, '获取页面链接'),
|
||
(3027, 3012, '', '获取页面链接分类', '', '', '', 'diy/get_page_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_category', 0, '获取页面链接分类'),
|
||
(3028, 3012, '', '添加DIY', '', '', '', 'diy/create', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-create', 0, '添加DIY'),
|
||
(3029, 3012, '', '添加表单', '', '', '', 'diy/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-create', 0, '添加表单'),
|
||
(3030, 3012, '', 'Diy模板数据详情', '', '', '', 'diy/get_diy_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_diy_info', 0, 'Diy模板数据详情'),
|
||
(3031, 3012, '', '删除DIY模板', '', '', '', 'diy/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-del', 0, '删除DIY模板'),
|
||
(3032, 3012, '', 'Diy模板数据详情', '', '', '', 'diy/get_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_info', 0, 'Diy模板数据详情'),
|
||
(3033, 3013, '', 'Diy模板数据详情', '', '', '', 'diy/get_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_info-646a1a8c6b2bf', 0, 'Diy模板数据详情'),
|
||
(3034, 3013, '', 'Diy模板数据详情', '', '', '', 'diy/get_diy_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_diy_info-646a1a8c6b2c6', 0, 'Diy模板数据详情'),
|
||
(3035, 3013, '', '使用DIY模板', '', '', '', 'diy/set_status/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-set_status', 0, '使用DIY模板'),
|
||
(3036, 3013, '', '添加表单', '', '', '', 'diy/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-create-646a1a8c6b2cf', 0, '添加表单'),
|
||
(3037, 3013, '', '添加DIY', '', '', '', 'diy/create', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-create-646a1a8c6b2d2', 0, '添加DIY'),
|
||
(3038, 3013, '', '添加DIY模板', '', '', '', 'diy/save/<id?>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-save-646a1a8c6b2d6', 0, '添加DIY模板'),
|
||
(3039, 3013, '', '获取前端页面路径', '', '', '', 'diy/get_url', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_url-646a1a8c6b2da', 0, '获取前端页面路径'),
|
||
(3040, 3013, '', '添加DIY模板', '', '', '', 'diy/diy_save/<id?>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-diy_save-646a1a8c6b2de', 0, '添加DIY模板'),
|
||
(3041, 3013, '', '获取商品分类', '', '', '', 'diy/get_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_category-646a1a8c6b2e2', 0, '获取商品分类'),
|
||
(3042, 3013, '', '获取商品列表', '', '', '', 'diy/get_product', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_product-646a1a8c6b2e6', 0, '获取商品列表'),
|
||
(3043, 3013, '', '还原Diy默认数据', '', '', '', 'diy/recovery/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-recovery-646a1a8c6b2ea', 0, '还原Diy默认数据'),
|
||
(3044, 3013, '', '获取门店自提开启状态', '', '', '', 'diy/get_store_status', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_store_status-646a1a8c6b2ed', 0, '获取门店自提开启状态'),
|
||
(3045, 3013, '', '获取所有二级分类', '', '', '', 'diy/get_by_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_by_category-646a1a8c6b2f1', 0, '获取所有二级分类'),
|
||
(3046, 3013, '', '设置Diy默认数据', '', '', '', 'diy/set_recovery/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-set_recovery-646a1a8c6b2f5', 0, '设置Diy默认数据'),
|
||
(3047, 3013, '', '获取商品列表', '', '', '', 'diy/get_product_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_product_list-646a1a8c6b2f9', 0, '获取商品列表'),
|
||
(3048, 3013, '', '获取页面链接分类', '', '', '', 'diy/get_page_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_category-646a1a8c6b2fd', 0, '获取页面链接分类'),
|
||
(3049, 3013, '', '获取页面链接', '', '', '', 'diy/get_page_link/<cate_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_link-646a1a8c6b301', 0, '获取页面链接'),
|
||
(3050, 3014, '', '删除DIY模板', '', '', '', 'diy/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-del-646a1a97c43d4', 0, '删除DIY模板'),
|
||
(3051, 3015, '', '使用DIY模板', '', '', '', 'diy/set_status/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-set_status-646a1aa862dae', 0, '使用DIY模板'),
|
||
(3052, 3010, '', '切换分类页面', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3010', 3, '', 0, 'pages-diy-cate-status', 0, '切换分类页面'),
|
||
(3053, 3052, '', '获取风格设置', '', '', '', 'diy/get_color_change/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_color_change', 0, '获取风格设置'),
|
||
(3054, 3052, '', '换色和分类保存', '', '', '', 'diy/color_change/<status>/<type>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-color_change', 0, '换色和分类保存'),
|
||
(3055, 3011, '', '保存个人中心', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/657/3011', 3, '', 0, 'pages-diy-member-save', 0, '保存个人中心'),
|
||
(3056, 3055, '', '个人中心保存', '', '', '', 'diy/member_save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-member_save', 0, '个人中心保存'),
|
||
(3057, 3055, '', '获取页面链接', '', '', '', 'diy/get_page_link/<cate_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_link-646a1b603f626', 0, '获取页面链接'),
|
||
(3058, 3055, '', '获取页面链接分类', '', '', '', 'diy/get_page_category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_page_category-646a1b603f62f', 0, '获取页面链接分类'),
|
||
(3059, 3055, '', '个人中心详情', '', '', '', 'diy/get_member', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_member', 0, '个人中心详情'),
|
||
(3060, 902, '', '切换主题', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/902', 3, '', 0, 'pages-theme-status', 0, '切换主题'),
|
||
(3061, 3060, '', '换色和分类保存', '', '', '', 'diy/color_change/<status>/<type>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-color_change-646a1bdde013b', 0, '换色和分类保存'),
|
||
(3062, 3060, '', '获取风格设置', '', '', '', 'diy/get_color_change/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'diy-get_color_change-646a1bdde0144', 0, '获取风格设置'),
|
||
(3063, 566, '', '添加素材分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/566', 3, '', 0, 'system-file-cate-add', 0, '添加素材分类'),
|
||
(3064, 566, '', '删除素材分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/566', 3, '', 0, 'system-file-cate-delete', 0, '删除素材分类'),
|
||
(3065, 566, '', '上传素材', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/566', 3, '', 0, 'system-file-add', 0, '上传素材'),
|
||
(3066, 566, '', '删除素材', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/656/566', 3, '', 0, 'system-file-delete', 0, '删除素材'),
|
||
(3067, 3063, '', '获取附件分类管理列表', '', '', '', 'file/category', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category', 0, '获取附件分类管理列表'),
|
||
(3068, 3063, '', '保存附件分类管理', '', '', '', 'file/category', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category', 0, '保存附件分类管理'),
|
||
(3069, 3063, '', '获取附件分类管理表单', '', '', '', 'file/category/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category-create', 0, '获取附件分类管理表单'),
|
||
(3070, 3063, '', '获取修改附件分类管理表单', '', '', '', 'file/category/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category-edit', 0, '获取修改附件分类管理表单'),
|
||
(3071, 3063, '', '修改附件分类管理', '', '', '', 'file/category/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category', 0, '修改附件分类管理'),
|
||
(3072, 3064, '', '删除附件分类管理', '', '', '', 'file/category/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-category-646a1ca8e74c5', 0, '删除附件分类管理'),
|
||
(3073, 3065, '', '图片附件列表', '', '', '', 'file/file', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-file', 0, '图片附件列表'),
|
||
(3074, 3065, '', '移动图片分类表单', '', '', '', 'file/file/move', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-file-move', 0, '移动图片分类表单'),
|
||
(3075, 3065, '', '移动图片分类', '', '', '', 'file/file/do_move', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-file-do_move', 0, '移动图片分类'),
|
||
(3076, 3065, '', '修改图片名称', '', '', '', 'file/file/update/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-file-update', 0, '修改图片名称'),
|
||
(3077, 3065, '', '上传图片', '', '', '', 'file/upload/<upload_type?>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-upload', 0, '上传图片'),
|
||
(3078, 3065, '', '上传类型', '', '', '', 'file/upload_type', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-upload_type', 0, '上传类型'),
|
||
(3079, 3065, '', '分片上传本地视频', '', '', '', 'file/video_upload', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-video_upload', 0, '分片上传本地视频'),
|
||
(3080, 3066, '', '删除图片', '', '', '', 'file/file/delete', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'file-file-delete', 0, '删除图片'),
|
||
(3081, 92, '', '保存并发布', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/92', 3, '', 0, 'wechat-menu-save', 0, '保存并发布'),
|
||
(3082, 3081, '', '微信公众号菜单列表', '', '', '', 'app/wechat/menu', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-menu', 0, '微信公众号菜单列表'),
|
||
(3083, 3081, '', '保存微信公众号菜单', '', '', '', 'app/wechat/menu', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-menu', 0, '保存微信公众号菜单'),
|
||
(3084, 109, '', '添加图文', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/109', 3, '', 0, 'wechat-news-add', 0, '添加图文'),
|
||
(3085, 109, '', '编辑图文', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/109', 3, '', 0, 'wechat-news-edit', 0, '编辑图文'),
|
||
(3086, 109, '', '删除图文', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/109', 3, '', 0, 'wechat-news-delete', 0, '删除图文'),
|
||
(3087, 3084, '', '图文列表', '', '', '', 'app/wechat/news', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news', 0, '图文列表'),
|
||
(3088, 3084, '', '保存图文', '', '', '', 'app/wechat/news', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news', 0, '保存图文'),
|
||
(3089, 3084, '', '图文详情', '', '', '', 'app/wechat/news/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news', 0, '图文详情'),
|
||
(3090, 3085, '', '保存图文', '', '', '', 'app/wechat/news', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news-646a1d9c1d008', 0, '保存图文'),
|
||
(3091, 3085, '', '图文列表', '', '', '', 'app/wechat/news', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news-646a1d9c1d011', 0, '图文列表'),
|
||
(3092, 3085, '', '图文详情', '', '', '', 'app/wechat/news/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news-646a1d9c1d017', 0, '图文详情'),
|
||
(3093, 3086, '', '删除图文', '', '', '', 'app/wechat/news/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-news-646a1da7936d6', 0, '删除图文'),
|
||
(3094, 113, '', '保存并发布', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/114/113', 3, '', 0, 'wechat-follow-save', 0, '保存并发布'),
|
||
(3095, 115, '', '保存并发布', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/114/115', 3, '', 0, 'wechat-keyword-save', 0, '保存并发布'),
|
||
(3096, 116, '', '保存并回复', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/69/114/116', 3, '', 0, 'wechat-default-save', 0, '保存并回复'),
|
||
(3097, 3094, '', '关键字回复列表', '', '', '', 'app/wechat/keyword', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword', 0, '关键字回复列表'),
|
||
(3098, 3094, '', '保存关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword', 0, '保存关键字回复'),
|
||
(3099, 3094, '', '关键字回复详情', '', '', '', 'app/wechat/keyword/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword', 0, '关键字回复详情'),
|
||
(3100, 3094, '', '删除关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword', 0, '删除关键字回复'),
|
||
(3101, 3094, '', '修改关键字回复状态', '', '', '', 'app/wechat/keyword/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-set_status', 0, '修改关键字回复状态'),
|
||
(3102, 3095, '', '关键字回复列表', '', '', '', 'app/wechat/keyword', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e33e50c2', 0, '关键字回复列表'),
|
||
(3103, 3095, '', '保存关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e33e50cc', 0, '保存关键字回复'),
|
||
(3104, 3095, '', '关键字回复详情', '', '', '', 'app/wechat/keyword/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e33e50d2', 0, '关键字回复详情'),
|
||
(3105, 3095, '', '删除关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e33e50da', 0, '删除关键字回复'),
|
||
(3106, 3095, '', '修改关键字回复状态', '', '', '', 'app/wechat/keyword/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-set_status-646a1e33e50e0', 0, '修改关键字回复状态'),
|
||
(3107, 3096, '', '关键字回复列表', '', '', '', 'app/wechat/keyword', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e43aba07', 0, '关键字回复列表'),
|
||
(3108, 3096, '', '保存关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e43aba11', 0, '保存关键字回复'),
|
||
(3109, 3096, '', '修改关键字回复状态', '', '', '', 'app/wechat/keyword/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-set_status-646a1e43aba18', 0, '修改关键字回复状态'),
|
||
(3110, 3096, '', '删除关键字回复', '', '', '', 'app/wechat/keyword/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e43aba1e', 0, '删除关键字回复'),
|
||
(3111, 3096, '', '关键字回复详情', '', '', '', 'app/wechat/keyword/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-keyword-646a1e43aba24', 0, '关键字回复详情'),
|
||
(3112, 994, '', '下载小程序码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/993/994', 3, '', 0, 'routine-down-qrcode', 0, '下载小程序码'),
|
||
(3113, 994, '', '下载小程序包', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '135/993/994', 3, '', 0, 'routine-down-file', 0, '下载小程序包'),
|
||
(3114, 3112, '', '下载小程序页面数据', '', '', '', 'app/routine/info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-routine-info', 0, '下载小程序页面数据'),
|
||
(3115, 3113, '', '下载小程序页面数据', '', '', '', 'app/routine/info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-routine-info-646a1ed2ee6e0', 0, '下载小程序页面数据'),
|
||
(3116, 3113, '', '下载小程序模版', '', '', '', 'app/routine/download', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-routine-download', 0, '下载小程序模版'),
|
||
(3118, 898, '', '同步消息', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/898', 3, '', 0, 'notification-sync', 0, '同步消息'),
|
||
(3119, 898, '', '设置消息', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/898', 3, '', 0, 'notification-setting', 0, '设置消息'),
|
||
(3120, 898, '', '消息状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/898', 3, '', 0, 'notification-status', 0, '消息状态'),
|
||
(3121, 3118, '', '一键同步订阅消息', '', '', '', 'app/routine/syncSubscribe', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-routine-syncSubscribe', 0, '一键同步订阅消息'),
|
||
(3122, 3118, '', '一键同步模版消息', '', '', '', 'app/wechat/syncSubscribe', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'app-wechat-syncSubscribe', 0, '一键同步模版消息'),
|
||
(3123, 3119, '', '系统通知列表', '', '', '', 'setting/notification/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-notification-index', 0, '系统通知列表'),
|
||
(3124, 3119, '', '保存通知设置', '', '', '', 'setting/notification/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-notification-save', 0, '保存通知设置'),
|
||
(3125, 3119, '', '获取单条通知数据', '', '', '', 'setting/notification/info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-notification-info', 0, '获取单条通知数据'),
|
||
(3126, 3120, '', '修改消息状态', '', '', '', 'setting/notification/set_status/<type>/<status>/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-notification-set_status', 0, '修改消息状态'),
|
||
(3127, 1061, '', '保存协议', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1061', 3, '', 0, 'agreement-save', 0, '保存协议'),
|
||
(3128, 3127, '', '获取协议内容', '', '', '', 'setting/get_agreement/<type>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-get_agreement', 0, '获取协议内容'),
|
||
(3129, 3127, '', '获取版权信息', '', '', '', 'setting/get_version', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-get_version', 0, '获取版权信息'),
|
||
(3130, 3127, '', '设置协议内容', '', '', '', 'setting/save_agreement', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-save_agreement', 0, '设置协议内容'),
|
||
(3131, 19, '', '添加角色', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/19', 3, '', 0, 'system-role-add', 0, '添加角色'),
|
||
(3132, 19, '', '编辑角色', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/19', 3, '', 0, 'system-role-edit', 0, '编辑角色'),
|
||
(3133, 19, '', '删除角色', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/19', 3, '', 0, 'system-role-delete', 0, '删除角色'),
|
||
(3134, 19, '', '角色状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/19', 3, '', 0, 'system-role-status', 0, '角色状态'),
|
||
(3135, 3131, '', '管理员身份列表', '', '', '', 'setting/role', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role', 0, '管理员身份列表'),
|
||
(3136, 3131, '', '管理员身份权限列表', '', '', '', 'setting/role/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-create', 0, '管理员身份权限列表'),
|
||
(3137, 3131, '', '新建或编辑管理员', '', '', '', 'setting/role/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role', 0, '新建或编辑管理员'),
|
||
(3138, 3132, '', '管理员身份列表', '', '', '', 'setting/role', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-646a206a0dd01', 0, '管理员身份列表'),
|
||
(3139, 3132, '', '编辑管理员详情', '', '', '', 'setting/role/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-edit', 0, '编辑管理员详情'),
|
||
(3140, 3132, '', '新建或编辑管理员', '', '', '', 'setting/role/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-646a206a0dd15', 0, '新建或编辑管理员'),
|
||
(3141, 3133, '', '管理员身份列表', '', '', '', 'setting/role', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-646a2078367e6', 0, '管理员身份列表'),
|
||
(3142, 3133, '', '删除管理员身份', '', '', '', 'setting/role/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-646a2078367ef', 0, '删除管理员身份'),
|
||
(3143, 3134, '', '管理员身份列表', '', '', '', 'setting/role', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-646a2083c8f0b', 0, '管理员身份列表'),
|
||
(3144, 3134, '', '修改管理员身份状态', '', '', '', 'setting/role/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-role-set_status', 0, '修改管理员身份状态'),
|
||
(3145, 20, '', '添加管理员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/20', 3, '', 0, 'system-admin-add', 0, '添加管理员'),
|
||
(3146, 20, '', '修改管理员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/20', 3, '', 0, 'system-admin-edit', 0, '修改管理员'),
|
||
(3147, 20, '', '删除管理员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/20', 3, '', 0, 'system-admin-delete', 0, '删除管理员'),
|
||
(3148, 20, '', '管理员状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/20', 3, '', 0, 'system-admin-status', 0, '管理员状态'),
|
||
(3149, 3145, '', '获取管理员列表', '', '', '', 'setting/admin', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin', 0, '获取管理员列表'),
|
||
(3150, 3145, '', '保存管理员', '', '', '', 'setting/admin', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin', 0, '保存管理员'),
|
||
(3151, 3145, '', '获取管理员表单', '', '', '', 'setting/admin/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-create', 0, '获取管理员表单'),
|
||
(3152, 3146, '', '获取管理员列表', '', '', '', 'setting/admin', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-646a213532f4c', 0, '获取管理员列表'),
|
||
(3153, 3146, '', '获取修改管理员表单', '', '', '', 'setting/admin/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-edit', 0, '获取修改管理员表单'),
|
||
(3154, 3146, '', '修改管理员', '', '', '', 'setting/admin/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-646a213532f5f', 0, '修改管理员'),
|
||
(3155, 3147, '', '删除管理员', '', '', '', 'setting/admin/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-646a2141d9a56', 0, '删除管理员'),
|
||
(3156, 3147, '', '获取管理员列表', '', '', '', 'setting/admin', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-646a2141d9a61', 0, '获取管理员列表'),
|
||
(3157, 3148, '', '获取管理员列表', '', '', '', 'setting/admin', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-admin-646a214f14bed', 0, '获取管理员列表'),
|
||
(3158, 3148, '', '修改管理员状态', '', '', '', 'setting/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-set_status', 0, '修改管理员状态'),
|
||
(3159, 21, '', '编辑菜单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/14/21', 3, '', 0, 'system-menu-edit', 0, '编辑菜单'),
|
||
(3160, 3159, '', '获取修改权限菜单表单', '', '', '', 'setting/menus/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-edit', 0, '获取修改权限菜单表单'),
|
||
(3161, 3159, '', '修改权限菜单', '', '', '', 'setting/menus/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus', 0, '修改权限菜单'),
|
||
(3162, 3159, '', '查看权限菜单信息', '', '', '', 'setting/menus/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus', 0, '查看权限菜单信息'),
|
||
(3163, 720, '', '添加配送员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/720', 3, '', 0, 'delivery-service-add', 0, '添加配送员'),
|
||
(3164, 720, '', '编辑配送员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/720', 3, '', 0, 'delivery-service-edit', 0, '编辑配送员'),
|
||
(3165, 720, '', '删除配送员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/720', 3, '', 0, 'delivery-service-delete', 0, '删除配送员'),
|
||
(3166, 720, '', '配送员状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/720', 3, '', 0, 'delivery-service-status', 0, '配送员状态'),
|
||
(3167, 3163, '', '配送员列表', '', '', '', 'order/delivery/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-index', 0, '配送员列表'),
|
||
(3168, 3163, '', '新增配送表单', '', '', '', 'order/delivery/add', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-add', 0, '新增配送表单'),
|
||
(3169, 3163, '', '保存新建的配送员', '', '', '', 'order/delivery/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-save', 0, '保存新建的配送员'),
|
||
(3170, 3164, '', '编辑配送员表单', '', '', '', 'order/delivery/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-edit', 0, '编辑配送员表单'),
|
||
(3171, 3164, '', '修改配送员', '', '', '', 'order/delivery/update/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-update', 0, '修改配送员'),
|
||
(3172, 3165, '', '删除配送员', '', '', '', 'order/delivery/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-del', 0, '删除配送员'),
|
||
(3173, 3166, '', '修改配送员状态', '', '', '', 'order/delivery/set_status/<id>/<status>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'order-delivery-set_status', 0, '修改配送员状态'),
|
||
(3174, 300, '', '添加提货点', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/300', 3, '', 0, 'merchant-add', 0, '添加提货点'),
|
||
(3175, 300, '', '修改提货点', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/300', 3, '', 0, 'merchant-edit', 0, '修改提货点'),
|
||
(3176, 300, '', '删除提货点', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/300', 3, '', 0, 'merchant-delete', 0, '删除提货点'),
|
||
(3177, 300, '', '提货点状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/300', 3, '', 0, 'merchant-status', 0, '提货点状态'),
|
||
(3178, 3174, '', '门店列表', '', '', '', 'merchant/store', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store', 0, '门店列表'),
|
||
(3179, 3174, '', '保存修改门店信息', '', '', '', 'merchant/store/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store', 0, '保存修改门店信息'),
|
||
(3180, 3174, '', '门店位置选择', '', '', '', 'merchant/store/address', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-address', 0, '门店位置选择'),
|
||
(3181, 3175, '', '门店列表', '', '', '', 'merchant/store', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-646a231547cf8', 0, '门店列表'),
|
||
(3182, 3175, '', '保存修改门店信息', '', '', '', 'merchant/store/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-646a231547d03', 0, '保存修改门店信息'),
|
||
(3183, 3175, '', '门店详情', '', '', '', 'merchant/store/get_info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-get_info', 0, '门店详情'),
|
||
(3184, 3175, '', '门店位置选择', '', '', '', 'merchant/store/address', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-address-646a231547d13', 0, '门店位置选择'),
|
||
(3185, 3176, '', '门店列表', '', '', '', 'merchant/store', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-646a23281a6ee', 0, '门店列表'),
|
||
(3186, 3176, '', '门店删除', '', '', '', 'merchant/store/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-del', 0, '门店删除'),
|
||
(3187, 3177, '', '门店列表', '', '', '', 'merchant/store', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-646a2337c993f', 0, '门店列表'),
|
||
(3188, 3177, '', '门店上下架', '', '', '', 'merchant/store/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store-set_show', 0, '门店上下架'),
|
||
(3189, 301, '', '添加核销员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/301', 3, '', 0, 'merchant-staff-add', 0, '添加核销员'),
|
||
(3190, 301, '', '修改核销员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/301', 3, '', 0, 'merchant-staff-edit', 0, '修改核销员'),
|
||
(3191, 301, '', '删除核销员', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/301', 3, '', 0, 'merchant-staff-delete', 0, '删除核销员'),
|
||
(3192, 301, '', '核销员状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/144/301', 3, '', 0, 'merchant-staff-status', 0, '核销员状态'),
|
||
(3193, 3189, '', '获取门店店员列表', '', '', '', 'merchant/store_staff', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff', 0, '获取门店店员列表'),
|
||
(3194, 3189, '', '添加门店店员表单', '', '', '', 'merchant/store_staff/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-create', 0, '添加门店店员表单'),
|
||
(3195, 3189, '', '保存店员', '', '', '', 'merchant/store_staff/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-save', 0, '保存店员'),
|
||
(3196, 3189, '', '门店搜索列表', '', '', '', 'merchant/store_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_list', 0, '门店搜索列表'),
|
||
(3197, 3190, '', '获取门店店员列表', '', '', '', 'merchant/store_staff', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-646a23be65c88', 0, '获取门店店员列表'),
|
||
(3198, 3190, '', '修改店员表单', '', '', '', 'merchant/store_staff/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-edit', 0, '修改店员表单'),
|
||
(3199, 3190, '', '保存店员', '', '', '', 'merchant/store_staff/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-save-646a23be65c98', 0, '保存店员'),
|
||
(3200, 3190, '', '门店搜索列表', '', '', '', 'merchant/store_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_list-646a23be65c9e', 0, '门店搜索列表'),
|
||
(3201, 3191, '', '获取门店店员列表', '', '', '', 'merchant/store_staff', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-646a23cc0a061', 0, '获取门店店员列表'),
|
||
(3202, 3191, '', '删除店员', '', '', '', 'merchant/store_staff/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-del', 0, '删除店员'),
|
||
(3203, 3192, '', '修改店员状态', '', '', '', 'merchant/store_staff/set_show/<id>/<is_show>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-set_show', 0, '修改店员状态'),
|
||
(3204, 3192, '', '获取门店店员列表', '', '', '', 'merchant/store_staff', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'merchant-store_staff-646a23d9d7e44', 0, '获取门店店员列表'),
|
||
(3205, 230, '', '添加运费模版', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/230', 3, '', 0, 'shipping-temp-add', 0, '添加运费模版'),
|
||
(3206, 230, '', '修改运费模版', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/230', 3, '', 0, 'shipping-temp-edit', 0, '修改运费模版'),
|
||
(3207, 230, '', '删除运费模版', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/303/230', 3, '', 0, 'shipping-temp-delete', 0, '删除运费模版'),
|
||
(3208, 3205, '', '运费模板列表', '', '', '', 'setting/shipping_templates/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-list', 0, '运费模板列表'),
|
||
(3209, 3205, '', '新增或修改运费模版', '', '', '', 'setting/shipping_templates/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-save', 0, '新增或修改运费模版'),
|
||
(3210, 3205, '', '城市数据接口', '', '', '', 'setting/shipping_templates/city_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-city_list', 0, '城市数据接口'),
|
||
(3211, 3206, '', '运费模板列表', '', '', '', 'setting/shipping_templates/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-list-646a24602a752', 0, '运费模板列表'),
|
||
(3212, 3206, '', '修改运费模板数据', '', '', '', 'setting/shipping_templates/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-edit', 0, '修改运费模板数据'),
|
||
(3213, 3206, '', '新增或修改运费模版', '', '', '', 'setting/shipping_templates/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-save-646a24602a763', 0, '新增或修改运费模版'),
|
||
(3214, 3206, '', '城市数据接口', '', '', '', 'setting/shipping_templates/city_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-city_list-646a24602a769', 0, '城市数据接口'),
|
||
(3215, 3207, '', '删除运费模板', '', '', '', 'setting/shipping_templates/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-del', 0, '删除运费模板'),
|
||
(3216, 3207, '', '运费模板列表', '', '', '', 'setting/shipping_templates/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-shipping_templates-list-646a246c229e8', 0, '运费模板列表'),
|
||
(3217, 111, '', '添加配置分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-tab-add', 0, '添加配置分类'),
|
||
(3218, 111, '', '修改配置分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-tab-edit', 0, '修改配置分类'),
|
||
(3219, 111, '', '删除配置分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-tab-delete', 0, '删除配置分类'),
|
||
(3220, 111, '', '查看配置列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-list', 0, '查看配置列表'),
|
||
(3221, 111, '', '添加配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-add', 0, '添加配置'),
|
||
(3222, 111, '', '修改配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-edit', 0, '修改配置'),
|
||
(3223, 111, '', '删除配置', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/111', 3, '', 0, 'config-delete', 0, '删除配置'),
|
||
(3224, 3217, '', '获取系统配置分类列表', '', '', '', 'setting/config_class', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class', 0, '获取系统配置分类列表'),
|
||
(3225, 3217, '', '获取系统配置分类表单', '', '', '', 'setting/config_class/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-create', 0, '获取系统配置分类表单'),
|
||
(3226, 3217, '', '保存系统配置分类', '', '', '', 'setting/config_class', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class', 0, '保存系统配置分类'),
|
||
(3227, 3218, '', '获取系统配置分类列表', '', '', '', 'setting/config_class', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-646a2648cbb75', 0, '获取系统配置分类列表'),
|
||
(3228, 3218, '', '获取修改系统配置分类表单', '', '', '', 'setting/config_class/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-edit', 0, '获取修改系统配置分类表单'),
|
||
(3229, 3218, '', '修改系统配置分类', '', '', '', 'setting/config_class/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-646a2648cbb97', 0, '修改系统配置分类'),
|
||
(3230, 3219, '', '获取系统配置分类列表', '', '', '', 'setting/config_class', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-646a26613d6bb', 0, '获取系统配置分类列表'),
|
||
(3231, 3219, '', '删除系统配置分类', '', '', '', 'setting/config_class/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-646a26613d6c6', 0, '删除系统配置分类'),
|
||
(3232, 3220, '', '获取系统配置分类列表', '', '', '', 'setting/config_class', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config_class-646a267255df4', 0, '获取系统配置分类列表'),
|
||
(3233, 3220, '', '获取系统配置列表', '', '', '', 'setting/config', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config', 0, '获取系统配置列表'),
|
||
(3234, 3221, '', '获取系统配置列表', '', '', '', 'setting/config', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a26874c851', 0, '获取系统配置列表'),
|
||
(3235, 3221, '', '保存系统配置', '', '', '', 'setting/config', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a26874c85b', 0, '保存系统配置'),
|
||
(3236, 3221, '', '获取系统配置表单', '', '', '', 'setting/config/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-create', 0, '获取系统配置表单'),
|
||
(3237, 3222, '', '获取系统配置列表', '', '', '', 'setting/config', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a269697340', 0, '获取系统配置列表'),
|
||
(3238, 3222, '', '获取修改系统配置表单', '', '', '', 'setting/config/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-edit', 0, '获取修改系统配置表单'),
|
||
(3239, 3222, '', '修改系统配置', '', '', '', 'setting/config/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a269697353', 0, '修改系统配置'),
|
||
(3240, 3223, '', '获取系统配置列表', '', '', '', 'setting/config', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a26a48db02', 0, '获取系统配置列表'),
|
||
(3241, 3223, '', '删除系统配置', '', '', '', 'setting/config/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-646a26a48db0f', 0, '删除系统配置'),
|
||
(3242, 3223, '', '修改配置状态', '', '', '', 'setting/config/set_status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-config-set_status', 0, '修改配置状态'),
|
||
(3243, 112, '', '添加数据组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-add', 0, '添加数据组'),
|
||
(3244, 112, '', '修改数据组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-edit', 0, '修改数据组'),
|
||
(3245, 112, '', '删除数据组', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-delete', 0, '删除数据组'),
|
||
(3246, 112, '', '查看数据列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-data-list', 0, '查看数据列表'),
|
||
(3247, 112, '', '添加组合数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-data-add', 0, '添加组合数据'),
|
||
(3248, 112, '', '修改组合数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-data-edit', 0, '修改组合数据'),
|
||
(3249, 112, '', '删除组合数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/112', 3, '', 0, 'system-group-data-delete', 0, '删除组合数据'),
|
||
(3250, 3243, '', '获取组合数据列表', '', '', '', 'setting/group', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group', 0, '获取组合数据列表'),
|
||
(3251, 3243, '', '保存组合数据', '', '', '', 'setting/group', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group', 0, '保存组合数据'),
|
||
(3252, 3244, '', '获取组合数据列表', '', '', '', 'setting/group', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-646a2784797f3', 0, '获取组合数据列表'),
|
||
(3253, 3244, '', '获取修改组合数据表单', '', '', '', 'setting/group/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-edit', 0, '获取修改组合数据表单'),
|
||
(3254, 3244, '', '修改组合数据', '', '', '', 'setting/group/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-646a278479805', 0, '修改组合数据'),
|
||
(3255, 3245, '', '获取组合数据列表', '', '', '', 'setting/group', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-646a27906b21a', 0, '获取组合数据列表'),
|
||
(3256, 3245, '', '删除组合数据', '', '', '', 'setting/group/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-646a27906b223', 0, '删除组合数据'),
|
||
(3257, 3246, '', '获取组合数据列表', '', '', '', 'setting/group', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group-646a27b813076', 0, '获取组合数据列表'),
|
||
(3258, 3246, '', '获取组合数据子数据列表', '', '', '', 'setting/group_data', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data', 0, '获取组合数据子数据列表'),
|
||
(3259, 3247, '', '获取组合数据子数据列表', '', '', '', 'setting/group_data', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27c6e19ae', 0, '获取组合数据子数据列表'),
|
||
(3260, 3247, '', '保存组合数据子数据', '', '', '', 'setting/group_data', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27c6e19b8', 0, '保存组合数据子数据'),
|
||
(3261, 3247, '', '获取组合数据子数据表单', '', '', '', 'setting/group_data/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-create', 0, '获取组合数据子数据表单'),
|
||
(3262, 3248, '', '获取组合数据子数据列表', '', '', '', 'setting/group_data', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27d6c6cbf', 0, '获取组合数据子数据列表'),
|
||
(3263, 3248, '', '获取修改组合数据子数据表单', '', '', '', 'setting/group_data/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-edit', 0, '获取修改组合数据子数据表单'),
|
||
(3264, 3248, '', '修改组合数据子数据', '', '', '', 'setting/group_data/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27d6c6cd2', 0, '修改组合数据子数据'),
|
||
(3265, 3249, '', '获取组合数据子数据列表', '', '', '', 'setting/group_data', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27e50d1c1', 0, '获取组合数据子数据列表'),
|
||
(3266, 3249, '', '删除组合数据子数据', '', '', '', 'setting/group_data/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-group_data-646a27e50d1ca', 0, '删除组合数据子数据'),
|
||
(3267, 1076, '', '添加定时任务', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/1076', 3, '', 0, 'crontab-add', 0, '添加定时任务'),
|
||
(3268, 1076, '', '编辑定时任务', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/1076', 3, '', 0, 'crontab-edit', 0, '编辑定时任务'),
|
||
(3269, 1076, '', '删除定时任务', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/1076', 3, '', 0, 'crontab-delete', 0, '删除定时任务'),
|
||
(3270, 1076, '', '定时任务状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/1076', 3, '', 0, 'crontab-status', 0, '定时任务状态'),
|
||
(3271, 3267, '', '定时任务列表', '', '', '', 'system/crontab/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-list', 0, '定时任务列表'),
|
||
(3272, 3267, '', '定时任务类型', '', '', '', 'system/crontab/mark', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-mark', 0, '定时任务类型'),
|
||
(3273, 3267, '', '定时任务添加编辑', '', '', '', 'system/crontab/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-save', 0, '定时任务添加编辑'),
|
||
(3274, 3268, '', '定时任务列表', '', '', '', 'system/crontab/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-list-646a2860d3394', 0, '定时任务列表'),
|
||
(3275, 3268, '', '定时任务类型', '', '', '', 'system/crontab/mark', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-mark-646a2860d339f', 0, '定时任务类型'),
|
||
(3276, 3268, '', '定时任务详情', '', '', '', 'system/crontab/info/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-info', 0, '定时任务详情'),
|
||
(3277, 3268, '', '定时任务添加编辑', '', '', '', 'system/crontab/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-save-646a2860d33b0', 0, '定时任务添加编辑'),
|
||
(3278, 3269, '', '定时任务列表', '', '', '', 'system/crontab/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-list-646a286e08853', 0, '定时任务列表'),
|
||
(3279, 3269, '', '删除定时任务', '', '', '', 'system/crontab/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-del', 0, '删除定时任务'),
|
||
(3280, 3270, '', '定时任务列表', '', '', '', 'system/crontab/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-list-646a287b727dc', 0, '定时任务列表'),
|
||
(3281, 3270, '', '定时任务是否开启开关', '', '', '', 'system/crontab/set_open/<id>/<is_open>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crontab-set_open', 0, '定时任务是否开启开关'),
|
||
(3282, 2472, '', '添加权限', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/2472', 3, '', 0, 'system-admin-role-add', 0, '添加权限'),
|
||
(3283, 2472, '', '编辑权限', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/2472', 3, '', 0, 'system-admin-role-edit', 0, '编辑权限'),
|
||
(3284, 2472, '', '删除权限', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/2472', 3, '', 0, 'system-admin-role-delete', 0, '删除权限'),
|
||
(3285, 2472, '', '添加子菜单', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/2472', 3, '', 0, 'system-admin-role-add-menus', 0, '添加子菜单'),
|
||
(3286, 2472, '', '选择接口', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/56/2472', 3, '', 0, 'system-admin-role-select', 0, '选择接口'),
|
||
(3287, 3282, '', '获取权限菜单列表', '', '', '', 'setting/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a296711f5a', 0, '获取权限菜单列表'),
|
||
(3288, 3282, '', '获取权限菜单表单', '', '', '', 'setting/menus/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-create', 0, '获取权限菜单表单'),
|
||
(3289, 3282, '', '保存权限菜单', '', '', '', 'setting/menus', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a296711f72', 0, '保存权限菜单'),
|
||
(3290, 3283, '', '获取权限菜单列表', '', '', '', 'setting/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a297963e41', 0, '获取权限菜单列表'),
|
||
(3291, 3283, '', '获取修改权限菜单表单', '', '', '', 'setting/menus/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-edit-646a297963e4d', 0, '获取修改权限菜单表单'),
|
||
(3292, 3283, '', '查看权限菜单信息', '', '', '', 'setting/menus/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a297963e56', 0, '查看权限菜单信息'),
|
||
(3293, 3283, '', '修改权限菜单', '', '', '', 'setting/menus/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a297963e5e', 0, '修改权限菜单'),
|
||
(3294, 3284, '', '获取权限菜单列表', '', '', '', 'setting/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a29871df51', 0, '获取权限菜单列表'),
|
||
(3295, 3284, '', '删除权限菜单', '', '', '', 'setting/menus/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a29871df5c', 0, '删除权限菜单'),
|
||
(3296, 3285, '', '查看权限菜单信息', '', '', '', 'setting/menus/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a29b28b70e', 0, '查看权限菜单信息'),
|
||
(3297, 3285, '', '保存权限菜单', '', '', '', 'setting/menus', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a29b28b719', 0, '保存权限菜单'),
|
||
(3298, 3285, '', '获取权限菜单列表', '', '', '', 'setting/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-menus-646a29b28b720', 0, '获取权限菜单列表'),
|
||
(3299, 1101, '', '添加功能', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1101', 3, '', 0, 'code-generation-add', 0, '添加功能'),
|
||
(3300, 1101, '', '查看代码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1101', 3, '', 0, 'code-generation-scan', 0, '查看代码'),
|
||
(3301, 1101, '', '下载代码', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1101', 3, '', 0, 'code-generation-down', 0, '下载代码'),
|
||
(3302, 1101, '', '编辑功能', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1101', 3, '', 0, 'code-generation-edit', 0, '编辑功能'),
|
||
(3303, 1101, '', '删除功能', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1101', 3, '', 0, 'code-generation-delete', 0, '删除功能'),
|
||
(3304, 3299, '', '保存生成CRUD', '', '', '', 'system/crud', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud', 0, '保存生成CRUD'),
|
||
(3305, 3299, '', '获取菜单TREE形数据', '', '', '', 'system/crud/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-menus', 0, '获取菜单TREE形数据'),
|
||
(3306, 3299, '', '获取CRUD文件存放', '', '', '', 'system/crud/file_path', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-file_path', 0, '获取CRUD文件存放'),
|
||
(3307, 3299, '', '获取CRUD列表', '', '', '', 'system/crud/column_type', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-column_type', 0, '获取CRUD列表'),
|
||
(3308, 3299, '', '获取CRUD配置', '', '', '', 'system/crud/config/<tableName>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-config', 0, '获取CRUD配置'),
|
||
(3309, 3299, '', '保存CRUD修改的文件', '', '', '', 'system/crud/save_file/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-save_file', 0, '保存CRUD修改的文件'),
|
||
(3310, 3300, '', '查看CRUD', '', '', '', 'system/crud/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a34d60329f', 0, '查看CRUD'),
|
||
(3311, 3300, '', '保存CRUD修改的文件', '', '', '', 'system/crud/save_file/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-save_file-646a34d6032aa', 0, '保存CRUD修改的文件'),
|
||
(3312, 3301, '', '下载生成的文件', '', '', '', 'system/crud/download/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-download', 0, '下载生成的文件'),
|
||
(3313, 3301, '', '获取CRUD列表', '', '', '', 'system/crud', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a34e764096', 0, '获取CRUD列表'),
|
||
(3314, 3302, '', '保存CRUD修改的文件', '', '', '', 'system/crud/save_file/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-save_file-646a34fe884b9', 0, '保存CRUD修改的文件'),
|
||
(3315, 3302, '', '获取CRUD配置', '', '', '', 'system/crud/config/<tableName>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-config-646a34fe884c2', 0, '获取CRUD配置'),
|
||
(3316, 3302, '', '获取CRUD列表', '', '', '', 'system/crud/column_type', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-column_type-646a34fe884c9', 0, '获取CRUD列表'),
|
||
(3317, 3302, '', '获取CRUD文件存放', '', '', '', 'system/crud/file_path', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-file_path-646a34fe884d0', 0, '获取CRUD文件存放'),
|
||
(3318, 3302, '', '查看CRUD', '', '', '', 'system/crud/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a34fe884d6', 0, '查看CRUD'),
|
||
(3319, 3302, '', '保存生成CRUD', '', '', '', 'system/crud', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a34fe884dc', 0, '保存生成CRUD'),
|
||
(3320, 3302, '', '获取菜单TREE形数据', '', '', '', 'system/crud/menus', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-menus-646a34fe884e3', 0, '获取菜单TREE形数据'),
|
||
(3321, 3302, '', '获取CRUD列表', '', '', '', 'system/crud', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a34fe884e9', 0, '获取CRUD列表'),
|
||
(3322, 3303, '', '获取CRUD列表', '', '', '', 'system/crud', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a350c5c14e', 0, '获取CRUD列表'),
|
||
(3323, 3303, '', '删除CRUD', '', '', '', 'system/crud/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-crud-646a350c5c15b', 0, '删除CRUD'),
|
||
(3324, 1078, '', '接口分类', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1078', 3, '', 0, 'route-cate', 0, '接口分类'),
|
||
(3325, 1078, '', '同步接口', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1078', 3, '', 0, 'route-sync', 0, '同步接口'),
|
||
(3326, 1078, '', '调试接口', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1078', 3, '', 0, 'route-test', 0, '调试接口'),
|
||
(3327, 1078, '', '编辑接口', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1695/1078', 3, '', 0, 'route-edit', 0, '编辑接口'),
|
||
(3328, 3324, '', '获取路由分类列表', '', '', '', 'system/route_cate', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate', 0, '获取路由分类列表'),
|
||
(3329, 3324, '', '保存路由分类', '', '', '', 'system/route_cate', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate', 0, '保存路由分类'),
|
||
(3330, 3324, '', '获取创建路由分类表单', '', '', '', 'system/route_cate/create', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate-create', 0, '获取创建路由分类表单'),
|
||
(3331, 3324, '', '获取修改路由分类表单', '', '', '', 'system/route_cate/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate-edit', 0, '获取修改路由分类表单'),
|
||
(3332, 3324, '', '修改路由分类', '', '', '', 'system/route_cate/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate', 0, '修改路由分类'),
|
||
(3333, 3324, '', '删除路由分类', '', '', '', 'system/route_cate/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route_cate', 0, '删除路由分类'),
|
||
(3334, 3325, '', '同步路由', '', '', '', 'system/route/sync_route/<appName?>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route-sync_route', 0, '同步路由'),
|
||
(3335, 3325, '', '获取路由tree', '', '', '', 'system/route/tree', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route-tree', 0, '获取路由tree'),
|
||
(3336, 3327, '', '获取路由tree', '', '', '', 'system/route/tree', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route-tree-646a35e9baaef', 0, '获取路由tree'),
|
||
(3337, 3327, '', '查看路由权限', '', '', '', 'system/route/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route', 0, '查看路由权限'),
|
||
(3338, 3327, '', '保存路由权限', '', '', '', 'system/route/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'system-route', 0, '保存路由权限'),
|
||
(3339, 1068, '', '添加语言列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1068', 3, '', 0, 'lang-list-add', 0, '添加语言列表'),
|
||
(3340, 1068, '', '修改语言列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1068', 3, '', 0, 'lang-list-edit', 0, '修改语言列表'),
|
||
(3341, 1068, '', '删除语言列表', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1068', 3, '', 0, 'lang-list-delete', 0, '删除语言列表'),
|
||
(3342, 1068, '', '语言列表状态', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1068', 3, '', 0, 'lang-list-status', 0, '语言列表状态'),
|
||
(3343, 3339, '', '语言类型列表', '', '', '', 'setting/lang_type/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-list', 0, '语言类型列表'),
|
||
(3344, 3339, '', '新增修改语言类型表单', '', '', '', 'setting/lang_type/form/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-form', 0, '新增修改语言类型表单'),
|
||
(3345, 3339, '', '保存新增修改语言', '', '', '', 'setting/lang_type/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-save', 0, '保存新增修改语言'),
|
||
(3346, 3340, '', '语言类型列表', '', '', '', 'setting/lang_type/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-list-646a36876cfbe', 0, '语言类型列表'),
|
||
(3347, 3340, '', '新增修改语言类型表单', '', '', '', 'setting/lang_type/form/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-form-646a36876cfd9', 0, '新增修改语言类型表单'),
|
||
(3348, 3340, '', '保存新增修改语言', '', '', '', 'setting/lang_type/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-save-646a36876cfe3', 0, '保存新增修改语言'),
|
||
(3349, 3341, '', '语言类型列表', '', '', '', 'setting/lang_type/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-list-646a369c9741e', 0, '语言类型列表'),
|
||
(3350, 3341, '', '删除语言', '', '', '', 'setting/lang_type/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-del', 0, '删除语言'),
|
||
(3351, 3342, '', '语言类型列表', '', '', '', 'setting/lang_type/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-list-646a36a88444d', 0, '语言类型列表'),
|
||
(3352, 3342, '', '修改语言类型状态', '', '', '', 'setting/lang_type/status/<id>/<status>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_type-status', 0, '修改语言类型状态'),
|
||
(3353, 1069, '', '添加语言详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1069', 3, '', 0, 'lang-info-add', 0, '添加语言详情'),
|
||
(3354, 1069, '', '编辑语言详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1069', 3, '', 0, 'lang-info-edit', 0, '编辑语言详情'),
|
||
(3355, 1069, '', '删除语言详情', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '12/1067/1069', 3, '', 0, 'lang-info-delete', 0, '删除语言详情'),
|
||
(3356, 3353, '', '语言列表', '', '', '', 'setting/lang_code/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-list', 0, '语言列表'),
|
||
(3357, 3353, '', '语言详情', '', '', '', 'setting/lang_code/info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-info', 0, '语言详情'),
|
||
(3358, 3353, '', '保存修改语言', '', '', '', 'setting/lang_code/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-save', 0, '保存修改语言'),
|
||
(3359, 3353, '', '机器翻译', '', '', '', 'setting/lang_code/translate', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-translate', 0, '机器翻译'),
|
||
(3360, 3354, '', '语言列表', '', '', '', 'setting/lang_code/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-list-646a3717e64bb', 0, '语言列表'),
|
||
(3361, 3354, '', '语言详情', '', '', '', 'setting/lang_code/info', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-info-646a3717e64c8', 0, '语言详情'),
|
||
(3362, 3354, '', '保存修改语言', '', '', '', 'setting/lang_code/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-save-646a3717e64d1', 0, '保存修改语言'),
|
||
(3363, 3354, '', '机器翻译', '', '', '', 'setting/lang_code/translate', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-translate-646a3717e64db', 0, '机器翻译'),
|
||
(3364, 3355, '', '语言列表', '', '', '', 'setting/lang_code/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-list-646a372511b5e', 0, '语言列表'),
|
||
(3365, 3355, '', '删除语言', '', '', '', 'setting/lang_code/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_code-del', 0, '删除语言'),
|
||
(3366, 1070, '', '添加语言地区', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1067/1070', 3, '', 0, 'lang-country-add', 0, '添加语言地区'),
|
||
(3367, 1070, '', '编辑语言地区', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1067/1070', 3, '', 0, 'lang-country-edit', 0, '编辑语言地区'),
|
||
(3368, 1070, '', '删除语言地区', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1067/1070', 3, '', 0, 'lang-country-delete', 0, '删除语言地区'),
|
||
(3369, 3366, '', '语言国家列表', '', '', '', 'setting/lang_country/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-list', 0, '语言国家列表'),
|
||
(3370, 3366, '', '添加语言地区表单', '', '', '', 'setting/lang_country/form/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-form', 0, '添加语言地区表单'),
|
||
(3371, 3366, '', '保存语言地区', '', '', '', 'setting/lang_country/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-save', 0, '保存语言地区'),
|
||
(3372, 3367, '', '语言国家列表', '', '', '', 'setting/lang_country/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-list-646a377fb08e5', 0, '语言国家列表'),
|
||
(3373, 3367, '', '添加语言地区表单', '', '', '', 'setting/lang_country/form/<id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-form-646a377fb08f2', 0, '添加语言地区表单'),
|
||
(3374, 3367, '', '保存语言地区', '', '', '', 'setting/lang_country/save/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-save-646a377fb08fc', 0, '保存语言地区'),
|
||
(3375, 3368, '', '语言国家列表', '', '', '', 'setting/lang_country/list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-list-646a378a8e1b7', 0, '语言国家列表'),
|
||
(3376, 3368, '', '删除语言地区', '', '', '', 'setting/lang_country/del/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-lang_country-del', 0, '删除语言地区'),
|
||
(3377, 1066, '', '添加对外账号', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1064/1066', 3, '', 0, 'out-account-add', 0, '添加对外账号'),
|
||
(3378, 1066, '', '编辑对外账号', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1064/1066', 3, '', 0, 'out-account-edit', 0, '编辑对外账号'),
|
||
(3379, 1066, '', '删除对外账号', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1064/1066', 3, '', 0, 'out-account-delete', 0, '删除对外账号'),
|
||
(3380, 1066, '', '设置对外账号', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1064/1066', 3, '', 0, 'out-account-setting', 0, '设置对外账号'),
|
||
(3381, 3377, '', '对外接口账号信息', '', '', '', 'setting/system_out_account/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-index', 0, '对外接口账号信息'),
|
||
(3382, 3377, '', '对外接口账号添加', '', '', '', 'setting/system_out_account/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-save', 0, '对外接口账号添加'),
|
||
(3383, 3378, '', '对外接口账号信息', '', '', '', 'setting/system_out_account/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-index-646a385546279', 0, '对外接口账号信息'),
|
||
(3384, 3378, '', '对外接口账号添加', '', '', '', 'setting/system_out_account/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-save-646a385546286', 0, '对外接口账号添加'),
|
||
(3385, 3378, '', '对外接口账号修改', '', '', '', 'setting/system_out_account/update/<id>', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-update', 0, '对外接口账号修改'),
|
||
(3386, 3379, '', '对外接口账号信息', '', '', '', 'setting/system_out_account/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-index-646a386512a5e', 0, '对外接口账号信息'),
|
||
(3387, 3379, '', '删除账号', '', '', '', 'setting/system_out_account/<id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account', 0, '删除账号'),
|
||
(3388, 3380, '', '对外接口账号信息', '', '', '', 'setting/system_out_account/index', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-index-646a38719e553', 0, '对外接口账号信息'),
|
||
(3389, 3380, '', '设置账号推送接口', '', '', '', 'setting/system_out_account/set_up/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-system_out_account-set_up', 0, '设置账号推送接口'),
|
||
(3390, 145, '', '同步物流公司', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/145', 3, '', 0, 'express-sync', 0, '同步物流公司'),
|
||
(3391, 145, '', '编辑物流公司', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/145', 3, '', 0, 'express-edit', 0, '编辑物流公司'),
|
||
(3392, 3390, '', '获取物流公司列表', '', '', '', 'freight/express', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'freight-express', 0, '获取物流公司列表'),
|
||
(3393, 3390, '', '同步物流公司', '', '', '', 'freight/express/sync_express', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'freight-express-sync_express', 0, '同步物流公司'),
|
||
(3394, 3391, '', '获取物流公司列表', '', '', '', 'freight/express', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'freight-express-646a38ef9dbdd', 0, '获取物流公司列表'),
|
||
(3395, 3391, '', '获取修改物流公司表单', '', '', '', 'freight/express/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'freight-express-edit', 0, '获取修改物流公司表单'),
|
||
(3396, 3391, '', '修改物流公司', '', '', '', 'freight/express/<id>', 'PUT', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'freight-express-646a38ef9dbf3', 0, '修改物流公司'),
|
||
(3398, 229, '', '添加城市数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/229', 3, '', 0, 'system-city-add', 0, '添加城市数据'),
|
||
(3399, 229, '', '编辑城市数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/229', 3, '', 0, 'system-city-edit', 0, '编辑城市数据'),
|
||
(3400, 229, '', '删除城市数据', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/229', 3, '', 0, 'system-city-delete', 0, '删除城市数据'),
|
||
(3401, 229, '', '清除城市数据缓存', 'admin', '', '', '', '', '[]', 0, 1, 1, 1, '/', '25/1073/229', 3, '', 0, 'system-city-clear-cache', 0, '清除城市数据缓存'),
|
||
(3402, 3398, '', '获取城市数据完整列表', '', '', '', 'setting/city/full_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-full_list', 0, '获取城市数据完整列表'),
|
||
(3403, 3398, '', '获取城市数据列表', '', '', '', 'setting/city/list/<parent_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-list', 0, '获取城市数据列表'),
|
||
(3404, 3398, '', '添加城市数据表单', '', '', '', 'setting/city/add/<parent_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-add', 0, '添加城市数据表单'),
|
||
(3405, 3398, '', '新增/修改城市数据', '', '', '', 'setting/city/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-save', 0, '新增/修改城市数据'),
|
||
(3406, 3399, '', '获取城市数据完整列表', '', '', '', 'setting/city/full_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-full_list-646a39aa87ef0', 0, '获取城市数据完整列表'),
|
||
(3407, 3399, '', '获取城市数据列表', '', '', '', 'setting/city/list/<parent_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-list-646a39aa87efe', 0, '获取城市数据列表'),
|
||
(3408, 3399, '', '修改城市数据表单', '', '', '', 'setting/city/<id>/edit', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-edit', 0, '修改城市数据表单'),
|
||
(3409, 3399, '', '新增/修改城市数据', '', '', '', 'setting/city/save', 'POST', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-save-646a39aa87f12', 0, '新增/修改城市数据'),
|
||
(3410, 3400, '', '获取城市数据完整列表', '', '', '', 'setting/city/full_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-full_list-646a39c191645', 0, '获取城市数据完整列表'),
|
||
(3411, 3400, '', '获取城市数据列表', '', '', '', 'setting/city/list/<parent_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-list-646a39c191651', 0, '获取城市数据列表'),
|
||
(3412, 3400, '', '删除城市数据', '', '', '', 'setting/city/del/<city_id>', 'DELETE', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-del', 0, '删除城市数据'),
|
||
(3413, 3401, '', '获取城市数据完整列表', '', '', '', 'setting/city/full_list', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-full_list-646a39ceb8c4c', 0, '获取城市数据完整列表'),
|
||
(3414, 3401, '', '获取城市数据列表', '', '', '', 'setting/city/list/<parent_id>', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-list-646a39ceb8c57', 0, '获取城市数据列表'),
|
||
(3415, 3401, '', '清除城市数据缓存', '', '', '', 'setting/city/clean_cache', 'GET', '[]', 1, 1, 1, 1, '', '', 2, '', 0, 'setting-city-clean_cache', 0, '清除城市数据缓存');
|
||
SQL
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 1,
|
||
'table' => "system_route",
|
||
'findSql' => "select * from information_schema.tables where table_name ='@table'",
|
||
'sql' => "CREATE TABLE IF NOT EXISTS `@table` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`cate_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类',
|
||
`app_name` varchar(20) NOT NULL DEFAULT 'api' COMMENT '应用名',
|
||
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '路由名称',
|
||
`describe` text NOT NULL COMMENT '功能描述',
|
||
`path` varchar(100) NOT NULL DEFAULT '' COMMENT '路由路径',
|
||
`method` enum('POST','GET','DELETE','PUT','*') NOT NULL DEFAULT 'GET' COMMENT '路由请求方式',
|
||
`file_path` varchar(255) NOT NULL DEFAULT '' COMMENT '文件路径',
|
||
`action` varchar(255) NOT NULL DEFAULT '' COMMENT '方法名称',
|
||
`request` longtext NOT NULL COMMENT '请求数据',
|
||
`request_type` varchar(100) NOT NULL DEFAULT '' COMMENT '请求类型',
|
||
`response` longtext NOT NULL COMMENT '返回数据',
|
||
`request_example` longtext NOT NULL COMMENT '请求示例',
|
||
`response_example` longtext NOT NULL COMMENT '返回示例',
|
||
`type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '类型',
|
||
`add_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT '添加时间',
|
||
`delete_time` timestamp NULL DEFAULT NULL COMMENT '删除字段',
|
||
PRIMARY KEY (`id`),
|
||
KEY `path` (`path`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=1695 DEFAULT CHARSET=utf8 COMMENT='路由规则表'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "system_route",
|
||
'sql' => <<<SQL
|
||
INSERT INTO `@table` (`id`, `cate_id`, `app_name`, `name`, `describe`, `path`, `method`, `file_path`, `action`, `request`, `request_type`, `response`, `request_example`, `response_example`, `type`, `add_time`, `delete_time`) VALUES
|
||
(1, 2, 'adminapi', '分销员列表', '', 'agent/index', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(2, 2, 'adminapi', '修改上级推广人', '', 'agent/spread', 'PUT', 'app/adminapi/controller/v1/agent/AgentManage.php', 'editSpread', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(3, 2, 'adminapi', '分销员列表头部统计', '', 'agent/statistics', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'get_badge', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(4, 2, 'adminapi', '推广人列表', '', 'agent/stair', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'get_stair_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(5, 2, 'adminapi', '推广订单列表', '', 'agent/stair/order', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'get_stair_order_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(6, 2, 'adminapi', '清除上级推广人', '', 'agent/stair/delete_spread/<uid>', 'PUT', 'app/adminapi/controller/v1/agent/AgentManage.php', 'delete_spread', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(7, 2, 'adminapi', '取消推广资格', '', 'agent/stair/delete_system_spread/<uid>', 'PUT', 'app/adminapi/controller/v1/agent/AgentManage.php', 'delete_system_spread', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(8, 2, 'adminapi', '查看公众号推广二维码', '', 'agent/look_code', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'look_code', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(9, 2, 'adminapi', '查看小程序推广二维码', '', 'agent/look_xcx_code', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'look_xcx_code', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(10, 2, 'adminapi', '查看H5推广二维码', '', 'agent/look_h5_code', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'look_h5_code', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(11, 3, 'adminapi', '积分配置编辑表单', '', 'agent/config/edit_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(12, 3, 'adminapi', '积分配置保存数据', '', 'agent/config/save_basics', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(13, 4, 'adminapi', '获取分销员等级列表', '', 'agent/level', 'GET', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(14, 4, 'adminapi', '保存分销员等级', '', 'agent/level', 'POST', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(15, 4, 'adminapi', '获取分销员等级表单', '', 'agent/level/create', 'GET', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(16, 4, 'adminapi', '获取修改分销员等级表单', '', 'agent/level/<id>/edit', 'GET', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(17, 4, 'adminapi', '修改分销员等级', '', 'agent/level/<id>', 'PUT', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(18, 4, 'adminapi', '删除分销员等级', '', 'agent/level/<id>', 'DELETE', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(19, 4, 'adminapi', '修改分销等级状态', '', 'agent/level/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/agent/AgentLevel.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(20, 4, 'adminapi', '获取分销员等级任务列表', '', 'agent/level_task', 'GET', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(21, 4, 'adminapi', '保存分销员等级任务', '', 'agent/level_task', 'POST', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(22, 4, 'adminapi', '获取分销员等级任务表单', '', 'agent/level_task/create', 'GET', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(23, 4, 'adminapi', '获取修改分销员等级任务表单', '', 'agent/level_task/<id>/edit', 'GET', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(24, 4, 'adminapi', '修改分销员等级任务', '', 'agent/level_task/<id>', 'PUT', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(25, 4, 'adminapi', '删除分销员等级任务', '', 'agent/level_task/<id>', 'DELETE', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(26, 4, 'adminapi', '修改分销等级任务状态', '', 'agent/level_task/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/agent/AgentLevelTask.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(27, 4, 'adminapi', '获取赠送分销等级表单', '', 'agent/get_level_form', 'GET', 'app/adminapi/controller/v1/agent/AgentManage.php', 'getLevelForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(28, 4, 'adminapi', '赠送分销等级', '', 'agent/give_level', 'POST', 'app/adminapi/controller/v1/agent/AgentManage.php', 'giveAgentLevel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(29, 5, 'adminapi', '事业部列表', '', 'agent/division/list', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'divisionList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(30, 5, 'adminapi', '下级列表', '', 'agent/division/down_list', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'divisionDownList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(31, 5, 'adminapi', '添加事业部', '', 'agent/division/create/<uid>', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'divisionCreate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(32, 5, 'adminapi', '事业部保存', '', 'agent/division/save', 'POST', 'app/adminapi/controller/v1/agent/Division.php', 'divisionSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(33, 5, 'adminapi', '添加事业部', '', 'agent/division/agent/create/<uid>', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'divisionAgentCreate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(34, 5, 'adminapi', '事业部保存', '', 'agent/division/agent/save', 'POST', 'app/adminapi/controller/v1/agent/Division.php', 'divisionAgentSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(35, 5, 'adminapi', '状态切换', '', 'agent/division/set_status/<status>/<uid>', 'PUT', 'app/adminapi/controller/v1/agent/Division.php', 'setDivisionStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(36, 5, 'adminapi', '删除代理商', '', 'agent/division/del/<type>/<uid>', 'DELETE', 'app/adminapi/controller/v1/agent/Division.php', 'delDivision', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(37, 5, 'adminapi', '代理商申请列表', '', 'agent/division/agent_apply/list', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'AdminApplyList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(38, 5, 'adminapi', '审核表单', '', 'agent/division/examine_apply/<id>/<type>', 'GET', 'app/adminapi/controller/v1/agent/Division.php', 'examineApply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(39, 5, 'adminapi', '提交审核', '', 'agent/division/apply_agent/save', 'POST', 'app/adminapi/controller/v1/agent/Division.php', 'applyAgentSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(40, 5, 'adminapi', '删除审核', '', 'agent/division/del_apply/<id>', 'DELETE', 'app/adminapi/controller/v1/agent/Division.php', 'delApply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(41, 7, 'adminapi', '微信公众号菜单列表', '', 'app/wechat/menu', 'GET', 'app/adminapi/controller/v1/application/wechat/menus.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(42, 7, 'adminapi', '保存微信公众号菜单', '', 'app/wechat/menu', 'POST', 'app/adminapi/controller/v1/application/wechat/menus.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(43, 7, 'adminapi', '图文列表', '', 'app/wechat/news', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(44, 7, 'adminapi', '保存图文', '', 'app/wechat/news', 'POST', 'app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(45, 7, 'adminapi', '图文详情', '', 'app/wechat/news/<id>', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(46, 7, 'adminapi', '删除图文', '', 'app/wechat/news/<id>', 'DELETE', 'app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(47, 7, 'adminapi', '发送图文消息', '', 'app/wechat/push', 'POST', 'app/adminapi/controller/v1/application/wechat/WechatNewsCategory.php', 'push', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(48, 7, 'adminapi', '关注回复', '', 'app/wechat/reply', 'GET', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'reply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(49, 7, 'adminapi', '获取关注回复二维码', '', 'app/wechat/code_reply/<id>', 'GET', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'code_reply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(50, 7, 'adminapi', '关键字回复列表', '', 'app/wechat/keyword', 'GET', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(51, 7, 'adminapi', '关键字回复详情', '', 'app/wechat/keyword/<id>', 'GET', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(52, 7, 'adminapi', '保存关键字回复', '', 'app/wechat/keyword/<id>', 'POST', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(53, 7, 'adminapi', '删除关键字回复', '', 'app/wechat/keyword/<id>', 'DELETE', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(54, 7, 'adminapi', '修改关键字回复状态', '', 'app/wechat/keyword/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/application/wechat/Reply.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(55, 7, 'adminapi', '一键同步模版消息', '', 'app/wechat/syncSubscribe', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatTemplate.php', 'syncSubscribe', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(56, 8, 'adminapi', '一键同步订阅消息', '', 'app/routine/syncSubscribe', 'GET', 'app/adminapi/controller/v1/application/routine/RoutineTemplate.php', 'syncSubscribe', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(57, 8, 'adminapi', '下载小程序页面数据', '', 'app/routine/info', 'GET', 'app/adminapi/controller/v1/application/routine/RoutineTemplate.php', 'getDownloadInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(58, 8, 'adminapi', '下载小程序模版', '', 'app/routine/download', 'POST', 'app/adminapi/controller/v1/application/routine/RoutineTemplate.php', 'downloadTemp', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(59, 9, 'adminapi', '渠道码分类列表', '', 'app/wechat_qrcode/cate/list', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'getCateList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(60, 9, 'adminapi', '渠道码分类添加编辑表单', '', 'app/wechat_qrcode/cate/create/<id>', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'createForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(61, 9, 'adminapi', '渠道码分类保存', '', 'app/wechat_qrcode/cate/save', 'POST', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'saveCate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(62, 9, 'adminapi', '渠道码分类删除', '', 'app/wechat_qrcode/cate/del/<id>', 'DELETE', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'delCate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(63, 9, 'adminapi', '保存渠道码', '', 'app/wechat_qrcode/save/<id>', 'POST', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'saveQrcode', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(64, 9, 'adminapi', '渠道码详情', '', 'app/wechat_qrcode/info/<id>', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'qrcodeInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(65, 9, 'adminapi', '渠道码列表', '', 'app/wechat_qrcode/list', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'qrcodeList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(66, 9, 'adminapi', '删除渠道码', '', 'app/wechat_qrcode/del/<id>', 'DELETE', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'delQrcode', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(67, 9, 'adminapi', '切换渠道码状态', '', 'app/wechat_qrcode/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'setStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(68, 9, 'adminapi', '渠道码用户列表', '', 'app/wechat_qrcode/user_list/<qid>', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'userList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(69, 9, 'adminapi', '渠道码统计', '', 'app/wechat_qrcode/statistic/<qid>', 'GET', 'app/adminapi/controller/v1/application/wechat/WechatQrcode.php', 'qrcodeStatistic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(70, 10, 'adminapi', '获取用户反馈列表', '', 'app/feedback', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceFeedback.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(71, 10, 'adminapi', '获取修改用户反馈表单', '', 'app/feedback/<id>/edit', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceFeedback.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(72, 10, 'adminapi', '修改用户反馈', '', 'app/feedback/<id>', 'PUT', 'app/adminapi/controller/v1/kefu/StoreServiceFeedback.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(73, 10, 'adminapi', '删除用户反馈', '', 'app/feedback/<id>', 'DELETE', 'app/adminapi/controller/v1/kefu/StoreServiceFeedback.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(74, 10, 'adminapi', '获取客服话术列表', '', 'app/wechat/speechcraft', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(75, 10, 'adminapi', '保存客服话术', '', 'app/wechat/speechcraft', 'POST', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(76, 10, 'adminapi', '获取客服话术表单', '', 'app/wechat/speechcraft/create', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(77, 10, 'adminapi', '获取修改客服话术表单', '', 'app/wechat/speechcraft/<id>/edit', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(78, 10, 'adminapi', '修改客服话术', '', 'app/wechat/speechcraft/<id>', 'PUT', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(79, 10, 'adminapi', '删除客服话术', '', 'app/wechat/speechcraft/<id>', 'DELETE', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraft.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(80, 10, 'adminapi', '获取客服话术分类列表', '', 'app/wechat/speechcraftcate', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(81, 10, 'adminapi', '保存客服话术分类', '', 'app/wechat/speechcraftcate', 'POST', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(82, 10, 'adminapi', '获取客服话术分类表单', '', 'app/wechat/speechcraftcate/create', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(83, 10, 'adminapi', '获取修改客服话术分类表单', '', 'app/wechat/speechcraftcate/<id>/edit', 'GET', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(84, 10, 'adminapi', '修改客服话术分类', '', 'app/wechat/speechcraftcate/<id>', 'PUT', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(85, 10, 'adminapi', '删除客服话术分类', '', 'app/wechat/speechcraftcate/<id>', 'DELETE', 'app/adminapi/controller/v1/kefu/StoreServiceSpeechcraftCate.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(86, 10, 'adminapi', '客服列表', '', 'app/wechat/kefu', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(87, 10, 'adminapi', '添加客服', '', 'app/wechat/kefu', 'POST', 'app/adminapi/controller/v1/kefu/StoreService.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(88, 10, 'adminapi', '客服登录', '', 'app/wechat/kefu/login/<id>', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'keufLogin', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(89, 10, 'adminapi', '新增客服选择用户列表', '', 'app/wechat/kefu/create', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(90, 10, 'adminapi', '添加客服表单', '', 'app/wechat/kefu/add', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(91, 10, 'adminapi', '修改客服表单', '', 'app/wechat/kefu/<id>/edit', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(92, 10, 'adminapi', '修改客服', '', 'app/wechat/kefu/<id>', 'PUT', 'app/adminapi/controller/v1/kefu/StoreService.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(93, 10, 'adminapi', '删除客服', '', 'app/wechat/kefu/<id>', 'DELETE', 'app/adminapi/controller/v1/kefu/StoreService.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(94, 10, 'adminapi', '修改客服状态', '', 'app/wechat/kefu/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/kefu/StoreService.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(95, 10, 'adminapi', '聊天记录', '', 'app/wechat/kefu/record/<id>', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'chat_user', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(96, 10, 'adminapi', '查看对话', '', 'app/wechat/kefu/chat_list', 'GET', 'app/adminapi/controller/v1/kefu/StoreService.php', 'chat_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(97, 12, 'adminapi', '获取文章列表', '', 'cms/cms', 'GET', 'app/adminapi/controller/v1/cms/Article.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(98, 12, 'adminapi', '保存文章', '', 'cms/cms', 'POST', 'app/adminapi/controller/v1/cms/Article.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(99, 12, 'adminapi', '获取文章表单', '', 'cms/cms/create', 'GET', 'app/adminapi/controller/v1/cms/Article.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(100, 12, 'adminapi', '获取修改文章表单', '', 'cms/cms/<id>/edit', 'GET', 'app/adminapi/controller/v1/cms/Article.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(101, 12, 'adminapi', '获取文章详细信息', '', 'cms/cms/<id>', 'GET', 'app/adminapi/controller/v1/cms/Article.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(102, 12, 'adminapi', '修改文章', '', 'cms/cms/<id>', 'PUT', 'app/adminapi/controller/v1/cms/Article.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(103, 12, 'adminapi', '删除文章', '', 'cms/cms/<id>', 'DELETE', 'app/adminapi/controller/v1/cms/Article.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(104, 12, 'adminapi', '文章关联商品', '', 'cms/cms/relation/<id>', 'PUT', 'app/adminapi/controller/v1/cms/Article.php', 'relation', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(105, 12, 'adminapi', '取消文章关联商品', '', 'cms/cms/unrelation/<id>', 'PUT', 'app/adminapi/controller/v1/cms/Article.php', 'unrelation', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(106, 13, 'adminapi', '获取文章分类列表', '', 'cms/category', 'GET', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(107, 13, 'adminapi', '保存文章分类', '', 'cms/category', 'POST', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(108, 13, 'adminapi', '获取文章分类表单', '', 'cms/category/create', 'GET', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(109, 13, 'adminapi', '获取修改文章分类表单', '', 'cms/category/<id>/edit', 'GET', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(110, 13, 'adminapi', '修改文章分类', '', 'cms/category/<id>', 'PUT', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(111, 13, 'adminapi', '删除文章分类', '', 'cms/category/<id>', 'DELETE', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(112, 13, 'adminapi', '修改文章分类状态', '', 'cms/category/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(113, 13, 'adminapi', '分类列表', '', 'cms/category_list', 'GET', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'categoryList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(114, 13, 'adminapi', '分类树形列表', '', 'cms/category_tree_list', 'GET', 'app/adminapi/controller/v1/cms/ArticleCategory.php', 'getTreeList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(115, 14, 'adminapi', '下载表备份记录', '', 'backup/download', 'GET', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'downloadFile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(116, 14, 'adminapi', '首页统计数据', '', 'home/header', 'GET', 'app/adminapi/controller/Common.php', 'homeStatics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(117, 14, 'adminapi', '首页订单图表', '', 'home/order', 'GET', 'app/adminapi/controller/Common.php', 'orderChart', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(118, 14, 'adminapi', '首页用户图表', '', 'home/user', 'GET', 'app/adminapi/controller/Common.php', 'userChart', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(119, 14, 'adminapi', '首页交易额排行', '', 'home/rank', 'GET', 'app/adminapi/controller/Common.php', 'purchaseRanking', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(120, 14, 'adminapi', '消息提醒', '', 'jnotice', 'GET', 'app/adminapi/controller/Common.php', 'jnotice', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(121, 14, 'adminapi', '验证授权', '', 'check_auth', 'GET', 'app/adminapi/controller/Common.php', 'auth', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(122, 14, 'adminapi', '申请授权', '', 'auth_apply', 'POST', 'app/adminapi/controller/Common.php', 'auth_apply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(123, 14, 'adminapi', '授权信息', '', 'auth', 'GET', 'app/adminapi/controller/Common.php', 'auth', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(124, 14, 'adminapi', '左侧菜单', '', 'menus', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'menus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(125, 14, 'adminapi', '搜索菜单列表', '', 'menusList', 'GET', 'app/adminapi/controller/Common.php', 'menusList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(126, 14, 'adminapi', '获取logo', '', 'logo', 'GET', 'app/adminapi/controller/Common.php', 'getLogo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(127, 14, 'adminapi', '申请版权', '', 'copyright', 'GET', 'app/adminapi/controller/Common.php', 'copyright', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(128, 14, 'adminapi', '保存版权', '', 'copyright', 'POST', 'app/adminapi/controller/Common.php', 'saveCopyright', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(129, 15, 'adminapi', 'Diy模板列表', '', 'diy/get_list', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(130, 15, 'adminapi', 'Diy模板数据详情', '', 'diy/get_info/<id>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(131, 15, 'adminapi', 'Diy模板数据详情', '', 'diy/get_diy_info/<id>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getDiyInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(132, 15, 'adminapi', '删除DIY模板', '', 'diy/del/<id>', 'DELETE', 'app/adminapi/controller/v1/diy/Diy.php', 'del', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(133, 15, 'adminapi', '使用DIY模板', '', 'diy/set_status/<id>', 'PUT', 'app/adminapi/controller/v1/diy/Diy.php', 'setStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(134, 15, 'adminapi', '添加表单', '', 'diy/create', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(135, 15, 'adminapi', '添加DIY', '', 'diy/create', 'POST', 'app/adminapi/controller/v1/diy/Diy.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(136, 15, 'adminapi', '添加DIY模板', '', 'diy/save/<id?>', 'POST', 'app/adminapi/controller/v1/diy/Diy.php', 'saveData', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(137, 15, 'adminapi', '添加DIY模板', '', 'diy/diy_save/<id?>', 'POST', 'app/adminapi/controller/v1/diy/Diy.php', 'saveDiyData', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(138, 15, 'adminapi', '获取前端页面路径', '', 'diy/get_url', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getUrl', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(139, 15, 'adminapi', '获取商品分类', '', 'diy/get_category', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getCategory', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(140, 15, 'adminapi', '获取商品列表', '', 'diy/get_product', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getProduct', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(141, 15, 'adminapi', '获取门店自提开启状态', '', 'diy/get_store_status', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getStoreStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(142, 15, 'adminapi', '还原Diy默认数据', '', 'diy/recovery/<id>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'Recovery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(143, 15, 'adminapi', '获取所有二级分类', '', 'diy/get_by_category', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getByCategory', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(144, 15, 'adminapi', '设置Diy默认数据', '', 'diy/set_recovery/<id>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'setRecovery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(145, 15, 'adminapi', '获取商品列表', '', 'diy/get_product_list', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getProductList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(146, 15, 'adminapi', '获取风格设置', '', 'diy/get_color_change/<type>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getColorChange', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(147, 15, 'adminapi', '换色和分类保存', '', 'diy/color_change/<status>/<type>', 'PUT', 'app/adminapi/controller/v1/diy/Diy.php', 'colorChange', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(148, 15, 'adminapi', '个人中心详情', '', 'diy/get_member', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getMember', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(149, 15, 'adminapi', '获取页面链接分类', '', 'diy/get_page_category', 'GET', 'app/adminapi/controller/v1/diy/PageLink.php', 'getCategory', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(150, 15, 'adminapi', '获取页面链接', '', 'diy/get_page_link/<cate_id>', 'GET', 'app/adminapi/controller/v1/diy/PageLink.php', 'getLinks', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(151, 15, 'adminapi', '个人中心保存', '', 'diy/member_save', 'POST', 'app/adminapi/controller/v1/diy/Diy.php', 'memberSaveData', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(152, 15, 'adminapi', 'diy小程序预览码', '', 'diy/get_routine_code/<id>', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getRoutineCode', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(153, 15, 'adminapi', '获取开屏广告', '', 'diy/open_adv/info', 'GET', 'app/adminapi/controller/v1/diy/Diy.php', 'getOpenAdv', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(154, 15, 'adminapi', '保存开屏广告', '', 'diy/open_adv/add', 'POST', 'app/adminapi/controller/v1/diy/Diy.php', 'openAdvAdd', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(155, 16, 'adminapi', '用户列表导出', '', 'export/user_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(156, 16, 'adminapi', '订单列表导出', '', 'export/order_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'orderList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(157, 16, 'adminapi', '商品列表导出', '', 'export/product_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'productList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(158, 16, 'adminapi', '砍价商品列表导出', '', 'export/bargain_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'bargainList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(159, 16, 'adminapi', '拼团商品列表导出', '', 'export/combination_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'combinationList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(160, 16, 'adminapi', '秒杀商品列表导出', '', 'export/seckill_list', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'seckillList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(161, 16, 'adminapi', '会员卡导出', '', 'export/member_card/<id>', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'memberCardList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(162, 16, 'adminapi', '分销员推广列表导出', '', 'export/userAgent', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userAgent', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(163, 16, 'adminapi', '用户资金导出', '', 'export/userFinance', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userFinance', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(164, 16, 'adminapi', '用户佣金导出', '', 'export/userCommission', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userCommission', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(165, 16, 'adminapi', '用户积分导出', '', 'export/userPoint', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userPoint', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(166, 16, 'adminapi', '用户充值导出', '', 'export/userRecharge', 'GET', 'app/adminapi/controller/v1/export/ExportExcel.php', 'userRecharge', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(167, 17, 'adminapi', '图片附件列表', '', 'file/file', 'GET', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(168, 17, 'adminapi', '删除图片', '', 'file/file/delete', 'POST', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(169, 17, 'adminapi', '移动图片分类表单', '', 'file/file/move', 'GET', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'move', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(170, 17, 'adminapi', '移动图片分类', '', 'file/file/do_move', 'PUT', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'moveImageCate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(171, 17, 'adminapi', '修改图片名称', '', 'file/file/update/<id>', 'PUT', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(172, 17, 'adminapi', '上传图片', '', 'file/upload/<upload_type?>', 'POST', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'upload', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(173, 17, 'adminapi', '获取附件分类管理列表', '', 'file/category', 'GET', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(174, 17, 'adminapi', '保存附件分类管理', '', 'file/category', 'POST', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(175, 17, 'adminapi', '获取附件分类管理表单', '', 'file/category/create', 'GET', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(176, 17, 'adminapi', '获取修改附件分类管理表单', '', 'file/category/<id>/edit', 'GET', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(177, 17, 'adminapi', '修改附件分类管理', '', 'file/category/<id>', 'PUT', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(178, 17, 'adminapi', '删除附件分类管理', '', 'file/category/<id>', 'DELETE', 'app/adminapi/controller/v1/file/SystemAttachmentCategory.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(179, 17, 'adminapi', '上传类型', '', 'file/upload_type', 'GET', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'uploadType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(180, 17, 'adminapi', '分片上传本地视频', '', 'file/video_upload', 'POST', 'app/adminapi/controller/v1/file/SystemAttachment.php', 'videoUpload', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(181, 19, 'adminapi', '提现申请列表', '', 'finance/extract', 'GET', 'app/adminapi/controller/v1/finance/UserExtract.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(182, 19, 'adminapi', '提现记录修改表单', '', 'finance/extract/<id>/edit', 'GET', 'app/adminapi/controller/v1/finance/UserExtract.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(183, 19, 'adminapi', '提现记录修改', '', 'finance/extract/<id>', 'PUT', 'app/adminapi/controller/v1/finance/UserExtract.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(184, 19, 'adminapi', '拒绝提现申请', '', 'finance/extract/refuse/<id>', 'PUT', 'app/adminapi/controller/v1/finance/UserExtract.php', 'refuse', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(185, 19, 'adminapi', '通过提现申请', '', 'finance/extract/adopt/<id>', 'PUT', 'app/adminapi/controller/v1/finance/UserExtract.php', 'adopt', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(186, 20, 'adminapi', '资金记录类型', '', 'finance/finance/bill_type', 'GET', 'app/adminapi/controller/v1/finance/Finance.php', 'bill_type', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(187, 20, 'adminapi', '资金记录列表', '', 'finance/finance/list', 'GET', 'app/adminapi/controller/v1/finance/Finance.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(188, 20, 'adminapi', '佣金记录列表', '', 'finance/finance/commission_list', 'GET', 'app/adminapi/controller/v1/finance/Finance.php', 'get_commission_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(189, 20, 'adminapi', '佣金详情用户信息', '', 'finance/finance/user_info/<id>', 'GET', 'app/adminapi/controller/v1/finance/Finance.php', 'user_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(190, 20, 'adminapi', '佣金提现记录个人列表', '', 'finance/finance/extract_list/<id>', 'GET', 'app/adminapi/controller/v1/finance/Finance.php', 'get_extract_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(191, 20, 'adminapi', '余额记录列表', '', 'finance/balance/list', 'GET', 'app/adminapi/controller/v1/finance/UserBalance.php', 'balanceList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(192, 20, 'adminapi', '余额记录备注', '', 'finance/balance/set_mark/<id>', 'POST', 'app/adminapi/controller/v1/finance/UserBalance.php', 'balanceRecordRemark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(193, 21, 'adminapi', '充值记录列表', '', 'finance/recharge', 'GET', 'app/adminapi/controller/v1/finance/UserRecharge.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(194, 21, 'adminapi', '删除充值记录', '', 'finance/recharge/<id>', 'DELETE', 'app/adminapi/controller/v1/finance/UserRecharge.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(195, 21, 'adminapi', '充值退款', '', 'finance/recharge/<id>', 'PUT', 'app/adminapi/controller/v1/finance/UserRecharge.php', 'refund_update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(196, 21, 'adminapi', '获取用户充值数据', '', 'finance/recharge/user_recharge', 'GET', 'app/adminapi/controller/v1/finance/UserRecharge.php', 'user_recharge', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(197, 21, 'adminapi', '充值退款表单', '', 'finance/recharge/<id>/refund_edit', 'GET', 'app/adminapi/controller/v1/finance/UserRecharge.php', 'refund_edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(198, 22, 'adminapi', '获取物流公司列表', '', 'freight/express', 'GET', 'app/adminapi/controller/v1/freight/Express.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(199, 22, 'adminapi', '保存物流公司', '', 'freight/express', 'POST', 'app/adminapi/controller/v1/freight/Express.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(200, 22, 'adminapi', '获取物流公司表单', '', 'freight/express/create', 'GET', 'app/adminapi/controller/v1/freight/Express.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(201, 22, 'adminapi', '获取修改物流公司表单', '', 'freight/express/<id>/edit', 'GET', 'app/adminapi/controller/v1/freight/Express.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(202, 22, 'adminapi', '修改物流公司', '', 'freight/express/<id>', 'PUT', 'app/adminapi/controller/v1/freight/Express.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(203, 22, 'adminapi', '删除物流公司', '', 'freight/express/<id>', 'DELETE', 'app/adminapi/controller/v1/freight/Express.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(204, 22, 'adminapi', '修改物流公司状态', '', 'freight/express/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/freight/Express.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(205, 22, 'adminapi', '同步物流公司', '', 'freight/express/sync_express', 'GET', 'app/adminapi/controller/v1/freight/Express.php', 'syncExpress', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(206, 22, 'adminapi', '物流配置编辑表单', '', 'freight/config/edit_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(207, 22, 'adminapi', '物流配置保存数据', '', 'freight/config/save_basics', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(208, 24, 'adminapi', '主播列表', '', 'live/anchor/list', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(209, 24, 'adminapi', '添加修改主播表单', '', 'live/anchor/add/<id>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(210, 24, 'adminapi', '保存主播数据', '', 'live/anchor/save', 'POST', 'app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(211, 24, 'adminapi', '删除主播', '', 'live/anchor/del/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(212, 24, 'adminapi', '设置主播是否显示', '', 'live/anchor/set_show/<id>/<is_show>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveAnchor.php', 'setShow', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(213, 25, 'adminapi', '直播商品列表', '', 'live/goods/list', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(214, 25, 'adminapi', '生成直播商品', '', 'live/goods/create', 'POST', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(215, 25, 'adminapi', '添加修改直播商品', '', 'live/goods/add', 'POST', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(216, 25, 'adminapi', '直播商品详情', '', 'live/goods/detail/<id>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'detail', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(217, 25, 'adminapi', '直播商品重新审核', '', 'live/goods/audit/<id>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'audit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(218, 25, 'adminapi', '直播商品撤回审核', '', 'live/goods/resestAudit/<id>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'resetAudit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(219, 25, 'adminapi', '删除直播商品', '', 'live/goods/del/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/live/LiveGoods.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(220, 25, 'adminapi', '设置直播商品是否显示', '', 'live/goods/set_show/<id>/<is_show>', 'GET', 'app/adminapi/controller/v1/marketing/live/liveGoods.php', 'setShow', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(221, 25, 'adminapi', '同步直播商品状态', '', 'live/goods/syncGoods', 'GET', 'app/adminapi/controller/v1/marketing/live/liveGoods.php', 'syncGoods', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(222, 26, 'adminapi', '直播间列表', '', 'live/room/list', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(223, 26, 'adminapi', '直播间添加', '', 'live/room/add', 'POST', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(224, 26, 'adminapi', '直播间详情', '', 'live/room/detail/<id>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'detail', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(225, 26, 'adminapi', '直播间添加商品', '', 'live/room/add_goods', 'POST', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'addGoods', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(226, 26, 'adminapi', '删除直播间', '', 'live/room/del/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(227, 26, 'adminapi', '设置直播间是否显示', '', 'live/room/set_show/<id>/<is_show>', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'setShow', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(228, 26, 'adminapi', '同步直播间状态', '', 'live/room/syncRoom', 'GET', 'app/adminapi/controller/v1/marketing/live/LiveRoom.php', 'syncRoom', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(229, 28, 'adminapi', '已发布优惠券列表', '', 'marketing/coupon/released', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(230, 28, 'adminapi', '添加优惠券', '', 'marketing/coupon/save_coupon', 'POST', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'saveCoupon', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(231, 28, 'adminapi', '修改优惠券状态', '', 'marketing/coupon/status/<id>/<status>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(232, 28, 'adminapi', '一键复制优惠券', '', 'marketing/coupon/copy/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'copy', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(233, 28, 'adminapi', '发送优惠券列表', '', 'marketing/coupon/grant', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(234, 28, 'adminapi', '已发布优惠券删除', '', 'marketing/coupon/released/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(235, 28, 'adminapi', '已发布优惠券修改状态表单', '', 'marketing/coupon/released/<id>/status', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(236, 28, 'adminapi', '已发布优惠券修改状态', '', 'marketing/coupon/released/status/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(237, 28, 'adminapi', '已发布优惠券领取记录', '', 'marketing/coupon/released/issue_log/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponIssue.php', 'issue_log', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(238, 28, 'adminapi', '会员领取记录', '', 'marketing/coupon/user', 'GET', 'app/adminapi/controller/v1/marketing/StoreCouponUser.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(239, 28, 'adminapi', '发送优惠券', '', 'marketing/coupon/user/grant', 'POST', 'app/adminapi/controller/v1/marketing/StoreCouponUser.php', 'grant', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(240, 29, 'adminapi', '砍价商品列表', '', 'marketing/bargain', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(241, 29, 'adminapi', '砍价商品详情', '', 'marketing/bargain/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(242, 29, 'adminapi', '新增或编辑砍价商品', '', 'marketing/bargain/<id>', 'POST', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(243, 29, 'adminapi', '删除砍价商品', '', 'marketing/bargain/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(244, 29, 'adminapi', '修改砍价商品状态', '', 'marketing/bargain/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(245, 29, 'adminapi', '参与砍价列表', '', 'marketing/bargain_list', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'bargainList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(246, 29, 'adminapi', '砍价人列表', '', 'marketing/bargain_list_info/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'bargainListInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(247, 29, 'adminapi', '砍价统计', '', 'marketing/bargain/statistics/head/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'bargainStatistics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(248, 29, 'adminapi', '砍价统计列表', '', 'marketing/bargain/statistics/list/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'bargainStatisticsList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(249, 29, 'adminapi', '砍价统计订单', '', 'marketing/bargain/statistics/order/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreBargain.php', 'bargainStatisticsOrder', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(250, 30, 'adminapi', '拼团商品列表', '', 'marketing/combination', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(251, 30, 'adminapi', '拼团商品统计', '', 'marketing/combination/statistics', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'statistics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(252, 30, 'adminapi', '拼团商品详情', '', 'marketing/combination/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(253, 30, 'adminapi', '新增或编辑拼团商品', '', 'marketing/combination/<id>', 'POST', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(254, 30, 'adminapi', '删除拼团商品', '', 'marketing/combination/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(255, 30, 'adminapi', '修改拼团商品状态', '', 'marketing/combination/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(256, 30, 'adminapi', '参与拼团列表', '', 'marketing/combination/combine/list', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'combine_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(257, 30, 'adminapi', '拼团人列表', '', 'marketing/combination/order_pink/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'order_pink', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(258, 30, 'adminapi', '拼团统计', '', 'marketing/combination/statistics/head/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'combinationStatistics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(259, 30, 'adminapi', '拼团统计列表', '', 'marketing/combination/statistics/list/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'combinationStatisticsList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(260, 30, 'adminapi', '拼团统计订单', '', 'marketing/combination/statistics/order/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreCombination.php', 'combinationStatisticsOrder', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(261, 31, 'adminapi', '秒杀商品列表', '', 'marketing/seckill', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(262, 31, 'adminapi', '秒杀时间段列表', '', 'marketing/seckill/time_list', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'time_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(263, 31, 'adminapi', '秒杀商品详情', '', 'marketing/seckill/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(264, 31, 'adminapi', '新增或编辑秒杀商品', '', 'marketing/seckill/<id>', 'POST', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(265, 31, 'adminapi', '删除秒杀商品', '', 'marketing/seckill/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(266, 31, 'adminapi', '修改秒杀商品状态', '', 'marketing/seckill/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(267, 31, 'adminapi', '秒杀统计', '', 'marketing/seckill/statistics/head/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'seckillStatistics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(268, 31, 'adminapi', '秒杀参与人', '', 'marketing/seckill/statistics/people/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'seckillPeople', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(269, 31, 'adminapi', '秒杀参与人', '', 'marketing/seckill/statistics/order/<id>', 'GET', 'app/adminapi/controller/v1/marketing/StoreSeckill.php', 'seckillOrder', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(270, 32, 'adminapi', '积分日志列表', '', 'marketing/integral', 'GET', 'app/adminapi/controller/v1/marketing/UserPoint.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(271, 32, 'adminapi', '积分日志头部数据', '', 'marketing/integral/statistics', 'GET', 'app/adminapi/controller/v1/marketing/UserPoint.php', 'integral_statistics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(272, 32, 'adminapi', '积分配置编辑表单', '', 'marketing/integral_config/edit_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(273, 32, 'adminapi', '积分配置保存数据', '', 'marketing/integral_config/save_basics', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(274, 32, 'adminapi', '积分商品列表', '', 'marketing/integral_product', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(275, 32, 'adminapi', '积分商品新增或编辑', '', 'marketing/integral/<id>', 'POST', 'app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(276, 32, 'adminapi', '积分商品详情', '', 'marketing/integral/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(277, 32, 'adminapi', '积分商品删除', '', 'marketing/integral/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(278, 32, 'adminapi', '修改积分商品状态', '', 'marketing/integral/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/marketing/integral/StoreIntegral.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(279, 32, 'adminapi', '积分商城订单列表', '', 'marketing/integral/order/list', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'lst', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(280, 32, 'adminapi', '积分商城订单数据', '', 'marketing/integral/order/chart', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'chart', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(281, 32, 'adminapi', '积分商城订单详情数据', '', 'marketing/integral/order/info/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'order_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(282, 32, 'adminapi', '修改积分商品订单备注信息', '', 'marketing/integral/order/remark/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'remark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(283, 32, 'adminapi', '获取积分订单状态', '', 'marketing/integral/order/status/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(284, 32, 'adminapi', '删除积分订单', '', 'marketing/integral/order/del/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'del', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(285, 32, 'adminapi', '积分订单发送货', '', 'marketing/integral/order/delivery/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'update_delivery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(286, 32, 'adminapi', '获取积分订单配送信息表单', '', 'marketing/integral/order/distribution/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'distribution', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(287, 32, 'adminapi', '修改积分订单配送信息', '', 'marketing/integral/order/distribution/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'update_distribution', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(288, 32, 'adminapi', '积分订单确认收货', '', 'marketing/integral/order/take/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'take_delivery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(289, 32, 'adminapi', '积分订单获取物流公司', '', 'marketing/integral/order/express_list', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'express', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(290, 32, 'adminapi', '积分订单快递公司电子面单模版', '', 'marketing/integral/order/express/temp', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'express_temp', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(291, 32, 'adminapi', '积分订单获取物流信息', '', 'marketing/integral/order/express/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'get_express', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(292, 32, 'adminapi', '打印积分订单', '', 'marketing/integral/order/print/<id>', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'order_print', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(293, 32, 'adminapi', '积分订单列表获取配送员', '', 'marketing/integral/order/delivery/list', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'get_delivery_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(294, 32, 'adminapi', '积分订单获取面单默认配置信息', '', 'marketing/integral/order/sheet_info', 'GET', 'app/adminapi/controller/v1/marketing/integral/StoreIntegralOrder.php', 'getDeliveryInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(295, 32, 'adminapi', '积分记录列表', '', 'marketing/point_record', 'GET', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'pointRecord', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(296, 32, 'adminapi', '积分记录列表备注', '', 'marketing/point_record/remark/<id>', 'POST', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'pointRecordRemark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(297, 32, 'adminapi', '积分统计基本信息', '', 'marketing/point/get_basic', 'GET', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'getBasic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(298, 32, 'adminapi', '积分统计趋势图', '', 'marketing/point/get_trend', 'GET', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'getTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(299, 32, 'adminapi', '积分来源统计', '', 'marketing/point/get_channel', 'GET', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'getChannel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(300, 32, 'adminapi', '积分消耗统计', '', 'marketing/point/get_type', 'GET', 'app/adminapi/controller/v1/marketing/integral/StorePointRecord.php', 'getType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(301, 33, 'adminapi', '抽奖活动列表', '', 'marketing/lottery/list', 'GET', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(302, 33, 'adminapi', '抽奖活动详情', '', 'marketing/lottery/detail/<id>', 'GET', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'detail', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(303, 33, 'adminapi', '抽奖活动详情', '', 'marketing/lottery/factor_info/<factor>', 'GET', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'factorInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(304, 33, 'adminapi', '添加抽奖活动', '', 'marketing/lottery/add', 'POST', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(305, 33, 'adminapi', '修改抽奖活动数据', '', 'marketing/lottery/edit/<id>', 'PUT', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(306, 33, 'adminapi', '删除抽奖活动', '', 'marketing/lottery/del/<id>', 'DELETE', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(307, 33, 'adminapi', '设置抽奖活动是否显示', '', 'marketing/lottery/set_status/<id>/<status>', 'POST', 'app/adminapi/controller/v1/marketing/lottery/LuckLottery.php', 'setStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(308, 33, 'adminapi', '抽奖记录列表', '', 'marketing/lottery/record/list', 'GET', 'app/adminapi/controller/v1/marketing/lottery/LuckLotteryRecord.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(309, 33, 'adminapi', '抽奖中奖发货、备注处理', '', 'marketing/lottery/record/deliver', 'POST', 'app/adminapi/controller/v1/marketing/lottery/LuckLotteryRecord.php', 'deliver', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(310, 35, 'adminapi', '门店列表', '', 'merchant/store', 'GET', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(311, 35, 'adminapi', '门店列表头部数据', '', 'merchant/store/get_header', 'GET', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'get_header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(312, 35, 'adminapi', '门店上下架', '', 'merchant/store/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(313, 35, 'adminapi', '门店删除', '', 'merchant/store/del/<id>', 'DELETE', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(314, 35, 'adminapi', '门店位置选择', '', 'merchant/store/address', 'GET', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'select_address', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(315, 35, 'adminapi', '门店详情', '', 'merchant/store/get_info/<id>', 'GET', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'get_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(316, 35, 'adminapi', '保存修改门店信息', '', 'merchant/store/<id>', 'POST', 'app/adminapi/controller/v1/merchant/SystemStore.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(317, 36, 'adminapi', '获取门店店员列表', '', 'merchant/store_staff', 'GET', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(318, 36, 'adminapi', '添加门店店员表单', '', 'merchant/store_staff/create', 'GET', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(319, 36, 'adminapi', '门店搜索列表', '', 'merchant/store_list', 'GET', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'store_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(320, 36, 'adminapi', '修改店员状态', '', 'merchant/store_staff/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(321, 36, 'adminapi', '修改店员表单', '', 'merchant/store_staff/<id>/edit', 'GET', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(322, 36, 'adminapi', '保存店员', '', 'merchant/store_staff/save/<id>', 'POST', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(323, 36, 'adminapi', '删除店员', '', 'merchant/store_staff/del/<id>', 'DELETE', 'app/adminapi/controller/v1/merchant/SystemStoreStaff.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(324, 37, 'adminapi', '获取核销订单列表', '', 'merchant/verify_order', 'GET', 'app/adminapi/controller/v1/merchant/SystemVerifyOrder.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(325, 37, 'adminapi', '获取核销订单头部', '', 'merchant/verify_badge', 'GET', 'app/adminapi/controller/v1/merchant/SystemVerifyOrder.php', 'getVerifyBadge', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(326, 37, 'adminapi', '核销订单推荐人信息', '', 'merchant/verify/spread_info/<uid>', 'GET', 'app/adminapi/controller/v1/merchant/SystemVerifyOrder.php', 'order_spread_user', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(327, 38, 'adminapi', '保存短信配置', '', 'notify/sms/config', 'POST', 'app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(328, 38, 'adminapi', '短信发送记录', '', 'notify/sms/record', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'record', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(329, 38, 'adminapi', '短信账号数据', '', 'notify/sms/data', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'data', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(330, 38, 'adminapi', '查看短信账号是否登录', '', 'notify/sms/is_login', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'is_login', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(331, 38, 'adminapi', '短信账号退出登录', '', 'notify/sms/logout', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsConfig.php', 'logout', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(332, 38, 'adminapi', '发送短信验证码', '', 'notify/sms/captcha', 'POST', 'app/adminapi/controller/v1/notification/sms/SmsAdmin.php', 'captcha', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(333, 38, 'adminapi', '修改或注册短信平台账号', '', 'notify/sms/register', 'POST', 'app/adminapi/controller/v1/notification/sms/SmsAdmin.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(334, 38, 'adminapi', '短信模板列表', '', 'notify/sms/temp', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsTemplateApply.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(335, 38, 'adminapi', '短信模板申请', '', 'notify/sms/temp', 'POST', 'app/adminapi/controller/v1/notification/sms/SmsTemplateApply.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(336, 38, 'adminapi', '短信模板申请表单', '', 'notify/sms/temp/create', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsTemplateApply.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(337, 38, 'adminapi', '公共短信模板列表', '', 'notify/sms/public_temp', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsPublicTemp.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(338, 38, 'adminapi', '短信剩余条数', '', 'notify/sms/number', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsPay.php', 'number', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(339, 38, 'adminapi', '获取短信购买套餐', '', 'notify/sms/price', 'GET', 'app/adminapi/controller/v1/notification/sms/SmsPay.php', 'price', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(340, 38, 'adminapi', '获取短信购买支付码', '', 'notify/sms/pay_code', 'POST', 'app/adminapi/controller/v1/notification/sms/SmsPay.php', 'pay', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(341, 39, 'adminapi', '打印订单', '', 'order/print/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'order_print', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(342, 39, 'adminapi', '订单列表', '', 'order/list', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'lst', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5206\\\\u9875\",\"id\":\"row_2964\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u6761\\\\u6570\",\"id\":\"row_2971\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001: 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"row_2978\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355ID|\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"row_2985\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f: 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":\"row_2992\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4 2022\\/07\\/12 00:00:00-2022\\/08\\/17 00:00:00\",\"id\":\"row_2999\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8:1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":\"row_3006\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_3013\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_3020\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":\"1665998356462\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387231\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387347\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":\"1665998387507\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":\"1665998387641\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1665998387801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":\"1665998387989\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"1665998388135\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":\"1665998388311\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":\"1665998388469\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":\"1665998388614\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":\"1665998388788\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":\"1665998388948\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1665998389121\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":\"1665998389281\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":\"1665998389455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":\"1665998389615\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":\"1665998389801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":\"1665998389962\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":\"1665998390163\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1665998390322\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":\"1665998390455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1665998390642\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1665998390815\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":\"1665998390975\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1665998391190\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":\"1665998623612\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1665998623796\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1665998623995\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1665998624155\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1665998624329\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":\"1665998624515\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":\"1665998628959\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":\"1665998629128\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1665998358704\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/list?status=1&real_name=张三&pay_type=1&data=2022/07/12 00:00:00-2022/08/17 00:00:00&paid=1&page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 30,\n \"pid\": 0,\n \"order_id\": \"wx273504055794335744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"25.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"25.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656494848,\n \"pay_type\": \"yue\",\n \"add_time\": 1656494848,\n \"status\": -2,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 2273504044117393400,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n },\n {\n \"id\": 29,\n \"pid\": 20,\n \"order_id\": \"wx273477746087165952\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 3,\n \"total_price\": \"77.70\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"77.70\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 0,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746112331780,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n },\n {\n \"cart_id\": 273477746108137470,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"水钻一字夹6件套 银色\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"23.90\",\n \"cart_num\": 2,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 28,\n \"pid\": 20,\n \"order_id\": \"wx273477745973919744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"29.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"29.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 1,\n \"delivery_name\": \"泰捷达国际物流\",\n \"delivery_code\": \"ztjieda\",\n \"delivery_id\": \"TJ444\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746041028600,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 26,\n \"pid\": 14,\n \"order_id\": \"wx273423259360296960\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"22.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"22.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656404021,\n \"pay_type\": \"yue\",\n \"add_time\": 1656475584,\n \"status\": 1,\n \"delivery_name\": \"顺丰快运\",\n \"delivery_code\": \"shunfengkuaiyun\",\n \"delivery_id\": \"SF555\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273423259398045700,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"水果+雏菊\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"22.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n }\n ],\n \"count\": 25\n }\n}', 0, '2023-04-26 18:48:04', NULL),
|
||
(343, 39, 'adminapi', '订单头部数据', '', 'order/chart', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'chart', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(344, 39, 'adminapi', '订单核销', '', 'order/write', 'POST', 'app/adminapi/controller/v1/order/StoreOrder.php', 'write_order', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(345, 39, 'adminapi', '订单号核销', '', 'order/write_update/<order_id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'write_update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(346, 39, 'adminapi', '获取订单编辑表单', '', 'order/edit/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(347, 39, 'adminapi', '修改订单', '', 'order/update/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(348, 39, 'adminapi', '确认收货', '', 'order/take/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'take_delivery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(349, 39, 'adminapi', '订单发送货', '', 'order/delivery/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update_delivery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(350, 39, 'adminapi', '获取订单可拆分商品列表', '', 'order/split_cart_info/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'split_cart_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(351, 39, 'adminapi', '拆单发送货', '', 'order/split_delivery/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'split_delivery', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(352, 39, 'adminapi', '获取订单拆分子订单列表', '', 'order/split_order/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'split_order', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(353, 39, 'adminapi', '订单退款表单', '', 'order/refund/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'refund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(354, 39, 'adminapi', '订单退款', '', 'order/refund/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update_refund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(355, 39, 'adminapi', '获取物流信息', '', 'order/express/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'get_express', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(356, 39, 'adminapi', '获取物流公司', '', 'order/express_list', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'express', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4203\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4210\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4217\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666001939800,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":1666001939958,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001940148,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666001939800,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":1666001939958,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001940148,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":\"1666001939800\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":\"1666001939958\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1666001940148\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/express_list', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"id\": 14,\n \"value\": \"宅急送\",\n \"code\": \"zhaijisong\"\n },\n {\n \"id\": 85,\n \"value\": \"顺丰快运\",\n \"code\": \"shunfengkuaiyun\"\n }\n ]\n}', 0, '2023-04-26 18:48:04', NULL),
|
||
(357, 39, 'adminapi', '订单详情', '', 'order/info/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'order_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(358, 39, 'adminapi', '获取配送信息表单', '', 'order/distribution/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'distribution', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(359, 39, 'adminapi', '修改配送信息', '', 'order/distribution/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update_distribution', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(360, 39, 'adminapi', '获取不退款表单', '', 'order/no_refund/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'no_refund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(361, 39, 'adminapi', '修改不退款理由', '', 'order/no_refund/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update_un_refund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(362, 39, 'adminapi', '线下支付', '', 'order/pay_offline/<id>', 'POST', 'app/adminapi/controller/v1/order/StoreOrder.php', 'pay_offline', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(363, 39, 'adminapi', '获取退积分表单', '', 'order/refund_integral/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'refund_integral', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(364, 39, 'adminapi', '修改退积分', '', 'order/refund_integral/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'update_refund_integral', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(365, 39, 'adminapi', '修改备注信息', '', 'order/remark/<id>', 'PUT', 'app/adminapi/controller/v1/order/StoreOrder.php', 'remark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(366, 39, 'adminapi', '获取订单状态', '', 'order/status/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(367, 39, 'adminapi', '删除订单单个', '', 'order/del/<id>', 'DELETE', 'app/adminapi/controller/v1/order/StoreOrder.php', 'del', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(368, 39, 'adminapi', '批量删除订单', '', 'order/dels', 'POST', 'app/adminapi/controller/v1/order/StoreOrder.php', 'del_orders', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(369, 39, 'adminapi', '面单默认配置信息', '', 'order/sheet_info', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'getDeliveryInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(370, 39, 'adminapi', '获取线下付款二维码', '', 'order/offline_scan', 'GET', 'app/adminapi/controller/v1/order/OtherOrder.php', 'offline_scan', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(371, 39, 'adminapi', '线下收银列表', '', 'order/scan_list', 'GET', 'app/adminapi/controller/v1/order/OtherOrder.php', 'scan_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(372, 39, 'adminapi', '发票列表头部统计', '', 'order/invoice/chart', 'GET', 'app/adminapi/controller/v1/order/StoreOrderInvoice.php', 'chart', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(373, 39, 'adminapi', '申请发票列表', '', 'order/invoice/list', 'GET', 'app/adminapi/controller/v1/order/StoreOrderInvoice.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(374, 39, 'adminapi', '设置发票状态', '', 'order/invoice/set/<id>', 'POST', 'app/adminapi/controller/v1/order/StoreOrderInvoice.php', 'set_invoice', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(375, 39, 'adminapi', '开票订单详情', '', 'order/invoice_order_info/<id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrderInvoice.php', 'orderInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(376, 39, 'adminapi', '配送员列表', '', 'order/delivery/index', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(377, 39, 'adminapi', '新增配送表单', '', 'order/delivery/add', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(378, 39, 'adminapi', '保存新建的配送员', '', 'order/delivery/save', 'POST', 'app/adminapi/controller/v1/order/DeliveryService.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(379, 39, 'adminapi', '编辑配送员表单', '', 'order/delivery/<id>/edit', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(380, 39, 'adminapi', '修改配送员', '', 'order/delivery/update/<id>', 'PUT', 'app/adminapi/controller/v1/order/DeliveryService.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(381, 39, 'adminapi', '删除配送员', '', 'order/delivery/del/<id>', 'DELETE', 'app/adminapi/controller/v1/order/DeliveryService.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(382, 39, 'adminapi', '修改配送员状态', '', 'order/delivery/set_status/<id>/<status>', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(383, 39, 'adminapi', '订单列表获取配送员', '', 'order/delivery/list', 'GET', 'app/adminapi/controller/v1/order/DeliveryService.php', 'get_delivery_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(384, 39, 'adminapi', '电子面单模板列表', '', 'order/expr/temp', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'expr_temp', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(385, 39, 'adminapi', '快递公司电子面单模版', '', 'order/express/temp', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'express_temp', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(386, 39, 'adminapi', '更多操作打印电子面单', '', 'order/order_dump/<order_id>', 'GET', 'app/adminapi/controller/v1/order/StoreOrder.php', 'order_dump', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(387, 40, 'adminapi', '售后订单列表', '', 'refund/list', 'GET', 'app/adminapi/controller/v1/order/RefundOrder.php', 'getRefundList', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\" \\\\u5206\\\\u9875\",\"id\":\"row_4697\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\" \\\\u6761\\\\u6570\",\"id\":\"row_4704\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u53f7\",\"id\":\"row_4711\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"time\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4 2022\\/06\\/01-2022\\/06\\/29\",\"id\":\"row_4718\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7c7b\\\\u578b 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"row_4725\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4732\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4739\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":1666002876034,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666002876686,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":1666002876034,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666002876686,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":\"1666002876034\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":\"1666002894953\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1666002895180\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1666002895312\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":\"1666002895489\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1666002895632\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":\"1666002895792\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":\"1666002895941\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":\"1666002896115\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"1666002896286\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":\"1666002896432\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":\"1666002896592\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":\"1666002896752\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666002896926\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666002897098\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":\"1666002897245\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":\"1666002897423\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":\"1666002897565\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":\"1666002897725\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":\"1666002897885\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":\"1666003054800\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":\"1666003054960\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":\"1666003055133\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1666003055308\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1666003055507\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1666003055803\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1666003104961\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1666003105147\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1666003105297\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1666003105481\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":\"1666003105600\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1666002876686\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/list?page=1&limit=20&order_id=xxx&time=2022/06/01-2022/06/29&refund_type=1', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 2,\n \"store_order_id\": 10,\n \"uid\": 2,\n \"order_id\": \"272753574860029952\",\n \"refund_type\": 6,\n \"refund_num\": 1,\n \"refunded_price\": \"25.90\",\n \"refund_phone\": \"\",\n \"refund_express\": \"\",\n \"refund_express_name\": \"\",\n \"refund_explain\": \"1111\",\n \"refund_img\": [],\n \"refund_reason\": \"收货地址填错了\",\n \"refuse_reason\": \"\",\n \"remark\": \"culpa sint nulla reprehenderit amet\",\n \"refunded_time\": 1656315941,\n \"is_cancel\": 0,\n \"is_del\": 0,\n \"is_pink_cancel\": 0,\n \"add_time\": 1656315919,\n \"avatar\": \"https://demo.crmeb.comstatics/system_images/default_avatar.jpeg\",\n \"nickname\": \"demo\",\n \"phone\": \"18354876351\",\n \"pay_price\": \"25.90\",\n \"items\": [\n {\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1\n }\n ]\n }\n ],\n \"count\": 1\n }\n}', 0, '2023-04-26 18:48:04', NULL),
|
||
(388, 40, 'adminapi', '商家同意退款,等待用户退货', '', 'refund/agree/<id>', 'GET', 'app/adminapi/controller/v1/order/RefundOrder.php', 'agreeExpress', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(389, 40, 'adminapi', '售后订单备注', '', 'refund/remark/<id>', 'PUT', 'app/adminapi/controller/v1/order/RefundOrder.php', 'remark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(390, 40, 'adminapi', '售后订单退款表单', '', 'refund/refund/<id>', 'GET', 'app/adminapi/controller/v1/order/RefundOrder.php', 'refund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(391, 40, 'adminapi', '售后订单退款', '', 'refund/refund/<id>', 'PUT', 'app/adminapi/controller/v1/order/RefundOrder.php', 'refundPrice', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(392, 40, 'adminapi', '获取不退款表单', '', 'refund/no_refund/<id>', 'GET', 'app/adminapi/controller/v1/order/RefundOrder.php', 'noRefund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(393, 40, 'adminapi', '修改不退款理由', '', 'refund/no_refund/<id>', 'PUT', 'app/adminapi/controller/v1/order/RefundOrder.php', 'refuseRefund', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(394, 40, 'adminapi', '获取退款单详情', '', 'refund/info/<uni>', 'GET', 'app/adminapi/controller/v1/order/RefundOrder.php', 'getRefundInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(395, 42, 'adminapi', '商品分类列表', '', 'product/category', 'GET', 'app/adminapi/controller/v1/product/StoreCategory.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(396, 42, 'adminapi', '商品分类新增', '', 'product/category', 'POST', 'app/adminapi/controller/v1/product/StoreCategory.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(397, 42, 'adminapi', '商品分类树形列表', '', 'product/category/tree/<type>', 'GET', 'app/adminapi/controller/v1/product/StoreCategory.php', 'tree_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(398, 42, 'adminapi', '商品分类树形列表', '', 'product/category/cascader/<type>', 'GET', 'app/adminapi/controller/v1/product/StoreCategory.php', 'cascader_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(399, 42, 'adminapi', '商品分类新增表单', '', 'product/category/create', 'GET', 'app/adminapi/controller/v1/product/StoreCategory.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(400, 42, 'adminapi', '商品分类编辑表单', '', 'product/category/<id>', 'GET', 'app/adminapi/controller/v1/product/StoreCategory.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(401, 42, 'adminapi', '商品分类编辑', '', 'product/category/<id>', 'PUT', 'app/adminapi/controller/v1/product/StoreCategory.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(402, 42, 'adminapi', '删除商品分类', '', 'product/category/<id>', 'DELETE', 'app/adminapi/controller/v1/product/StoreCategory.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(403, 42, 'adminapi', '商品分类修改状态', '', 'product/category/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/product/StoreCategory.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(404, 42, 'adminapi', '商品分类快捷编辑', '', 'product/category/set_category/<id>', 'PUT', 'app/adminapi/controller/v1/product/StoreCategory.php', 'set_category', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(405, 43, 'adminapi', '商品列表', '', 'product/product', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(406, 43, 'adminapi', '获取退出未保存的数据', '', 'product/cache', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'getCacheData', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(407, 43, 'adminapi', '保存还未提交数据', '', 'product/cache', 'POST', 'app/adminapi/controller/v1/product/StoreProduct.php', 'saveCacheData', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(408, 43, 'adminapi', '获取所有商品列表', '', 'product/product/list', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'search_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(409, 43, 'adminapi', '获取商品规格', '', 'product/product/attrs/<id>/<type>', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'get_attrs', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(410, 43, 'adminapi', '商品列表头部数据', '', 'product/product/type_header', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'type_header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(411, 43, 'adminapi', '商品放入回收站', '', 'product/product/<id>', 'DELETE', 'app/adminapi/controller/v1/product/StoreProduct.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(412, 43, 'adminapi', '新建或修改商品', '', 'product/product/<id>', 'POST', 'app/adminapi/controller/v1/product/StoreProduct.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(413, 43, 'adminapi', '商品详情', '', 'product/product/<id>', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'get_product_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(414, 43, 'adminapi', '修改商品状态', '', 'product/product/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/product/StoreProduct.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(415, 43, 'adminapi', '商品快速编辑', '', 'product/product/set_product/<id>', 'PUT', 'app/adminapi/controller/v1/product/StoreProduct.php', 'set_product', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(416, 43, 'adminapi', '设置批量商品上架', '', 'product/product/product_show', 'PUT', 'app/adminapi/controller/v1/product/StoreProduct.php', 'product_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(417, 43, 'adminapi', '设置批量商品下架', '', 'product/product/product_unshow', 'PUT', 'app/adminapi/controller/v1/product/StoreProduct.php', 'product_unshow', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(418, 43, 'adminapi', '商品规则列表', '', 'product/product/rule', 'GET', 'app/adminapi/controller/v1/product/StoreProductRule.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(419, 43, 'adminapi', '新建或编辑商品规则', '', 'product/product/rule/<id>', 'POST', 'app/adminapi/controller/v1/product/StoreProductRule.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(420, 43, 'adminapi', '商品规则详情', '', 'product/product/rule/<id>', 'GET', 'app/adminapi/controller/v1/product/StoreProductRule.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(421, 43, 'adminapi', '删除商品规则', '', 'product/product/rule/delete', 'DELETE', 'app/adminapi/controller/v1/product/StoreProductRule.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(422, 43, 'adminapi', '生成商品规格列表', '', 'product/generate_attr/<id>/<type>', 'POST', 'app/adminapi/controller/v1/product/StoreProduct.php', 'is_format_attr', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(423, 43, 'adminapi', '获取商品规则属性模板', '', 'product/product/get_rule', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'get_rule', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(424, 43, 'adminapi', '获取运费模板', '', 'product/product/get_template', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'get_template', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(425, 43, 'adminapi', '上传视频密钥接口', '', 'product/product/get_temp_keys', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'getTempKeys', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(426, 43, 'adminapi', '检测是商品否有活动开启', '', 'product/product/check_activity/<id>', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'check_activity', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(427, 43, 'adminapi', '导入虚拟商品卡密', '', 'product/product/import_card', 'GET', 'app/adminapi/controller/v1/product/StoreProduct.php', 'import_card', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(428, 43, 'adminapi', '商品批量设置', '', 'product/batch/setting', 'POST', 'app/adminapi/controller/v1/product/StoreProduct.php', 'batchSetting', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(429, 44, 'adminapi', '商品评论列表', '', 'product/reply', 'GET', 'app/adminapi/controller/v1/product/StoreProductReply.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(430, 44, 'adminapi', '商品回复评论', '', 'product/reply/set_reply/<id>', 'PUT', 'app/adminapi/controller/v1/product/StoreProductReply.php', 'set_reply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(431, 44, 'adminapi', '删除商品评论', '', 'product/reply/<id>', 'DELETE', 'app/adminapi/controller/v1/product/StoreProductReply.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(432, 44, 'adminapi', '虚拟评论表单', '', 'product/reply/fictitious_reply/<product_id>', 'GET', 'app/adminapi/controller/v1/product/StoreProductReply.php', 'fictitious_reply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(433, 44, 'adminapi', '保存虚拟评论', '', 'product/reply/save_fictitious_reply', 'POST', 'app/adminapi/controller/v1/product/StoreProductReply.php', 'save_fictitious_reply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(434, 45, 'adminapi', '获取采集商品数据', '', 'product/crawl', 'POST', 'app/adminapi/controller/v1/product/CopyTaobao.php', 'get_request_contents', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(435, 45, 'adminapi', '获取复制商品配置', '', 'product/copy_config', 'GET', 'app/adminapi/controller/v1/product/CopyTaobao.php', 'getConfig', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(436, 45, 'adminapi', '复制其他平台商品', '', 'product/copy', 'POST', 'app/adminapi/controller/v1/product/CopyTaobao.php', 'copyProduct', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(437, 45, 'adminapi', '保存采集商品数据', '', 'product/crawl/save', 'POST', 'app/adminapi/controller/v1/product/CopyTaobao.php', 'save_product', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(438, 46, 'adminapi', '', '', 'upgrade', 'GET', 'app/adminapi/controller/UpgradeController.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(439, 46, 'adminapi', '', '', 'upgrade/run', 'GET', 'app/adminapi/controller/UpgradeController.php', 'upgrade', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(440, 46, 'adminapi', '下载表备份记录', '', 'login', 'POST', 'app/adminapi/controller/Login.php', 'login', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(441, 46, 'adminapi', '登录信息', '', 'login/info', 'GET', 'app/adminapi/controller/Login.php', 'info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(442, 46, 'adminapi', '下载文件', '', 'download/<key>', 'GET', 'app/adminapi/controller/PublicController.php', 'download', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(443, 46, 'adminapi', '获取验证码', '', 'captcha_pro', 'GET', 'app/adminapi/controller/Login.php', 'captcha', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(444, 46, 'adminapi', '获取验证码', '', 'ajcaptcha', 'GET', 'app/adminapi/controller/Login.php', 'ajcaptcha', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(445, 46, 'adminapi', '一次验证', '', 'ajcheck', 'POST', 'app/adminapi/controller/Login.php', 'ajcheck', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(446, 46, 'adminapi', '获取客服数据', '', 'get_workerman_url', 'GET', 'app/adminapi/controller/PublicController.php', 'getWorkerManUrl', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(447, 46, 'adminapi', '测试地址', '', 'index', 'GET', 'app/adminapi/controller/Test.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(448, 47, 'adminapi', '一号通平台登录', '', 'serve/login', 'POST', 'app/adminapi/controller/v1/serve/Login.php', 'login', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(449, 47, 'adminapi', '一号通获取验证码', '', 'serve/captcha', 'POST', 'app/adminapi/controller/v1/serve/Login.php', 'captcha', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(450, 47, 'adminapi', '一号通验证验证码', '', 'serve/checkCode', 'POST', 'app/adminapi/controller/v1/serve/Login.php', 'checkCode', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(451, 47, 'adminapi', '一号通注册', '', 'serve/register', 'POST', 'app/adminapi/controller/v1/serve/Login.php', 'register', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(452, 47, 'adminapi', '一号通开通电子面单', '', 'serve/opn_express', 'POST', 'app/adminapi/controller/v1/serve/Serve.php', 'openExpress', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(453, 47, 'adminapi', '一号通账户信息', '', 'serve/info', 'GET', 'app/adminapi/controller/v1/serve/Serve.php', 'getUserInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(454, 47, 'adminapi', '一号通支付套餐列表', '', 'serve/meal_list', 'GET', 'app/adminapi/controller/v1/serve/Serve.php', 'mealList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(455, 47, 'adminapi', '一号通支付二维码', '', 'serve/pay_meal', 'POST', 'app/adminapi/controller/v1/serve/Serve.php', 'payMeal', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(456, 47, 'adminapi', '一号通开通短信服务', '', 'serve/sms/open', 'GET', 'app/adminapi/controller/v1/serve/Sms.php', 'openServe', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(457, 47, 'adminapi', '一号通开通其他服务', '', 'serve/open', 'GET', 'app/adminapi/controller/v1/serve/Serve.php', 'openServe', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(458, 47, 'adminapi', '一号通修改签名', '', 'serve/sms/sign', 'PUT', 'app/adminapi/controller/v1/serve/Sms.php', 'editSign', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(459, 47, 'adminapi', '一号通获取短信模板', '', 'serve/sms/temps', 'GET', 'app/adminapi/controller/v1/serve/Sms.php', 'temps', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(460, 47, 'adminapi', '一号通申请模板', '', 'serve/sms/apply', 'POST', 'app/adminapi/controller/v1/serve/Sms.php', 'apply', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(461, 47, 'adminapi', '一号通获取申请记录', '', 'serve/sms/apply_record', 'GET', 'app/adminapi/controller/v1/serve/Sms.php', 'applyRecord', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(462, 47, 'adminapi', '一号通消费记录', '', 'serve/record', 'GET', 'app/adminapi/controller/v1/serve/Serve.php', 'getRecord', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(463, 47, 'adminapi', '一号通是否开启电子面单打印', '', 'serve/dump_open', 'GET', 'app/adminapi/controller/v1/serve/Export.php', 'dumpIsOpen', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(464, 47, 'adminapi', '一号通获取全部物流公司', '', 'serve/export_all', 'GET', 'app/adminapi/controller/v1/serve/Export.php', 'getExportAll', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(465, 47, 'adminapi', '一号通获取物流公司模板', '', 'serve/export_temp', 'GET', 'app/adminapi/controller/v1/serve/Export.php', 'getExportTemp', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(466, 47, 'adminapi', '一号通修改密码', '', 'serve/modify', 'POST', 'app/adminapi/controller/v1/serve/Serve.php', 'modify', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(467, 47, 'adminapi', '一号通修改手机号码', '', 'serve/update_phone', 'POST', 'app/adminapi/controller/v1/serve/Serve.php', 'updatePhone', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(468, 47, 'adminapi', '一号通短信配置编辑表单', '', 'serve/sms_config/edit_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(469, 47, 'adminapi', '一号通短信配置保存数据', '', 'serve/sms_config/save_basics', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(470, 49, 'adminapi', '获取管理员列表', '', 'setting/admin', 'GET', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(471, 49, 'adminapi', '保存管理员', '', 'setting/admin', 'POST', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(472, 49, 'adminapi', '获取管理员表单', '', 'setting/admin/create', 'GET', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(473, 49, 'adminapi', '获取修改管理员表单', '', 'setting/admin/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(474, 49, 'adminapi', '修改管理员', '', 'setting/admin/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(475, 49, 'adminapi', '删除管理员', '', 'setting/admin/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(476, 49, 'adminapi', '退出登陆', '', 'setting/admin/logout', 'GET', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'logout', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(477, 49, 'adminapi', '修改管理员状态', '', 'setting/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(478, 49, 'adminapi', '获取当前管理员信息', '', 'setting/info', 'GET', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(479, 49, 'adminapi', '修改当前管理员信息', '', 'setting/update_admin', 'PUT', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'update_admin', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(480, 49, 'adminapi', '设置当前文件管理密码', '', 'setting/set_file_password', 'PUT', 'app/adminapi/controller/v1/setting/SystemAdmin.php', 'set_file_password', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(481, 50, 'adminapi', '获取菜单权限和权限标识', '', 'setting/menus/unique', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'unique', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(482, 50, 'adminapi', '批量保存权限', '', 'setting/menus/batch', 'POST', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'batchSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(483, 50, 'adminapi', '获取权限菜单列表', '', 'setting/menus', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(484, 50, 'adminapi', '保存权限菜单', '', 'setting/menus', 'POST', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(485, 50, 'adminapi', '获取权限菜单表单', '', 'setting/menus/create', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(486, 50, 'adminapi', '获取修改权限菜单表单', '', 'setting/menus/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(487, 50, 'adminapi', '查看权限菜单信息', '', 'setting/menus/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(488, 50, 'adminapi', '修改权限菜单', '', 'setting/menus/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(489, 50, 'adminapi', '删除权限菜单', '', 'setting/menus/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(490, 50, 'adminapi', '权限规则列表', '', 'setting/ruleList', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'ruleList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(491, 50, 'adminapi', '权限规则分类', '', 'setting/rule_cate', 'GET', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'ruleCate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(492, 50, 'adminapi', '修改权限规格显示状态', '', 'setting/menus/show/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemMenus.php', 'show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(493, 51, 'adminapi', '管理员身份列表', '', 'setting/role', 'GET', 'app/adminapi/controller/v1/setting/SystemRole.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(494, 51, 'adminapi', '管理员身份权限列表', '', 'setting/role/create', 'GET', 'app/adminapi/controller/v1/setting/SystemRole.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(495, 51, 'adminapi', '编辑管理员详情', '', 'setting/role/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemRole.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(496, 51, 'adminapi', '新建或编辑管理员', '', 'setting/role/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemRole.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(497, 51, 'adminapi', '删除管理员身份', '', 'setting/role/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemRole.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(498, 51, 'adminapi', '修改管理员身份状态', '', 'setting/role/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemRole.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(499, 52, 'adminapi', '获取系统配置分类列表', '', 'setting/config_class', 'GET', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(500, 52, 'adminapi', '保存系统配置分类', '', 'setting/config_class', 'POST', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(501, 52, 'adminapi', '获取系统配置分类表单', '', 'setting/config_class/create', 'GET', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(502, 52, 'adminapi', '获取修改系统配置分类表单', '', 'setting/config_class/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(503, 52, 'adminapi', '修改系统配置分类', '', 'setting/config_class/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(504, 52, 'adminapi', '删除系统配置分类', '', 'setting/config_class/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(505, 52, 'adminapi', '修改配置分类状态', '', 'setting/config_class/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemConfigTab.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(506, 52, 'adminapi', '获取系统配置列表', '', 'setting/config', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(507, 52, 'adminapi', '保存系统配置', '', 'setting/config', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(508, 52, 'adminapi', '获取系统配置表单', '', 'setting/config/create', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(509, 52, 'adminapi', '获取修改系统配置表单', '', 'setting/config/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(510, 52, 'adminapi', '修改系统配置', '', 'setting/config/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(511, 52, 'adminapi', '删除系统配置', '', 'setting/config/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(512, 52, 'adminapi', '修改配置状态', '', 'setting/config/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(513, 52, 'adminapi', '基本配置编辑头部数据', '', 'setting/config/header_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'header_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(514, 52, 'adminapi', '基本配置编辑表单', '', 'setting/config/edit_basics', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'edit_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(515, 52, 'adminapi', '基本配置保存数据', '', 'setting/config/save_basics', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'save_basics', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(516, 52, 'adminapi', '基本配置上传文件', '', 'setting/config/upload', 'POST', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'file_upload', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(517, 52, 'adminapi', '基本配置编辑表单', '', 'setting/config/get_system/<name>', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'get_system', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(518, 52, 'adminapi', '获取某个分类下的所有配置信息', '', 'setting/config_list/<tabId>', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'get_config_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(519, 53, 'adminapi', '获取组合数据列表', '', 'setting/group', 'GET', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(520, 53, 'adminapi', '保存组合数据', '', 'setting/group', 'POST', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(521, 53, 'adminapi', '获取组合数据表单', '', 'setting/group/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(522, 53, 'adminapi', '获取修改组合数据表单', '', 'setting/group/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(523, 53, 'adminapi', '修改组合数据', '', 'setting/group/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(524, 53, 'adminapi', '删除组合数据', '', 'setting/group/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(525, 53, 'adminapi', '组合数据全部', '', 'setting/group_all', 'GET', 'app/adminapi/controller/v1/setting/SystemGroup.php', 'getGroup', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(526, 53, 'adminapi', '获取组合数据子数据列表', '', 'setting/group_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(527, 53, 'adminapi', '保存组合数据子数据', '', 'setting/group_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(528, 53, 'adminapi', '获取组合数据子数据表单', '', 'setting/group_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(529, 53, 'adminapi', '获取修改组合数据子数据表单', '', 'setting/group_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(530, 53, 'adminapi', '修改组合数据子数据', '', 'setting/group_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(531, 53, 'adminapi', '删除组合数据子数据', '', 'setting/group_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(532, 53, 'adminapi', '组合数据头部', '', 'setting/group_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(533, 53, 'adminapi', '修改组合数据状态', '', 'setting/group_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(534, 53, 'adminapi', '提交数据配置', '', 'setting/group_data/save_all', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'saveAll', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(535, 53, 'adminapi', '获取客服广告', '', 'setting/get_kf_adv', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'getKfAdv', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(536, 53, 'adminapi', '设置客服广告', '', 'setting/set_kf_adv', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'setKfAdv', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(537, 53, 'adminapi', '获取签到天数配置列表', '', 'setting/sign_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(538, 53, 'adminapi', '保存签到天数配置', '', 'setting/sign_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(539, 53, 'adminapi', '获取签到天数配置表单', '', 'setting/sign_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(540, 53, 'adminapi', '获取修改签到天数配置表单', '', 'setting/sign_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(541, 53, 'adminapi', '修改签到天数配置', '', 'setting/sign_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(542, 53, 'adminapi', '删除签到天数配置', '', 'setting/sign_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(543, 53, 'adminapi', '签到数据头部', '', 'setting/sign_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(544, 53, 'adminapi', '修改签到数据状态', '', 'setting/sign_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(545, 53, 'adminapi', '获取订单详情动态图列表', '', 'setting/order_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(546, 53, 'adminapi', '保存订单详情动态图', '', 'setting/order_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(547, 53, 'adminapi', '获取订单详情动态图表单', '', 'setting/order_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(548, 53, 'adminapi', '获取修改订单详情动态图表单', '', 'setting/order_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(549, 53, 'adminapi', '修改订单详情动态图', '', 'setting/order_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(550, 53, 'adminapi', '删除订单详情动态图', '', 'setting/order_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(551, 53, 'adminapi', '订单数据字段', '', 'setting/order_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(552, 53, 'adminapi', '订单数据状态', '', 'setting/order_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(553, 53, 'adminapi', '获取个人中心菜单列表', '', 'setting/usermenu_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(554, 53, 'adminapi', '保存个人中心菜单', '', 'setting/usermenu_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(555, 53, 'adminapi', '获取个人中心菜单表单', '', 'setting/usermenu_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(556, 53, 'adminapi', '获取修改个人中心菜单表单', '', 'setting/usermenu_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(557, 53, 'adminapi', '修改个人中心菜单', '', 'setting/usermenu_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(558, 53, 'adminapi', '删除个人中心菜单', '', 'setting/usermenu_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(559, 53, 'adminapi', '个人中心菜单数据字段', '', 'setting/usermenu_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(560, 53, 'adminapi', '个人中心菜单数据状态', '', 'setting/usermenu_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(561, 53, 'adminapi', '获取分享海报列表', '', 'setting/poster_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(562, 53, 'adminapi', '保存分享海报', '', 'setting/poster_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(563, 53, 'adminapi', '获取分享海报表单', '', 'setting/poster_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(564, 53, 'adminapi', '获取修改分享海报表单', '', 'setting/poster_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(565, 53, 'adminapi', '修改分享海报', '', 'setting/poster_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(566, 53, 'adminapi', '删除分享海报', '', 'setting/poster_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(567, 53, 'adminapi', '分享海报数据字段', '', 'setting/poster_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(568, 53, 'adminapi', '分享海报数据状态', '', 'setting/poster_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(569, 53, 'adminapi', '获取分秒杀配置列表', '', 'setting/seckill_data', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(570, 53, 'adminapi', '保存秒杀配置', '', 'setting/seckill_data', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(571, 53, 'adminapi', '获取秒杀配置表单', '', 'setting/seckill_data/create', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(572, 53, 'adminapi', '获取修改秒杀配置表单', '', 'setting/seckill_data/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(573, 53, 'adminapi', '修改秒杀配置', '', 'setting/seckill_data/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(574, 53, 'adminapi', '删除秒杀配置', '', 'setting/seckill_data/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(575, 53, 'adminapi', '秒杀数据字段', '', 'setting/seckill_data/header', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'header', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(576, 53, 'adminapi', '秒杀数据状态', '', 'setting/seckill_data/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(577, 53, 'adminapi', '获取隐私协议', '', 'setting/get_user_agreement', 'GET', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'getUserAgreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(578, 53, 'adminapi', '设置隐私协议', '', 'setting/set_user_agreement', 'POST', 'app/adminapi/controller/v1/setting/SystemGroupData.php', 'setUserAgreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(579, 54, 'adminapi', '获取城市数据完整列表', '', 'setting/city/full_list', 'GET', 'app/adminapi/controller/v1/setting/SystemCity.php', 'fullList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(580, 54, 'adminapi', '获取城市数据列表', '', 'setting/city/list/<parent_id>', 'GET', 'app/adminapi/controller/v1/setting/SystemCity.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(581, 54, 'adminapi', '添加城市数据表单', '', 'setting/city/add/<parent_id>', 'GET', 'app/adminapi/controller/v1/setting/SystemCity.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(582, 54, 'adminapi', '修改城市数据表单', '', 'setting/city/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemCity.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(583, 54, 'adminapi', '新增/修改城市数据', '', 'setting/city/save', 'POST', 'app/adminapi/controller/v1/setting/SystemCity.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(584, 54, 'adminapi', '删除城市数据', '', 'setting/city/del/<city_id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemCity.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(585, 54, 'adminapi', '清除城市数据缓存', '', 'setting/city/clean_cache', 'GET', 'app/adminapi/controller/v1/setting/SystemCity.php', 'clean_cache', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(586, 55, 'adminapi', '运费模板列表', '', 'setting/shipping_templates/list', 'GET', 'app/adminapi/controller/v1/setting/ShippingTemplates.php', 'temp_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(587, 55, 'adminapi', '修改运费模板数据', '', 'setting/shipping_templates/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/ShippingTemplates.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(588, 55, 'adminapi', '新增或修改运费模版', '', 'setting/shipping_templates/save/<id>', 'POST', 'app/adminapi/controller/v1/setting/ShippingTemplates.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(589, 55, 'adminapi', '删除运费模板', '', 'setting/shipping_templates/del/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/ShippingTemplates.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(590, 55, 'adminapi', '城市数据接口', '', 'setting/shipping_templates/city_list', 'GET', 'app/adminapi/controller/v1/setting/ShippingTemplates.php', 'city_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(591, 56, 'adminapi', '系统通知列表', '', 'setting/notification/index', 'GET', 'app/adminapi/controller/v1/setting/SystemNotification.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(592, 56, 'adminapi', '获取单条通知数据', '', 'setting/notification/info', 'GET', 'app/adminapi/controller/v1/setting/SystemNotification.php', 'info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(593, 56, 'adminapi', '保存通知设置', '', 'setting/notification/save', 'POST', 'app/adminapi/controller/v1/setting/SystemNotification.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(594, 56, 'adminapi', '修改消息状态', '', 'setting/notification/set_status/<type>/<status>/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemNotification.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(595, 57, 'adminapi', '获取协议内容', '', 'setting/get_agreement/<type>', 'GET', 'app/adminapi/controller/v1/setting/SystemAgreement.php', 'getAgreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(596, 57, 'adminapi', '设置协议内容', '', 'setting/save_agreement', 'POST', 'app/adminapi/controller/v1/setting/SystemAgreement.php', 'saveAgreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(597, 57, 'adminapi', '获取版权信息', '', 'setting/get_version', 'GET', 'app/adminapi/controller/v1/setting/SystemConfig.php', 'getVersion', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(598, 58, 'adminapi', '对外接口账号信息', '', 'setting/system_out_account/index', 'GET', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(599, 58, 'adminapi', '对外接口账号添加', '', 'setting/system_out_account/save', 'POST', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(600, 58, 'adminapi', '对外接口账号修改', '', 'setting/system_out_account/update/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(601, 58, 'adminapi', '设置账号是否禁用', '', 'setting/system_out_account/set_status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(602, 58, 'adminapi', '设置账号推送接口', '', 'setting/system_out_account/set_up/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'outSetUpSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(603, 58, 'adminapi', '删除账号', '', 'setting/system_out_account/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(604, 58, 'adminapi', '测试获取token接口', '', 'setting/system_out_account/text_out_url', 'POST', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'textOutUrl', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(605, 58, 'adminapi', '对外接口列表', '', 'setting/system_out_interface/list', 'GET', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'outInterfaceList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(606, 58, 'adminapi', '新增修改对外接口', '', 'setting/system_out_interface/save/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'saveInterface', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(607, 58, 'adminapi', '对外接口信息', '', 'setting/system_out_interface/info/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'interfaceInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(608, 58, 'adminapi', '修改接口名称', '', 'setting/system_out_interface/edit_name', 'PUT', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'editInterfaceName', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(609, 58, 'adminapi', '删除接口', '', 'setting/system_out_interface/del/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemOutAccount.php', 'delInterface', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(610, 59, 'adminapi', '语言国家列表', '', 'setting/lang_country/list', 'GET', 'app/adminapi/controller/v1/setting/LangCountry.php', 'langCountryList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(611, 59, 'adminapi', '添加语言地区表单', '', 'setting/lang_country/form/<id>', 'GET', 'app/adminapi/controller/v1/setting/LangCountry.php', 'langCountryForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(612, 59, 'adminapi', '保存语言地区', '', 'setting/lang_country/save/<id>', 'POST', 'app/adminapi/controller/v1/setting/LangCountry.php', 'langCountrySave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(613, 59, 'adminapi', '删除语言地区', '', 'setting/lang_country/del/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/LangCountry.php', 'langCountryDel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(614, 59, 'adminapi', '语言类型列表', '', 'setting/lang_type/list', 'GET', 'app/adminapi/controller/v1/setting/LangType.php', 'langTypeList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(615, 59, 'adminapi', '新增修改语言类型表单', '', 'setting/lang_type/form/<id>', 'GET', 'app/adminapi/controller/v1/setting/LangType.php', 'langTypeForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(616, 59, 'adminapi', '保存新增修改语言', '', 'setting/lang_type/save/<id>', 'POST', 'app/adminapi/controller/v1/setting/LangType.php', 'langTypeSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(617, 59, 'adminapi', '删除语言', '', 'setting/lang_type/del/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/LangType.php', 'langTypeDel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(618, 59, 'adminapi', '修改语言类型状态', '', 'setting/lang_type/status/<id>/<status>', 'PUT', 'app/adminapi/controller/v1/setting/LangType.php', 'langTypeStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(619, 59, 'adminapi', '语言列表', '', 'setting/lang_code/list', 'GET', 'app/adminapi/controller/v1/setting/LangCode.php', 'langCodeList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(620, 59, 'adminapi', '语言详情', '', 'setting/lang_code/info', 'GET', 'app/adminapi/controller/v1/setting/LangCode.php', 'langCodeInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(621, 59, 'adminapi', '保存修改语言', '', 'setting/lang_code/save', 'POST', 'app/adminapi/controller/v1/setting/LangCode.php', 'langCodeSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(622, 59, 'adminapi', '删除语言', '', 'setting/lang_code/del/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/LangCode.php', 'langCodeDel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(623, 59, 'adminapi', '机器翻译', '', 'setting/lang_code/translate', 'POST', 'app/adminapi/controller/v1/setting/LangCode.php', 'langCodeTranslate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(624, 61, 'adminapi', '用户基础统计', '', 'statistic/user/get_basic', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getBasic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(625, 61, 'adminapi', '用户增长趋势', '', 'statistic/user/get_trend', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(626, 61, 'adminapi', '微信用户统计', '', 'statistic/user/get_wechat', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getWechat', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(627, 61, 'adminapi', '微信用户成长趋势', '', 'statistic/user/get_wechat_trend', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getWechatTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(628, 61, 'adminapi', '用户地域排行', '', 'statistic/user/get_region', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getRegion', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(629, 61, 'adminapi', '用户性别分布', '', 'statistic/user/get_sex', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getSex', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(630, 61, 'adminapi', '用户数据导出', '', 'statistic/user/get_excel', 'GET', 'app/adminapi/controller/v1/statistic/UserStatistic.php', 'getExcel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(631, 62, 'adminapi', '商品基础统计', '', 'statistic/product/get_basic', 'GET', 'app/adminapi/controller/v1/statistic/ProductStatistic.php', 'getBasic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(632, 62, 'adminapi', '商品趋势', '', 'statistic/product/get_trend', 'GET', 'app/adminapi/controller/v1/statistic/ProductStatistic.php', 'getTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(633, 62, 'adminapi', '商品排行', '', 'statistic/product/get_product_ranking', 'GET', 'app/adminapi/controller/v1/statistic/ProductStatistic.php', 'getProductRanking', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(634, 62, 'adminapi', '商品数据导出', '', 'statistic/product/get_excel', 'GET', 'app/adminapi/controller/v1/statistic/ProductStatistic.php', 'getExcel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(635, 63, 'adminapi', '今日营业额统计', '', 'statistic/trade/top_trade', 'GET', 'app/adminapi/controller/v1/statistic/TradeStatistic.php', 'topTrade', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(636, 63, 'adminapi', '交易统计底部数据', '', 'statistic/trade/bottom_trade', 'GET', 'app/adminapi/controller/v1/statistic/TradeStatistic.php', 'bottomTrade', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(637, 64, 'adminapi', '订单基础统计', '', 'statistic/order/get_basic', 'GET', 'app/adminapi/controller/v1/statistic/OrderStatistic.php', 'getBasic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(638, 64, 'adminapi', '订单趋势', '', 'statistic/order/get_trend', 'GET', 'app/adminapi/controller/v1/statistic/OrderStatistic.php', 'getTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(639, 64, 'adminapi', '订单来源', '', 'statistic/order/get_channel', 'GET', 'app/adminapi/controller/v1/statistic/OrderStatistic.php', 'getChannel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(640, 64, 'adminapi', '订单类型', '', 'statistic/order/get_type', 'GET', 'app/adminapi/controller/v1/statistic/OrderStatistic.php', 'getType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(641, 65, 'adminapi', '资金流水', '', 'statistic/flow/get_list', 'GET', 'app/adminapi/controller/v1/statistic/FlowStatistic.php', 'getFlowList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(642, 65, 'adminapi', '设置备注', '', 'statistic/flow/set_mark/<id>', 'POST', 'app/adminapi/controller/v1/statistic/FlowStatistic.php', 'setMark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(643, 65, 'adminapi', '账单记录', '', 'statistic/flow/get_record', 'GET', 'app/adminapi/controller/v1/statistic/FlowStatistic.php', 'getFlowRecord', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(644, 66, 'adminapi', '余额基础统计', '', 'statistic/balance/get_basic', 'GET', 'app/adminapi/controller/v1/statistic/BalanceStatistic.php', 'getBasic', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(645, 66, 'adminapi', '余额趋势', '', 'statistic/balance/get_trend', 'GET', 'app/adminapi/controller/v1/statistic/BalanceStatistic.php', 'getTrend', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(646, 66, 'adminapi', '余额来源', '', 'statistic/balance/get_channel', 'GET', 'app/adminapi/controller/v1/statistic/BalanceStatistic.php', 'getChannel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(647, 66, 'adminapi', '余额消耗', '', 'statistic/balance/get_type', 'GET', 'app/adminapi/controller/v1/statistic/BalanceStatistic.php', 'getType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(648, 68, 'adminapi', '选择存储方式', '', 'system/config/storage/save_type/<type>', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'uploadType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(649, 68, 'adminapi', '云存储列表', '', 'system/config/storage', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(650, 68, 'adminapi', '获取云存储创建表单', '', 'system/config/storage/create/<type>', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(651, 68, 'adminapi', '获取云存储配置表单', '', 'system/config/storage/form/<type>', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'getConfigForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(652, 68, 'adminapi', '获取云存储配置', '', 'system/config/storage/config', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'getConfig', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(653, 68, 'adminapi', '保存云存储配置', '', 'system/config/storage/config', 'POST', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'saveConfig', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(654, 68, 'adminapi', '同步云存储列表', '', 'system/config/storage/synch/<type>', 'PUT', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'synch', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(655, 68, 'adminapi', '获取修改云存储域名表单', '', 'system/config/storage/domain/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'getUpdateDomainForm', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(656, 68, 'adminapi', '修改云存储域名', '', 'system/config/storage/domain/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'updateDomain', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(657, 68, 'adminapi', '保存云存储数据', '', 'system/config/storage/<type>', 'POST', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(658, 68, 'adminapi', '删除云存储', '', 'system/config/storage/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(659, 68, 'adminapi', '修改云存储状态', '', 'system/config/storage/status/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemStorage.php', 'status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(660, 69, 'adminapi', '系统日志', '', 'system/log', 'GET', 'app/adminapi/controller/v1/system/SystemLog.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(661, 69, 'adminapi', '系统日志管理员搜索条件', '', 'system/log/search_admin', 'GET', 'app/adminapi/controller/v1/system/SystemLog.php', 'search_admin', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(662, 69, 'adminapi', '文件校验', '', 'system/file', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(663, 70, 'adminapi', '数据库所有表', '', 'system/backup', 'GET', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(664, 70, 'adminapi', '数据备份详情', '', 'system/backup/read', 'GET', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(665, 70, 'adminapi', '更新数据表或者表字段备注', '', 'system/database/update_mark', 'POST', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'updateMark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(666, 70, 'adminapi', '数据备份优化表', '', 'system/backup/optimize', 'PUT', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'optimize', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(667, 70, 'adminapi', '数据备份修复表', '', 'system/backup/repair', 'PUT', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'repair', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(668, 70, 'adminapi', '数据备份备份表', '', 'system/backup/backup', 'PUT', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'backup', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(669, 70, 'adminapi', '数据库备份记录', '', 'system/backup/file_list', 'GET', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'fileList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(670, 70, 'adminapi', '删除数据库备份记录', '', 'system/backup/del_file', 'DELETE', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'delFile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(671, 70, 'adminapi', '导入数据库备份记录', '', 'system/backup/import', 'POST', 'app/adminapi/controller/v1/system/SystemDatabackup.php', 'import', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(672, 71, 'adminapi', '清除用户数据', '', 'system/clear/<type>', 'GET', 'app/adminapi/controller/v1/system/SystemClearData.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(673, 71, 'adminapi', '清除系统缓存', '', 'system/refresh_cache/cache', 'GET', 'app/adminapi/controller/v1/system/Clear.php', 'refresh_cache', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(674, 71, 'adminapi', '清除系统日志', '', 'system/refresh_cache/log', 'GET', 'app/adminapi/controller/v1/system/Clear.php', 'delete_log', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(675, 71, 'adminapi', '域名替换', '', 'system/replace_site_url', 'POST', 'app/adminapi/controller/v1/system/SystemClearData.php', 'replaceSiteUrl', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(676, 71, 'adminapi', '获取APP版本列表', '', 'system/version_list', 'GET', 'app/adminapi/controller/v1/system/AppVersion.php', 'list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(677, 71, 'adminapi', '添加版本', '', 'system/version_crate/<id>', 'GET', 'app/adminapi/controller/v1/system/AppVersion.php', 'crate', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(678, 71, 'adminapi', '添加版本', '', 'system/version_save', 'POST', 'app/adminapi/controller/v1/system/AppVersion.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(679, 72, 'adminapi', '升级状态', '', 'system/upgrade_status', 'GET', 'app/adminapi/controller/UpgradeController.php', 'upgradeStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(680, 72, 'adminapi', '升级包列表', '', 'system/upgrade/list', 'GET', 'app/adminapi/controller/UpgradeController.php', 'upgradeList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(681, 72, 'adminapi', '可升级包列表', '', 'system/upgradeable/list', 'GET', 'app/adminapi/controller/UpgradeController.php', 'upgradeableList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(682, 72, 'adminapi', '升级协议', '', 'system/upgrade/agreement', 'GET', 'app/adminapi/controller/UpgradeController.php', 'agreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(683, 72, 'adminapi', '升级包下载', '', 'system/upgrade_download/<package_key>', 'POST', 'app/adminapi/controller/UpgradeController.php', 'download', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(684, 72, 'adminapi', '升级进度', '', 'system/upgrade_progress', 'GET', 'app/adminapi/controller/UpgradeController.php', 'progress', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(685, 72, 'adminapi', '升级记录', '', 'system/upgrade_log/list', 'GET', 'app/adminapi/controller/UpgradeController.php', 'upgradeLogList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(686, 72, 'adminapi', '导出备份', '', 'system/upgrade_export/<id>/<type>', 'GET', 'app/adminapi/controller/UpgradeController.php', 'export', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(687, 72, 'adminapi', '文件管理登录', '', 'system/file/login', 'POST', 'app/adminapi/controller/v1/system/SystemFile.php', 'login', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(688, 73, 'adminapi', '定时任务列表', '', 'system/crontab/list', 'GET', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'getTimerList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(689, 73, 'adminapi', '定时任务类型', '', 'system/crontab/mark', 'GET', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'getMarkList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(690, 73, 'adminapi', '定时任务详情', '', 'system/crontab/info/<id>', 'GET', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'getTimerInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(691, 73, 'adminapi', '定时任务添加编辑', '', 'system/crontab/save', 'POST', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'saveTimer', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(692, 73, 'adminapi', '删除定时任务', '', 'system/crontab/del/<id>', 'DELETE', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'delTimer', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(693, 73, 'adminapi', '定时任务是否开启开关', '', 'system/crontab/set_open/<id>/<is_open>', 'GET', 'app/adminapi/controller/v1/system/SystemCrontab.php', 'setTimerStatus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(694, 74, 'adminapi', '同步路由', '', 'system/route/sync_route/<appName?>', 'GET', 'app/adminapi/controller/v1/setting/SystemRoute.php', 'syncRoute', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(695, 74, 'adminapi', '获取路由tree', '', 'system/route/tree', 'GET', 'app/adminapi/controller/v1/setting/SystemRoute.php', 'tree', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(696, 74, 'adminapi', '删除路由权限', '', 'system/route/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemRoute.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(697, 74, 'adminapi', '查看路由权限', '', 'system/route/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemRoute.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(698, 74, 'adminapi', '保存路由权限', '', 'system/route/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemRoute.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(699, 74, 'adminapi', '获取路由分类列表', '', 'system/route_cate', 'GET', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(700, 74, 'adminapi', '保存路由分类', '', 'system/route_cate', 'POST', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(701, 74, 'adminapi', '获取创建路由分类表单', '', 'system/route_cate/create', 'GET', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(702, 74, 'adminapi', '获取修改路由分类表单', '', 'system/route_cate/<id>/edit', 'GET', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(703, 74, 'adminapi', '修改路由分类', '', 'system/route_cate/<id>', 'PUT', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(704, 74, 'adminapi', '删除路由分类', '', 'system/route_cate/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemRouteCate.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(705, 75, 'adminapi', '保存CRUD修改的文件', '', 'system/crud/save_file/<id>', 'POST', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'savefile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(706, 75, 'adminapi', '获取CRUD配置', '', 'system/crud/config/<tableName>', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'getRouteList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(707, 75, 'adminapi', '下载生成的文件', '', 'system/crud/download/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'download', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(708, 75, 'adminapi', '获取CRUD列表', '', 'system/crud/column_type', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'columnType', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(709, 75, 'adminapi', '获取菜单TREE形数据', '', 'system/crud/menus', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'getMenus', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(710, 75, 'adminapi', '获取CRUD文件存放', '', 'system/crud/file_path', 'POST', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'getFilePath', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(711, 75, 'adminapi', '删除CRUD', '', 'system/crud/<id>', 'DELETE', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(712, 75, 'adminapi', '查看CRUD', '', 'system/crud/<id>', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(713, 75, 'adminapi', '获取CRUD列表', '', 'system/crud', 'GET', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(714, 75, 'adminapi', '保存生成CRUD', '', 'system/crud', 'POST', 'app/adminapi/controller/v1/setting/SystemCrud.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(715, 76, 'adminapi', '打开目录', '', 'system/file/opendir', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'opendir', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(716, 76, 'adminapi', '读取文件', '', 'system/file/openfile', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'openfile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(717, 76, 'adminapi', '保存文件', '', 'system/file/savefile', 'POST', 'app/adminapi/controller/v1/system/SystemFile.php', 'savefile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(718, 76, 'adminapi', '创建文件夹', '', 'system/file/createFolder', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'createFolder', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(719, 76, 'adminapi', '创建文件', '', 'system/file/createFile', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'createFile', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(720, 76, 'adminapi', '删除文件夹', '', 'system/file/delFolder', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'delFolder', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(721, 76, 'adminapi', '重命名文件夹', '', 'system/file/rename', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'rename', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(722, 76, 'adminapi', '目录文件备注表单', '', 'system/file/mark', 'GET', 'app/adminapi/controller/v1/system/SystemFile.php', 'fileMark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(723, 76, 'adminapi', '目录文件备注保存', '', 'system/file/mark/save', 'POST', 'app/adminapi/controller/v1/system/SystemFile.php', 'fileMarkSave', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(724, 78, 'adminapi', '获取用户列表', '', 'user/user', 'GET', 'app/adminapi/controller/v1/user/User.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(725, 78, 'adminapi', '保存用户', '', 'user/user', 'POST', 'app/adminapi/controller/v1/user/User.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(726, 78, 'adminapi', '获取用户表单', '', 'user/user/create', 'GET', 'app/adminapi/controller/v1/user/User.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(727, 78, 'adminapi', '获取修改用户表单', '', 'user/user/<id>/edit', 'GET', 'app/adminapi/controller/v1/user/User.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(728, 78, 'adminapi', '获取用户详情', '', 'user/user/<id>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(729, 78, 'adminapi', '修改用户', '', 'user/user/<id>', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(730, 78, 'adminapi', '删除用户', '', 'user/user/<id>', 'DELETE', 'app/adminapi/controller/v1/user/User.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(731, 78, 'adminapi', '添加用户', '', 'user/user/save', 'POST', 'app/adminapi/controller/v1/user/User.php', 'save_info', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(732, 78, 'adminapi', '同步微信用户', '', 'user/user/syncUsers', 'GET', 'app/adminapi/controller/v1/user/User.php', 'syncWechatUsers', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(733, 78, 'adminapi', '添加编辑用户信息时候的信息', '', 'user/user/user_save_info/<uid>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'userSaveInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(734, 78, 'adminapi', '赠送用户等级', '', 'user/give_level/<id>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'give_level', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(735, 78, 'adminapi', '执行赠送用户等级', '', 'user/save_give_level/<id>', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'save_give_level', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(736, 78, 'adminapi', '赠送付费会员时长', '', 'user/give_level_time/<id>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'give_level_time', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(737, 78, 'adminapi', '执行赠送付费会员时长', '', 'user/save_give_level_time/<id>', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'save_give_level_time', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(738, 78, 'adminapi', '清除用户等级', '', 'user/del_level/<id>', 'DELETE', 'app/adminapi/controller/v1/user/User.php', 'del_level', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(739, 78, 'adminapi', '修改积分余额表单', '', 'user/edit_other/<id>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'edit_other', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(740, 78, 'adminapi', '修改积分余额', '', 'user/update_other/<id>', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'update_other', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(741, 78, 'adminapi', '修改用户状态', '', 'user/set_status/<status>/<id>', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(742, 78, 'adminapi', '获取指定用户的信息', '', 'user/one_info/<id>', 'GET', 'app/adminapi/controller/v1/user/User.php', 'oneUserInfo', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(743, 78, 'adminapi', '用户分组表单', '', 'user/set_group', 'POST', 'app/adminapi/controller/v1/user/User.php', 'set_group', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(744, 78, 'adminapi', '设置用户分组', '', 'user/save_set_group', 'PUT', 'app/adminapi/controller/v1/user/User.php', 'save_set_group', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(745, 78, 'adminapi', '设置用户标签', '', 'user/set_label', 'POST', 'app/adminapi/controller/v1/user/User.php', 'set_label', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(746, 79, 'adminapi', '添加用户等级表单', '', 'user/user_level/create', 'GET', 'app/adminapi/controller/v1/user/UserLevel.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(747, 79, 'adminapi', '添加或修改用户等级', '', 'user/user_level', 'POST', 'app/adminapi/controller/v1/user/UserLevel.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(748, 79, 'adminapi', '用户等级详情', '', 'user/user_level/read/<id>', 'GET', 'app/adminapi/controller/v1/user/UserLevel.php', 'read', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(749, 79, 'adminapi', '获取系统设置的用户等级列表', '', 'user/user_level/vip_list', 'GET', 'app/adminapi/controller/v1/user/UserLevel.php', 'get_system_vip_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(750, 79, 'adminapi', '删除用户等级', '', 'user/user_level/delete/<id>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(751, 79, 'adminapi', '设置用户等级上下架', '', 'user/user_level/set_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'set_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(752, 79, 'adminapi', '用户等级列表快速编辑', '', 'user/user_level/set_value/<id>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'set_value', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(753, 79, 'adminapi', '用户等级任务列表', '', 'user/user_level/task/<level_id>', 'GET', 'app/adminapi/controller/v1/user/UserLevel.php', 'get_task_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(754, 79, 'adminapi', '快速编辑用户等级任务', '', 'user/user_level/set_task/<id>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'set_task_value', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(755, 79, 'adminapi', '设置用户等级任务显示|隐藏', '', 'user/user_level/set_task_show/<id>/<is_show>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'set_task_show', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(756, 79, 'adminapi', '设置用户等级任务是否务必达成', '', 'user/user_level/set_task_must/<id>/<is_must>', 'PUT', 'app/adminapi/controller/v1/user/UserLevel.php', 'set_task_must', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(757, 79, 'adminapi', '添加用户等级任务表单', '', 'user/user_level/create_task', 'GET', 'app/adminapi/controller/v1/user/UserLevel.php', 'create_task', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(758, 79, 'adminapi', '保存或修改用户等级任务', '', 'user/user_level/save_task', 'POST', 'app/adminapi/controller/v1/user/UserLevel.php', 'save_task', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(759, 79, 'adminapi', '删除用户等级任务', '', 'user/user_level/delete_task/<id>', 'DELETE', 'app/adminapi/controller/v1/user/UserLevel.php', 'delete_task', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(760, 80, 'adminapi', '获取用户分组列表', '', 'user/user_group/list', 'GET', 'app/adminapi/controller/v1/user/UserGroup.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(761, 80, 'adminapi', '添加修改分组表单', '', 'user/user_group/add/<id>', 'GET', 'app/adminapi/controller/v1/user/UserGroup.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(762, 80, 'adminapi', '保存分组表单数据', '', 'user/user_group/save', 'POST', 'app/adminapi/controller/v1/user/UserGroup.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(763, 80, 'adminapi', '删除用户分组数据', '', 'user/user_group/del/<id>', 'DELETE', 'app/adminapi/controller/v1/user/UserGroup.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(764, 81, 'adminapi', '用户标签列表', '', 'user/user_label', 'GET', 'app/adminapi/controller/v1/user/UserLabel.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(765, 81, 'adminapi', '添加或修改用户标签表单', '', 'user/user_label/add/<id>', 'GET', 'app/adminapi/controller/v1/user/UserLabel.php', 'add', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(766, 81, 'adminapi', '添加或修改用户标签', '', 'user/user_label/save', 'POST', 'app/adminapi/controller/v1/user/UserLabel.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(767, 81, 'adminapi', '删除用户标签', '', 'user/user_label/del/<id>', 'DELETE', 'app/adminapi/controller/v1/user/UserLabel.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(768, 81, 'adminapi', '获取用户标签', '', 'user/label/<uid>', 'GET', 'app/adminapi/controller/v1/user/UserLabel.php', 'getUserLabel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(769, 81, 'adminapi', '设置和取消用户标签', '', 'user/label/<uid>', 'POST', 'app/adminapi/controller/v1/user/UserLabel.php', 'setUserLabel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(770, 81, 'adminapi', '保存用户标签', '', 'user/save_set_label', 'PUT', 'app/adminapi/controller/v1/user/user.php', 'save_set_label', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(771, 81, 'adminapi', '获取标签分类', '', 'user/user_label_cate', 'GET', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(772, 81, 'adminapi', '保存标签分类', '', 'user/user_label_cate', 'POST', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(773, 81, 'adminapi', '获取标签分类表单', '', 'user/user_label_cate/create', 'GET', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'create', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(774, 81, 'adminapi', '获取修改标签分类表单', '', 'user/user_label_cate/<id>/edit', 'GET', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'edit', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(775, 81, 'adminapi', '修改标签分类', '', 'user/user_label_cate/<id>', 'PUT', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'update', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(776, 81, 'adminapi', '删除标签分类', '', 'user/user_label_cate/<id>', 'DELETE', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(777, 81, 'adminapi', '获取用户标签分类全部', '', 'user/user_label_cate/all', 'GET', 'app/adminapi/controller/v1/user/UserLabelCate.php', 'getAll', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(778, 81, 'adminapi', '用户标签(分类)树形列表', '', 'user/user_tree_label', 'GET', 'app/adminapi/controller/v1/user/UserLabel.php', 'tree_list', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(779, 82, 'adminapi', '会员卡批次列表', '', 'user/member_batch/index', 'GET', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(780, 82, 'adminapi', '添加会员卡批次', '', 'user/member_batch/save/<id>', 'POST', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(781, 82, 'adminapi', '会员卡列表', '', 'user/member_card/index/<card_batch_id>', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'index', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(782, 82, 'adminapi', '会员卡修改状态', '', 'user/member_card/set_status', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'set_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(783, 82, 'adminapi', '会员卡批次快速修改', '', 'user/member_batch/set_value/<id>', 'GET', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'set_value', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(784, 82, 'adminapi', '会员类型列表', '', 'user/member/ship', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'member_ship', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(785, 82, 'adminapi', '会员类型删除', '', 'user/member_ship/delete/<id>', 'DELETE', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'delete', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(786, 82, 'adminapi', '会员类型修改状态', '', 'user/member_ship/set_ship_status', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'set_ship_status', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(787, 82, 'adminapi', '会员卡类型编辑', '', 'user/member_ship/save/<id>', 'POST', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'ship_save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(788, 82, 'adminapi', '兑换会员卡二维码', '', 'user/member_scan', 'GET', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'member_scan', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(789, 82, 'adminapi', '会员记录', '', 'user/member/record', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'member_record', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(790, 82, 'adminapi', '会员权益列表', '', 'user/member/right', 'GET', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'member_right', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(791, 82, 'adminapi', '会员权益修改', '', 'user/member_right/save/<id>', 'POST', 'app/adminapi/controller/v1/user/member/MemberCard.php', 'right_save', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(792, 82, 'adminapi', '会员协议', '', 'user/member_agreement/save/<id>', 'POST', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'save_member_agreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(793, 82, 'adminapi', '获取会员协议', '', 'user/member/agreement', 'GET', 'app/adminapi/controller/v1/user/member/MemberCardBatch.php', 'getAgreement', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(794, 83, 'adminapi', '用户注销列表', '', 'user/cancel_list', 'GET', 'app/adminapi/controller/v1/user/UserCancel.php', 'getCancelList', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(795, 83, 'adminapi', '注销列表备注', '', 'user/cancel/set_mark', 'POST', 'app/adminapi/controller/v1/user/UserCancel.php', 'setMark', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(796, 83, 'adminapi', '同意注销', '', 'user/cancel/agree/<id>', 'GET', 'app/adminapi/controller/v1/user/UserCancel.php', 'agreeCancel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(797, 83, 'adminapi', '拒绝注销', '', 'user/cancel/refuse/<id>', 'GET', 'app/adminapi/controller/v1/user/UserCancel.php', 'refuseCancel', '', '', '', '', '', 0, '2023-04-26 18:48:04', NULL),
|
||
(804, 85, 'outapi', '登录获取token', '', 'access_token', 'POST', 'app/outapi/controller/Login.php', 'getToken', '[{\"attribute\":\"appid\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u8d26\\\\u53f7\",\"id\":\"row_30\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"appsecret\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5bc6\\\\u94a5\",\"id\":\"row_37\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_44\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u63d0\\\\u793a\\\\u6587\\\\u5b57\",\"id\":\"row_51\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u6570\\\\u636e\",\"id\":\"row_58\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"appid\": \"demo\",\n \"appsecret\": \"XXWaCnCZi8b6jcSWzkBcbCKKpkpNPrKy\"\n}', '{\n \"status\": 200,\n \"msg\": \"获取成功\",\n \"data\": {\n \"access_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ0ZXN0LnByby53dWh0Lm5ldCIsImF1ZCI6InRlc3QucHJvLnd1aHQubmV0IiwiaWF0IjoxNjU1ODY4MjczLCJuYmYiOjE2NTU4NjgyNzMsImV4cCI6MTY1NTk1NDY3MywianRpIjp7ImlkIjo3LCJ0eXBlIjoib3V0In19.b7pP_5AVbnR8-2lpdV4bqsSoX1XHiKBEK1EFGZOmKsQ\",\n \"exp_time\": 1655954673,\n \"auth_info\": {\n \"id\": 7,\n \"appid\": \"demo\",\n \"title\": \"测试账号\"\n }\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(805, 85, 'outapi', '刷新token', '', 'refresh_token', 'POST', 'app/outapi/controller/Login.php', 'refreshToken', '[{\"attribute\":\"access_token\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5f53\\\\u524dtoken\",\"id\":\"row_180\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_187\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u63d0\\\\u793a\\\\u6587\\\\u5b57\",\"id\":\"row_194\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u6570\\\\u636e\",\"id\":\"row_201\",\"_X_ROW_CHILD\":[{\"attribute\":\"access_token\",\"type\":\"string\",\"trip\":\"token\",\"id\":1665987416971,\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_time\",\"type\":\"number\",\"trip\":\"\\\\u5931\\\\u6548\\\\u65f6\\\\u95f4\",\"id\":1665987417624,\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"access_token\",\"type\":\"string\",\"trip\":\"token\",\"id\":1665987416971,\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_time\",\"type\":\"number\",\"trip\":\"\\\\u5931\\\\u6548\\\\u65f6\\\\u95f4\",\"id\":1665987417624,\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"access_token\",\"type\":\"string\",\"trip\":\"token\",\"id\":\"1665987416971\",\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_time\",\"type\":\"number\",\"trip\":\"\\\\u5931\\\\u6548\\\\u65f6\\\\u95f4\",\"id\":\"1665987417624\",\"parentId\":\"row_201\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"access_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ0ZXN0LnByby53dWh0Lm5ldCIsImF1ZCI6InRlc3QucHJvLnd1aHQubmV0IiwiaWF0IjoxNjU1ODg4OTg2LCJuYmYiOjE2NTU4ODg5ODYsImV4cCI6MTY1NTk3NTM4NiwianRpIjp7ImlkIjo3LCJ0eXBlIjoib3V0In19.44Hka0RdwTWPDX70bExsfD1LvZ_jCZYMroXBfbrG-kY\"\n}', '{\n \"status\": 200,\n \"msg\": \"获取成功\",\n \"data\": {\n \"access_token\": \"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJ0ZXN0LnByby53dWh0Lm5ldCIsImF1ZCI6InRlc3QucHJvLnd1aHQubmV0IiwiaWF0IjoxNjU1ODc5Njc3LCJuYmYiOjE2NTU4Nzk2NzcsImV4cCI6MTY1NTk2NjA3NywianRpIjp7ImlkIjo3LCJ0eXBlIjoib3V0In19.ICOefCZl-dZ8xU40PtS7i3hB-N268Ll9su3LgqM7LKU\",\n \"exp_time\": 1655966077\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(806, 86, 'outapi', '分类列表', '', 'category/list', 'GET', 'app/outapi/controller/StoreCategory.php', 'index', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1127\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1134\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_1141\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992375920,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665992376190,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":1665992376496,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":1665992376925,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992377307,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665992377668,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1665992412031,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1665992443242,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992375920,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665992376190,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":1665992376496,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":1665992376925,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992377307,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665992377668,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1665992412031,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1665992443242,\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":\"1665992375920\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"1665992376190\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":\"1665992376496\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":\"1665992376925\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":\"1665992377307\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":\"1665992377668\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":\"1665992412031\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":\"1665992443242\",\"parentId\":\"row_1141\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/category/list', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"id\": 11,\n \"cate_name\": \"分类12\",\n \"pid\": 9,\n \"pic\": \"http://dummyimage.com/400x400\",\n \"big_pic\": \"http://dummyimage.com/400x400\",\n \"sort\": 54,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 14:24:14\"\n },\n {\n \"id\": 4,\n \"cate_name\": \"分类2\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 6,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 10:46:45\"\n },\n {\n \"id\": 5,\n \"cate_name\": \"分类1\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 6,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 10:59:26\"\n },\n {\n \"id\": 6,\n \"cate_name\": \"分类3\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 6,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 11:01:34\"\n },\n {\n \"id\": 7,\n \"cate_name\": \"分类4\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 6,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 11:05:10\"\n },\n {\n \"id\": 9,\n \"cate_name\": \"分类12342\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 6,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 14:15:48\"\n },\n {\n \"id\": 10,\n \"cate_name\": \"分类10\",\n \"pid\": 0,\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/023a0538d05fe3694767bd80dc5c8433.jpeg\",\n \"big_pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/023a0538d05fe3694767bd80dc5c8433.jpeg\",\n \"sort\": 1,\n \"is_show\": 1,\n \"add_time\": \"2022-07-20 14:23:09\"\n },\n {\n \"id\": 1,\n \"cate_name\": \"办公用品\",\n \"pid\": 0,\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/94c08b45581c695f1f76fcc25a0271ec.jpg\",\n \"big_pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/94c08b45581c695f1f76fcc25a0271ec.jpg\",\n \"sort\": 0,\n \"is_show\": 1,\n \"add_time\": \"2022-07-19 15:15:01\"\n },\n {\n \"id\": 2,\n \"cate_name\": \"办公用品1\",\n \"pid\": 1,\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/94c08b45581c695f1f76fcc25a0271ec.jpg\",\n \"big_pic\": \"https://demo.crmeb.comuploads/attach/2022/07/20220719/94c08b45581c695f1f76fcc25a0271ec.jpg\",\n \"sort\": 0,\n \"is_show\": 1,\n \"add_time\": \"2022-07-19 15:15:51\"\n },\n {\n \"id\": 3,\n \"cate_name\": \"测试\",\n \"pid\": 0,\n \"pic\": \"\",\n \"big_pic\": \"\",\n \"sort\": 0,\n \"is_show\": 1,\n \"add_time\": \"2022-07-19 17:44:47\"\n }\n ]\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(807, 86, 'outapi', '获取分类', '', 'category/<id>', 'GET', 'app/outapi/controller/StoreCategory.php', 'read', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1199\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1206\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_1213\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992589941,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665992590125,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":1665992590473,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":1665992590634,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992590791,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992590969,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001\",\"id\":1665992591140,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992589941,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665992590125,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":1665992590473,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":1665992590634,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992590791,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":1665992590969,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001\",\"id\":1665992591140,\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":\"1665992589941\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"1665992590125\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236ID\",\"id\":\"1665992590473\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807\",\"id\":\"1665992590634\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":\"1665992590791\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe\",\"id\":\"1665992590969\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001\",\"id\":\"1665992591140\",\"parentId\":\"row_1213\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/category/1', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"id\": 2,\n \"cate_name\": \"厨房电器\",\n \"pid\": 0,\n \"pic\": \"http://dummyimage.com/180x180.png\",\n \"big_pic\": \"http://dummyimage.com/486x340.png\",\n \"sort\": 6,\n \"is_show\": 0\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(808, 86, 'outapi', '修改分类', '', 'category/<id>', 'PUT', 'app/outapi/controller/StoreCategory.php', 'update', '[{\"attribute\":\"pid\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7236ID\",\"id\":\"row_981\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"row_988\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807 \\\\u5efa\\\\u8bae\\\\u5206\\\\u8fa8\\\\u7387(180*180)\",\"id\":\"row_995\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe \\\\u5efa\\\\u8bae\\\\u5206\\\\u8fa8\\\\u7387(468*340)\",\"id\":\"row_1002\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u6392\\\\u5e8f \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":\"row_1009\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 0\\\\u9690\\\\u85cf 1\\\\u663e\\\\u793a\",\"id\":\"row_1016\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1092\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1099\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/category/1\n{\n \"pid\": 0,\n \"cate_name\": \"数码电器\",\n \"pic\": \"http://dummyimage.com/180x180.png\",\n \"big_pic\": \"http://dummyimage.com/468x340.png\",\n \"sort\": 100,\n \"is_show\": 1\n}', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(809, 86, 'outapi', '删除分类', '', 'category/<id>', 'DELETE', 'app/outapi/controller/StoreCategory.php', 'delete', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/category/1', '{\n \"status\": 200,\n \"msg\": \"删除成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(810, 86, 'outapi', '新增分类', '', 'category', 'POST', 'app/outapi/controller/StoreCategory.php', 'save', '[{\"attribute\":\"pid\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7236ID\",\"id\":\"row_981\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"row_988\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u56fe\\\\u6807 \\\\u5efa\\\\u8bae\\\\u5206\\\\u8fa8\\\\u7387(180*180)\",\"id\":\"row_995\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"big_pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7b\\\\u5927\\\\u56fe \\\\u5efa\\\\u8bae\\\\u5206\\\\u8fa8\\\\u7387(468*340)\",\"id\":\"row_1002\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u6392\\\\u5e8f \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":\"row_1009\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 0\\\\u9690\\\\u85cf 1\\\\u663e\\\\u793a\",\"id\":\"row_1016\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1023\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1030\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_1037\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992074114,\"parentId\":\"row_1037\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":1665992074114,\"parentId\":\"row_1037\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":\"1665992074114\",\"parentId\":\"row_1037\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"pid\": 0,\n \"cate_name\": \"家用电器\",\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/01/15/fa4271dd28f5230084515d2a99c76276.jpg\",\n \"big_pic\": \"https://demo.crmeb.comuploads/attach/2020/10/20201013/ac3afff89b11579477fec875f215422a.png\",\n \"sort\": 0,\n \"is_show\": 1\n}', '{\n \"status\": 200,\n \"msg\": \"保存成功\",\n \"data\": {\n \"id\": 11\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(811, 86, 'outapi', '修改分类状态', '', 'category/set_show/<id>/<is_show>', 'PUT', 'app/outapi/controller/StoreCategory.php', 'set_show', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/category/set_show/1/1', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(812, 87, 'outapi', '商品列表', '', 'product/list', 'GET', 'app/outapi/controller/StoreProduct.php', 'index', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5206\\\\u9875\",\"id\":\"row_1734\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u6761\\\\u6570\",\"id\":\"row_1741\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5206\\\\u7c7bID\",\"id\":\"row_1748\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\" \\\\u5546\\\\u54c1\\\\u540d\\\\u79f0|\\\\u7b80\\\\u4ecb|\\\\u5173\\\\u952e\\\\u5b57\",\"id\":\"row_1755\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u72b6\\\\u6001 1\\\\u51fa\\\\u552e\\\\u4e2d(\\\\u9ed8\\\\u8ba4) 2\\\\u4ed3\\\\u5e93\\\\u4e2d 4\\\\u5df2\\\\u552e\\\\u7f44 5\\\\u5e93\\\\u5b58\\\\u8b66\\\\u6212 6\\\\u56de\\\\u6536\\\\u7ad9\",\"id\":\"row_1762\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1802\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1809\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_1816\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":1665995681491,\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665995682064,\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":1665995681491,\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665995682064,\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":\"1665995681491\",\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995706158,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665995707050,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665995707224,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665995735848,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665995736143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665995736347,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665995736504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665995736691,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665995736851,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665995736997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665995737157,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665995737331,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665995737504,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665995737677,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665995737838,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665995737997,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995738143,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665995738318,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665995738490,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665995738664,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665995977189,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665995977396,\"parentId\":1665995681491,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":\"1665995706158\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":\"1665995707050\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":\"1665995707224\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1665995735848\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":\"1665995736143\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":\"1665995736347\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":\"1665995736504\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":\"1665995736691\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":\"1665995736851\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"1665995736997\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":\"1665995737157\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":\"1665995737331\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":\"1665995737504\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":\"1665995737677\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":\"1665995737838\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":\"1665995737997\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":\"1665995738143\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":\"1665995738318\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":\"1665995738490\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":\"1665995738664\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":\"1665995977189\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"1665995977396\",\"parentId\":\"1665995681491\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1665995682064\",\"parentId\":\"row_1816\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/product/list?cate_id=1&store_name=iphone&type=1&page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"count\": 8,\n \"list\": [\n {\n \"id\": 78,\n \"image\": \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg\"\n ],\n \"store_name\": \"美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107\",\n \"store_info\": \"美的xxxxx\",\n \"keyword\": \"电磁炉 美的\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 4,\n 8\n ],\n \"price\": \"100.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"80.00\",\n \"postage\": \"9.90\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"90.00\",\n \"spec_type\": 1,\n \"spu\": \"9752575478640\",\n \"freight\": 2,\n \"description\": \"<p>详情</p>\",\n \"cate_name\": \"精品发卡,品牌电脑\"\n },\n {\n \"id\": 38,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\"\n ],\n \"store_name\": \"MacBook\",\n \"store_info\": \"简介\",\n \"keyword\": \"关键字\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 8,\n 6\n ],\n \"price\": \"100.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"80.00\",\n \"postage\": \"9.90\",\n \"unit_name\": \"试试\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"90.00\",\n \"spec_type\": 1,\n \"spu\": \"1005310218287\",\n \"freight\": 2,\n \"description\": \"<p>详情</p>\",\n \"cate_name\": \"复古汉风,品牌电脑\"\n },\n {\n \"id\": 6,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/4aed387bf4eead2237150c9d4b747ae5.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/4aed387bf4eead2237150c9d4b747ae5.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1233ae4abe69c7786bb925770957da97.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/83d99e262ff101949c923ce11ed8caff.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/12df3f2ff9a0e17b63bf385cd3afbe21.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/5ba6532cba9c88bba37ef95cfc1768bf.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/c815678a906c85ecd7f6535c8e5a29d3.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/63eae522f862cb46837716813aa30a57.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d380c63e9f262c44baf384327dbd2fd.jpg\"\n ],\n \"store_name\": \"联想笔记本电脑 拯救者R9000P 16英寸高性能电竞游戏本(标压 8核 R7-5800H 16G 512G RTX3060 2.5k屏 165Hz)\",\n \"store_info\": \"联想笔记本电脑 拯救者R9000P 16英寸高性能电竞游戏本(标压 8核 R7-5800H 16G 512G RTX3060 2.5k屏 165Hz)\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 8\n ],\n \"price\": \"7499.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"7999.00\",\n \"spec_type\": 1,\n \"spu\": \"5052575330086\",\n \"freight\": 3,\n \"description\": \"<p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/98abb7d4978f5eaaf6a0f8d5d3d4e4b0.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/bd0e0b5bd41757e67253c77db1ecc77b.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/d1742d71ce3d2762c05bc009fe962424.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/ca668dce1a88f2575dc699a465b43ae8.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/c393933ade163e18bb39d06353f7c2db.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/6e4a0e6324887dca6d113140d7c6aa9d.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/0be2a700a82db28077b711246fb4bee0.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/29bb8accab6457845d54d08fd6a31ffe.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/53930c8b0ffd39fe88ef6569ae1bff12.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/79960a5470ac3c973a16f6d6ff0fa89d.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/3b672655a314f28d3032bf8e4c6784af.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/22d39121539091304bdd79b9db21662b.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/60d04e5257edfac095c2415d1581467d.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/5d75c49c01f10e1ed1ef9f741c51e373.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/06789f9c5e17aeb10a4e4c682dd0aa17.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/6cb7e67725adfc232e4b6c6b16a33923.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/1795b26cc66ea2ca5cdd29bdf6d01a87.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/05b9c4a48082a14e2338ec6de96cb672.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/17adc7995c38d1eaae3d4f435d700e8c.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/7ab62c00dc84ba6538785173efab5956.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/a0c6656a8b7207f61356fbbeeed96d9b.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/f7fff34cc80be421680cabe415389f5d.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/e820d8d73c00e8495034e4d63e0a99d5.jpg\\\"/></p>\",\n \"cate_name\": \"品牌电脑\"\n },\n {\n \"id\": 5,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/a061b1ff8e005f298afe8dcfd2f5a3ae.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/a061b1ff8e005f298afe8dcfd2f5a3ae.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/2143b371732f78da6a663a9abfca1800.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/32e1279282bbfa7907e872cf98ef8483.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/0b1b5b8848bb695201bfd8b540ba8106.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/5accda17811a26ad0f5321a95e51af45.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/9be7d08e152e5d645b7574e648550674.jpg\"\n ],\n \"store_name\": \"Apple MacBook Air 13.3 新款8核M1芯片(7核图形处理器) 8G 256G SSD 银色 笔记本电脑 MGN93CH/A\",\n \"store_info\": \"Apple MacBook Air 13.3 新款8核M1芯片(7核图形处理器) 8G 256G SSD 银色 笔记本电脑 MGN93CH/A\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 8\n ],\n \"price\": \"7999.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"9999.00\",\n \"spec_type\": 1,\n \"spu\": \"5798545545444\",\n \"freight\": 3,\n \"description\": \"<div cssurl=\\\"//sku-market-gw.jd.com/css/pc/100016616050.css?t=1631679648805\\\"></div><div skucode=\\\"100010\\\"></div><div style=\\\"max-max-width:100%;margin:0 auto;\\\">\\n<img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/233184340694921322657ab08c26dbc4.jpg\\\"/> <img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/30d890a4fe41cb41d4c68cd95673c003.jpg\\\"/> <img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/ca9a49eeece35d262af059877fa5934a.jpg\\\"/> <img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/cb0267f8f13a7ce6b062878223d794d3.jpg\\\"/> \\n</div>\",\n \"cate_name\": \"品牌电脑\"\n },\n {\n \"id\": 4,\n \"image\": \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/82d606341f7694541ccd786c5f4ef461.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6485b464e22a33656bd9151bfe998534.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/11f022643e408b60fbe421961524820f.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/88eaa3d846d509b9243bbf1afc0720e0.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/ced54cb7408288814927a4145fafb00d.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/2d4b098c4f91599e986039531303b737.jpg\"\n ],\n \"store_name\": \"美的(Midea)电磁炉 家用2200W大功率 电磁灶 恒匀火 智能断电 旋控调节火力 C22-RX22H0107\",\n \"store_info\": \"美的(Midea)电磁炉 家用2200W大功率 电磁灶 恒匀火 智能断电 旋控调节火力 C22-RX22H0107\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 2\n ],\n \"price\": \"139.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"169.00\",\n \"spec_type\": 1,\n \"spu\": \"5451519904291\",\n \"freight\": 3,\n \"description\": \"<p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/ee901a62b7e06fed20ff82f9ce4a36cb.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/3fd08c0e8f163bc495383db405393be9.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/5e36c7099b0dca400ae68694d1bc828c.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/ed6d96841055b1c710d9fc6e1a8cbc42.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/2efdcff6b9a70596933c011464a2d92d.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/5e65a9c23649825dde5dfeb9dd1a87f1.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/d6dce96d64c9d4d94e4951bb6a723039.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/389d36bc44d8e14cb52342114f458ddb.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/b0ac23c2b2fee54a9aa921415ab998c1.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/7d9217259bce4a13a26a8d9add68c844.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/74e6104a13718e94e95a6c25966441df.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/bd0a275809a28126efadde08ecb19e38.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/f52b225023912b5b2c856c61db23ad7f.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/be43757c611cb7f262f809f3b5c2fa0b.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/f758bba9892f5c663a518072ace46791.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/a18f14dfbd7e58378f52191ce467a5ff.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/d53b161afea73ea3bc2369f3f9d0a5e7.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/19aa1702fd261ff8f74cb20f74522cb4.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/7f918179f259f96fb7af5dfa06abe0cd.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/87420e8fb04c5f22f4194a3b192e291e.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/414826cbbc8dd240f9e4c8f89c61db74.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/a55422aa3f22e886c5f3793799162abb.jpg\\\"/></p>\",\n \"cate_name\": \"厨房电器\"\n },\n {\n \"id\": 3,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/fa4271dd28f5230084515d2a99c76276.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/fa4271dd28f5230084515d2a99c76276.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/e390d8846c06a3a937474e9343cb3032.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/8640ba9d650c956144a7bc39ab7f8b41.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/809a070832b8281ef98954ec8289ef04.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/db34423e965a9c2d41e9deb9d0f44f0c.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/ed4f0c94d5080a68ce06eb6d0f6e49bb.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/becfc1764f4bfbef21481aed09f4eaa4.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/78b906305a6f97328c92e7e7fca38aa0.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/b9aea3319f5879ab57085845ffd6dd3a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/66bbb7c46f6958db0c92c4bd5799e18f.jpg\"\n ],\n \"store_name\": \"美的(Midea)变频微波炉家用 微烤一体机 光波烧烤炉 智能解冻 平板易清洁 一机多用 20升 M1-L201B\",\n \"store_info\": \"美的(Midea)变频微波炉家用 微烤一体机 光波烧烤炉 智能解冻 平板易清洁 一机多用 20升 M1-L201B\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 2\n ],\n \"price\": \"479.00\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"549.00\",\n \"spec_type\": 1,\n \"spu\": \"9951100508910\",\n \"freight\": 3,\n \"description\": \"<p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/6bfacf1453de258821970ac2f0906bc6.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/b6c91ad9bfcf3bcdb68c5b0ce90ea288.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/6609020dcf7064c0d9e6fc0cb909a5d7.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/e80d0598fcf8d8e0d06272f18a6fb21c.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/be210c925c7bb8ed0d5b90efae2160e9.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/6fc51fecba39fb47ea95c043e77273c2.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/c9c581bd105e83b0c5c3dc5f81a236a7.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/1445b2657a77dfd78bcc7b8b209e2379.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/809eb8b5cf7d01447b1e8f44fd3d3933.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/44f772b314cc7134aaa849dd9a0c0b66.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/f910f7145a804c28549869ac1ca9a894.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/05ab3be9c19ccb24f6b561e8e889f526.jpg\\\"/></p>\",\n \"cate_name\": \"厨房电器\"\n },\n {\n \"id\": 2,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/12888ac8a6901d99590bd2db242826fc.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/69178316173099ba7b2ba7d4782af528.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/3d58de867a3495dcf59c9941637edf63.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/d90625932b9ed63e504a1fc0b3a4dcaf.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/5c68577bea8716c6fa564f25337a7d2a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/2977f308ef0a7b5c649c1bf9047772d1.jpg\"\n ],\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"store_info\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 4\n ],\n \"price\": \"22.90\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"35.00\",\n \"spec_type\": 1,\n \"spu\": \"4956485689296\",\n \"freight\": 3,\n \"description\": \"<p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/60b7e94e4e6cde85cb6b582fd3c47f38.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/5f3d7e8c0c29b7cec03bfcdc218b9436.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/f8fa99d0d42b2cf70a1f378d74011869.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/c9d134aebb40418f99534d87c1b817ae.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/ee49ab3566b13efba1acded4df55bede.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/e14c70a2f713f40397399268a6949cc6.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/3504c8e5a0e5ec0a246b936e1bce00d0.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/7ea0ec464661cd82f77742e6108a14a3.jpg\\\"/></p><p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/475449a5cb0aae7b787374edc3cc6810.jpg\\\"/></p>\",\n \"cate_name\": \"精品发卡\"\n },\n {\n \"id\": 1,\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/b4dc68ca453c74fda4ffcf385b0d4414.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/76559ec8017c8ac68ea5ecac8145b56c.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/409219640e8cd3b347c306b566785f2d.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/742ec1ba074a8cc3a95839bb230c4244.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/680b6fb7bbbcba59bb8fd015b63413c0.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1294869126a770d8519686eec84c9734.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/c3936b8d5ff3195edda9c3427c18a7d3.jpg\"\n ],\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"store_info\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"keyword\": \"\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 4\n ],\n \"price\": \"15.90\",\n \"is_vip\": 0,\n \"vip_price\": \"0.00\",\n \"ot_price\": \"0.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"15.90\",\n \"spec_type\": 1,\n \"spu\": \"1025349510439\",\n \"freight\": 3,\n \"description\": \"<p><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/c3936b8d5ff3195edda9c3427c18a7d3.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/1294869126a770d8519686eec84c9734.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/680b6fb7bbbcba59bb8fd015b63413c0.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/742ec1ba074a8cc3a95839bb230c4244.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/409219640e8cd3b347c306b566785f2d.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/76559ec8017c8ac68ea5ecac8145b56c.jpg\\\" /><img style=\\\"max-width:100%;height:auto;display:block;margin-top:0;margin-bottom:0;\\\" src=\\\"https://demo.crmeb.comuploads/attach/2022/01/15/b4dc68ca453c74fda4ffcf385b0d4414.jpg\\\" /></p>\",\n \"cate_name\": \"精品发卡\"\n }\n ]\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(813, 87, 'outapi', '新增商品', '', 'product', 'POST', 'app/outapi/controller/StoreProduct.php', 'save', '[{\"attribute\":\"cate_id\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7bID \\\\u81f3\\\\u5c11\\\\u62e5\\\\u6709\\\\u4e00\\\\u4e2a\\\\u5206\\\\u7c7b\",\"id\":\"row_1268\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":\"row_1275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5173\\\\u952e\\\\u5b57\",\"id\":\"row_1282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":\"row_1289\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"row_1296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":\"row_1303\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":\"row_1310\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":\"row_1317\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":\"row_1324\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_limit\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u9650\\\\u8d2d 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":\"row_1331\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_type\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u7c7b\\\\u578b 1\\\\u5355\\\\u6b21\\\\u9650\\\\u8d2d 2\\\\u6c38\\\\u4e45\\\\u9650\\\\u8d2d\",\"id\":\"row_1338\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_num\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u6570\\\\u91cf\",\"id\":\"row_1345\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_product\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1352\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":\"row_1359\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u5546\\\\u54c1\\\\u5f00\\\\u5173 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1366\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale_day\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u53d1\\\\u8d27\\\\u65e5 \\\\u9884\\\\u552e\\\\u7ed3\\\\u675f\\\\u540e\\\\u51e0\\\\u5929\\\\u5185\\\\u53d1\\\\u8d27\\\\u5355\\\\u4f4d\\\\u4e3a\\\\u5929\",\"id\":\"row_1373\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale_time\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u65f6\\\\u95f4\\\\u6bb5 [ \\\"2022-07-20 00:00\\\", \\\"2022-08-20 00:00\\\" ]\",\"id\":\"row_1380\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":\"row_1387\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"activity\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u6d3b\\\\u52a8\\\\u4f18\\\\u5148\\\\u7ea7\",\"id\":\"row_1394\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"recommend\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u63a8\\\\u8350 is_best:\\\\u7cbe\\\\u54c1 is_new:\\\\u65b0\\\\u54c1 is_hot:\\\\u70ed\\\\u5356 is_good:\\\\u4f18\\\\u54c1 is_benefit:\\\\u4fc3\\\\u9500\",\"id\":\"row_1401\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"video_open\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u89c6\\\\u9891 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1408\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"video_link\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u89c6\\\\u9891\\\\u94fe\\\\u63a5\\\\u5730\\\\u5740\",\"id\":\"row_1415\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ficti\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u865a\\\\u62df\\\\u9500\\\\u91cf\",\"id\":\"row_1422\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"give_integral\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u8d60\\\\u9001\\\\u79ef\\\\u5206\",\"id\":\"row_1429\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_sub\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5355\\\\u72ec\\\\u5206\\\\u4f63 1\\\\u662f 0\\\\u5426\",\"id\":\"row_1436\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"attrs\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\",\"id\":\"row_1443\",\"_X_ROW_CHILD\":[{\"attribute\":\"value1\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e00\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0 \\\\u591a\\\\u89c4\\\\u683c\\\\u5fc5\\\\u586b \\\\u548citems\\\\u91cc\\\\u9762\\\\u7684\\\\u591a\\\\u4e2avalue\\\\u987a\\\\u5e8f\\\\u4e00\\\\u81f4\",\"id\":1665995124366,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value2\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e8c\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665995125715,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\\\\u7ec4\\\\u5408 \\\\u53c2\\\\u8003\\\\u793a\\\\u4f8b\\\\u503c {\\\"\\\\u9505\\\\u578b\\\":\\\"\\\\u706b\\\\u9505\\\\u5fc5\\\\u5907\\\",\\\"\\\\u5c3a\\\\u5bf8\\\":\\\"33\\\\u5bf8\\\"}\",\"id\":1665995125872,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665995126032,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665995126219,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995126379,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665995126550,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665995126726,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"value1\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e00\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0 \\\\u591a\\\\u89c4\\\\u683c\\\\u5fc5\\\\u586b \\\\u548citems\\\\u91cc\\\\u9762\\\\u7684\\\\u591a\\\\u4e2avalue\\\\u987a\\\\u5e8f\\\\u4e00\\\\u81f4\",\"id\":1665995124366,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value2\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e8c\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665995125715,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\\\\u7ec4\\\\u5408 \\\\u53c2\\\\u8003\\\\u793a\\\\u4f8b\\\\u503c {\\\"\\\\u9505\\\\u578b\\\":\\\"\\\\u706b\\\\u9505\\\\u5fc5\\\\u5907\\\",\\\"\\\\u5c3a\\\\u5bf8\\\":\\\"33\\\\u5bf8\\\"}\",\"id\":1665995125872,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665995126032,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665995126219,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665995126379,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665995126550,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665995126726,\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"value1\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e00\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0 \\\\u591a\\\\u89c4\\\\u683c\\\\u5fc5\\\\u586b \\\\u548citems\\\\u91cc\\\\u9762\\\\u7684\\\\u591a\\\\u4e2avalue\\\\u987a\\\\u5e8f\\\\u4e00\\\\u81f4\",\"id\":\"1665995124366\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value2\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u7b2c\\\\u4e8c\\\\u4e2a\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":\"1665995125715\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\\\\u7ec4\\\\u5408 \\\\u53c2\\\\u8003\\\\u793a\\\\u4f8b\\\\u503c {\\\"\\\\u9505\\\\u578b\\\":\\\"\\\\u706b\\\\u9505\\\\u5fc5\\\\u5907\\\",\\\"\\\\u5c3a\\\\u5bf8\\\":\\\"33\\\\u5bf8\\\"}\",\"id\":\"1665995125872\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pic\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":\"1665995126032\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1665995126219\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":\"1665995126379\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":\"1665995126550\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":\"1665995126726\",\"parentId\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c \\\\u591a\\\\u89c4\\\\u683c\\\\u5fc5\\\\u586b \\\\u5355\\\\u89c4\\\\u683c\\\\u4e3a\\\\u7a7a\\\\u6570\\\\u7ec4\",\"id\":\"row_1498\",\"_X_ROW_CHILD\":[{\"attribute\":\"value\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665995227812,\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665995227981,\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"value\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665995227812,\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665995227981,\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"value\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":\"1665995227812\",\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":\"1665995227981\",\"parentId\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_1517\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_1524\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_1531\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995271263,\"parentId\":\"row_1531\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665995271263,\"parentId\":\"row_1531\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":\"1665995271263\",\"parentId\":\"row_1531\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"postage\": \"9.90\",\n \"recommend\": [\n \"is_hot\",\n \"is_best\"\n ],\n \"presale\": 1,\n \"presale_day\": 1,\n \"presale_time\": [\n \"2022-07-20 00:00\",\n \"2022-08-20 00:00\"\n ],\n \"is_limit\": 0,\n \"limit_type\": 0,\n \"limit_num\": 0,\n \"video_open\": 0,\n \"video_link\": \"\",\n \"vip_product\": 0,\n \"store_name\": \"美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107\",\n \"cate_id\": [\n 2\n ],\n \"keyword\": \"电磁炉 美的\",\n \"unit_name\": \"件\",\n \"store_info\": \"美的xxxxx\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg\"\n ],\n \"description\": \"<p>详情</p>\",\n \"ficti\": 0,\n \"give_integral\": 0,\n \"sort\": 10,\n \"is_show\": 1,\n \"spec_type\": 1,\n \"attrs\": [\n {\n \"value1\": \"大面版\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-01\",\n \"weight\": \"21.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"大面版\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-02\",\n \"weight\": \"22.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-03\",\n \"weight\": \"21.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-04\",\n \"weight\": \"22.00\",\n \"volume\": \"3.00\"\n }\n ],\n \"items\": [\n {\n \"value\": \"锅型\",\n \"detail\": [\n \"大面版\",\n \"火锅必备\"\n ]\n },\n {\n \"value\": \"尺寸\",\n \"detail\": [\n \"30寸\",\n \"33寸\"\n ]\n }\n ],\n \"type\": 0\n}', '{\n \"status\": 200,\n \"msg\": \"保存成功\",\n \"data\": {\n \"id\": 78\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(814, 87, 'outapi', '修改商品', '', 'product/<id>', 'PUT', 'app/outapi/controller/StoreProduct.php', 'update', '[{\"attribute\":\"cate_id\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u7c7bID \\\\u81f3\\\\u5c11\\\\u62e5\\\\u6709\\\\u4e00\\\\u4e2a\\\\u5206\\\\u7c7b\",\"id\":\"row_1268\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":\"row_1275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5173\\\\u952e\\\\u5b57\",\"id\":\"row_1282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":\"row_1289\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"row_1296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":\"row_1303\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":\"row_1310\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":\"row_1317\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":\"row_1324\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_limit\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u9650\\\\u8d2d 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":\"row_1331\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_type\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u7c7b\\\\u578b 1\\\\u5355\\\\u6b21\\\\u9650\\\\u8d2d 2\\\\u6c38\\\\u4e45\\\\u9650\\\\u8d2d\",\"id\":\"row_1338\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_num\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u6570\\\\u91cf\",\"id\":\"row_1345\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_product\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1352\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":\"row_1359\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u5546\\\\u54c1\\\\u5f00\\\\u5173 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1366\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale_day\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u53d1\\\\u8d27\\\\u65e5 \\\\u9884\\\\u552e\\\\u7ed3\\\\u675f\\\\u540e\\\\u51e0\\\\u5929\\\\u5185\\\\u53d1\\\\u8d27\\\\u5355\\\\u4f4d\\\\u4e3a\\\\u5929\",\"id\":\"row_1373\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"presale_time\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u9884\\\\u552e\\\\u65f6\\\\u95f4\\\\u6bb5 [ \\\"2022-07-20 00:00\\\", \\\"2022-08-20 00:00\\\" ]\",\"id\":\"row_1380\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":\"row_1387\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"activity\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u6d3b\\\\u52a8\\\\u4f18\\\\u5148\\\\u7ea7\",\"id\":\"row_1394\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"recommend\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u63a8\\\\u8350 is_best:\\\\u7cbe\\\\u54c1 is_new:\\\\u65b0\\\\u54c1 is_hot:\\\\u70ed\\\\u5356 is_good:\\\\u4f18\\\\u54c1 is_benefit:\\\\u4fc3\\\\u9500\",\"id\":\"row_1401\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"video_open\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u89c6\\\\u9891 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_1408\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"video_link\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u89c6\\\\u9891\\\\u94fe\\\\u63a5\\\\u5730\\\\u5740\",\"id\":\"row_1415\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ficti\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u865a\\\\u62df\\\\u9500\\\\u91cf\",\"id\":\"row_1422\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"give_integral\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u8d60\\\\u9001\\\\u79ef\\\\u5206\",\"id\":\"row_1429\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_sub\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5355\\\\u72ec\\\\u5206\\\\u4f63 1\\\\u662f 0\\\\u5426\",\"id\":\"row_1436\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"attrs\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\",\"id\":\"row_1443\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c \\\\u591a\\\\u89c4\\\\u683c\\\\u5fc5\\\\u586b \\\\u5355\\\\u89c4\\\\u683c\\\\u4e3a\\\\u7a7a\\\\u6570\\\\u7ec4\",\"id\":\"row_1498\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/product/1\n{\n \"postage\": \"9.90\",\n \"recommend\": [\n \"is_hot\",\n \"is_best\"\n ],\n \"presale\": 1,\n \"presale_day\": 1,\n \"presale_time\": [\n \"2022-07-20 00:00\",\n \"2022-08-20 00:00\"\n ],\n \"is_limit\": 0,\n \"limit_type\": 0,\n \"limit_num\": 0,\n \"video_open\": 0,\n \"video_link\": \"\",\n \"vip_product\": 0,\n \"store_name\": \"美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107\",\n \"cate_id\": [\n 2\n ],\n \"keyword\": \"电磁炉 美的\",\n \"unit_name\": \"件\",\n \"store_info\": \"美的xxxxx\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg\"\n ],\n \"description\": \"<p>详情</p>\",\n \"ficti\": 0,\n \"give_integral\": 0,\n \"sort\": 10,\n \"is_show\": 1,\n \"spec_type\": 1,\n \"attrs\": [\n {\n \"value1\": \"大面版\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-01\",\n \"weight\": \"21.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"大面版\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-02\",\n \"weight\": \"22.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-03\",\n \"weight\": \"21.00\",\n \"volume\": \"3.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"bar_code\": \"MD-04\",\n \"weight\": \"22.00\",\n \"volume\": \"3.00\"\n }\n ],\n \"items\": [\n {\n \"value\": \"锅型\",\n \"detail\": [\n \"大面版\",\n \"火锅必备\"\n ]\n },\n {\n \"value\": \"尺寸\",\n \"detail\": [\n \"30寸\",\n \"33寸\"\n ]\n }\n ],\n \"type\": 0\n}', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(815, 87, 'outapi', '获取商品', '', 'product/<id>', 'GET', 'app/outapi/controller/StoreProduct.php', 'read', '[{\"attribute\":\"id\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":\"row_2918\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_2360\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_2367\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665997348430,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665997348936,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665997349123,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665997349284,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665997349459,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665997349630,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665997349790,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665997349954,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665997350282,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665997350442,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665997350603,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665997350762,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665997350949,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665997351095,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997351296,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665997351442,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665997550117,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665997550326,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665997550490,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997550636,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_limit\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u9650\\\\u8d2d 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":1665997550797,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_type\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u7c7b\\\\u578b 1\\\\u5355\\\\u6b21\\\\u9650\\\\u8d2d 2\\\\u6c38\\\\u4e45\\\\u9650\\\\u8d2d\",\"id\":1665997550970,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_num\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u6570\\\\u91cf\",\"id\":1665997551143,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"give_integral\",\"type\":\"number\",\"trip\":\"\\\\u8d60\\\\u9001\\\\u79ef\\\\u5206\",\"id\":1665997551299,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665997551463,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665997551623,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"attrs\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u6570\\\\u636e\",\"id\":1665997551784,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u5217\\\\u8868\",\"id\":1665997551929,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":1665997348430,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":1665997348936,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":1665997349123,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665997349284,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":1665997349459,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":1665997349630,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":1665997349790,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":1665997349954,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":1665997350282,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":1665997350442,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":1665997350603,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":1665997350762,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":1665997350949,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":1665997351095,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997351296,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":1665997351442,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":1665997550117,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":1665997550326,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665997550490,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997550636,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_limit\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u9650\\\\u8d2d 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":1665997550797,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_type\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u7c7b\\\\u578b 1\\\\u5355\\\\u6b21\\\\u9650\\\\u8d2d 2\\\\u6c38\\\\u4e45\\\\u9650\\\\u8d2d\",\"id\":1665997550970,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_num\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u6570\\\\u91cf\",\"id\":1665997551143,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"give_integral\",\"type\":\"number\",\"trip\":\"\\\\u8d60\\\\u9001\\\\u79ef\\\\u5206\",\"id\":1665997551299,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":1665997551463,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":1665997551623,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"attrs\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u6570\\\\u636e\",\"id\":1665997551784,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u5217\\\\u8868\",\"id\":1665997551929,\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u5546\\\\u54c1ID\",\"id\":\"1665997348430\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u56fe\\\\u7247\",\"id\":\"1665997348936\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"slider_image\",\"type\":\"array\",\"trip\":\"\\\\u8f6e\\\\u64ad\\\\u56fe\",\"id\":\"1665997349123\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1665997349284\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_info\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7b80\\\\u4ecb\",\"id\":\"1665997349459\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"keyword\",\"type\":\"string\",\"trip\":\"\\\\u5173\\\\u952e\\\\u5b57\",\"id\":\"1665997349630\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u7f16\\\\u7801\",\"id\":\"1665997349790\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_id\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7bID\",\"id\":\"1665997349954\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u552e\\\\u4ef7\",\"id\":\"1665997350282\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u539f\\\\u4ef7\",\"id\":\"1665997350442\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39 0\\\\u5143\\\\u5219\\\\u5305\\\\u90ae\",\"id\":\"1665997350603\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"unit_name\",\"type\":\"string\",\"trip\":\"\\\\u5355\\\\u4f4d\\\\u540d\\\\u79f0\",\"id\":\"1665997350762\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sort\",\"type\":\"number\",\"trip\":\"\\\\u6392\\\\u5e8f\",\"id\":\"1665997350949\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u4e0a\\\\u67b6\\\\u72b6\\\\u6001 1\\\\u4e0a\\\\u67b6 0\\\\u4e0b\\\\u67b6\",\"id\":\"1665997351095\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":\"1665997351296\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spec_type\",\"type\":\"number\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u7c7b\\\\u578b 0\\\\u5355\\\\u89c4\\\\u683c 1\\\\u591a\\\\u89c4\\\\u683c\",\"id\":\"1665997351442\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spu\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1SPU\",\"id\":\"1665997550117\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight\",\"type\":\"number\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u8bbe\\\\u7f6e 2\\\\u56fa\\\\u5b9a\\\\u8fd0\\\\u8d39 3\\\\u8fd0\\\\u8d39\\\\u6a21\\\\u677f\",\"id\":\"1665997550326\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_vip\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u4f1a\\\\u5458\\\\u4ef7\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"1665997550490\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7 \\\\u591a\\\\u89c4\\\\u683c\\\\u5219\\\\u4e3a\\\\u6700\\\\u4f4e\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":\"1665997550636\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_limit\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u542f\\\\u9650\\\\u8d2d 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed \\\\u9ed8\\\\u8ba4\\\\u4e3a0\",\"id\":\"1665997550797\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_type\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u7c7b\\\\u578b 1\\\\u5355\\\\u6b21\\\\u9650\\\\u8d2d 2\\\\u6c38\\\\u4e45\\\\u9650\\\\u8d2d\",\"id\":\"1665997550970\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit_num\",\"type\":\"number\",\"trip\":\"\\\\u9650\\\\u8d2d\\\\u6570\\\\u91cf\",\"id\":\"1665997551143\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"give_integral\",\"type\":\"number\",\"trip\":\"\\\\u8d60\\\\u9001\\\\u79ef\\\\u5206\",\"id\":\"1665997551299\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cate_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u5206\\\\u7c7b\\\\u540d\\\\u79f0\",\"id\":\"1665997551463\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"description\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u8be6\\\\u60c5\",\"id\":\"1665997551623\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"attrs\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u6570\\\\u636e\",\"id\":\"1665997551784\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":1665997680904,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665997681087,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":1665997681262,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":1665997681449,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":1665997681636,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":1665997681823,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":1665997681996,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682183,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":1665997682356,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":1665997755012,\"parentId\":1665997551784,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"pic\",\"type\":\"string\",\"trip\":\"\\\\u5c5e\\\\u6027\\\\u56fe\\\\u7247\",\"id\":\"1665997680904\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1665997681087\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cost\",\"type\":\"string\",\"trip\":\"\\\\u6210\\\\u672c\\\\u4ef7\",\"id\":\"1665997681262\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"ot_price\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u4ef7\",\"id\":\"1665997681449\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u53f7\",\"id\":\"1665997681636\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"weight\",\"type\":\"string\",\"trip\":\"\\\\u91cd\\\\u91cf\",\"id\":\"1665997681823\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"volume\",\"type\":\"string\",\"trip\":\"\\\\u4f53\\\\u79ef\",\"id\":\"1665997681996\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage\",\"type\":\"string\",\"trip\":\"\\\\u4e00\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":\"1665997682183\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_two\",\"type\":\"string\",\"trip\":\"\\\\u4e8c\\\\u7ea7\\\\u8fd4\\\\u4f63\",\"id\":\"1665997682356\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u4e13\\\\u4eab\\\\u4ef7\",\"id\":\"1665997755012\",\"parentId\":\"1665997551784\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u5217\\\\u8868\",\"id\":\"1665997551929\",\"parentId\":\"row_2374\",\"_X_ROW_CHILD\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":1665997783253,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":1665997783449,\"parentId\":1665997551929,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u540d\\\\u79f0\",\"id\":\"1665997783253\",\"parentId\":\"1665997551929\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"detail\",\"type\":\"array\",\"trip\":\"\\\\u89c4\\\\u683c\\\\u503c\",\"id\":\"1665997783449\",\"parentId\":\"1665997551929\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/product/1', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"id\": 78,\n \"image\": \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"slider_image\": [\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/6fc4a434065f9b20da5d68e2b7915069.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/1d6a58df8f136925bffa326b22a59d1a.jpg\",\n \"https://demo.crmeb.com/uploads/attach/2022/01/15/80475fb57727e34049b902efa8bcdf4f.jpg\"\n ],\n \"store_name\": \"美的(Midea)电磁炉 旋控调节火力 C22-RX22H0107\",\n \"store_info\": \"美的xxxxx\",\n \"keyword\": \"电磁炉 美的\",\n \"bar_code\": \"\",\n \"cate_id\": [\n 4,\n 8\n ],\n \"price\": \"100.00\",\n \"ot_price\": \"80.00\",\n \"postage\": \"0.00\",\n \"unit_name\": \"件\",\n \"sort\": 0,\n \"is_show\": 1,\n \"cost\": \"90.00\",\n \"spec_type\": 1,\n \"spu\": \"9752575478640\",\n \"freight\": 3,\n \"is_vip\": 0,\n \"vip_price\": \"9.00\",\n \"is_limit\": 0,\n \"limit_type\": 0,\n \"limit_num\": 0,\n \"give_integral\": 0,\n \"cate_name\": \"精品发卡,品牌电脑\",\n \"description\": \"<p>详情</p>\",\n \"items\": [\n {\n \"value\": \"锅型\",\n \"detail\": [\n \"大面版\",\n \"火锅必备\"\n ]\n },\n {\n \"value\": \"尺寸\",\n \"detail\": [\n \"30寸\",\n \"33寸\"\n ]\n }\n ],\n \"attrs\": [\n {\n \"value1\": \"大面版\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"vip_price\": \"9.00\",\n \"bar_code\": \"MD-01\",\n \"weight\": \"21.00\",\n \"volume\": \"3.00\",\n \"brokerage\": \"0.00\",\n \"brokerage_two\": \"0.00\"\n },\n {\n \"value1\": \"大面版\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"大面版\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.com/uploads/attach/2022/01/15/f391b023d240b73f13fe0f5d08250884.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"vip_price\": \"11.00\",\n \"bar_code\": \"MD-02\",\n \"weight\": \"22.00\",\n \"volume\": \"3.00\",\n \"brokerage\": \"0.00\",\n \"brokerage_two\": \"0.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"30寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"30寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"vip_price\": \"12.00\",\n \"bar_code\": \"MD-03\",\n \"weight\": \"23.00\",\n \"volume\": \"3.00\",\n \"brokerage\": \"0.00\",\n \"brokerage_two\": \"0.00\"\n },\n {\n \"value1\": \"火锅必备\",\n \"value2\": \"33寸\",\n \"detail\": {\n \"锅型\": \"火锅必备\",\n \"尺寸\": \"33寸\"\n },\n \"pic\": \"https://demo.crmeb.comuploads/attach/2022/06/20220625/b4d26d8fa71a7b35ad9dfe94b7956a58.jpg\",\n \"price\": \"100.00\",\n \"cost\": \"90.00\",\n \"ot_price\": \"80.00\",\n \"vip_price\": \"13.00\",\n \"bar_code\": \"MD-04\",\n \"weight\": \"24.00\",\n \"volume\": \"3.00\",\n \"brokerage\": \"0.00\",\n \"brokerage_two\": \"0.00\"\n }\n ]\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(816, 87, 'outapi', '修改商品状态', '', 'product/set_show/<id>/<is_show>', 'PUT', 'app/outapi/controller/StoreProduct.php', 'set_show', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/product/set_show/1/1', '{\n \"status\": 200,\n \"msg\": \"显示成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(817, 87, 'outapi', '同步商品库存', '', 'product/stock/upload', 'PUT', 'app/outapi/controller/StoreProduct.php', 'uploadStock', '[{\"attribute\":\"items\",\"type\":\"array\",\"must\":\"0\",\"trip\":\"\",\"id\":\"row_2928\",\"_X_ROW_CHILD\":[{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":0,\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u7801 \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u5c5e\\\\u6027\",\"id\":1665997867736,\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"qty\",\"type\":\"number\",\"must\":0,\"trip\":\"\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u7684\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf\",\"id\":1665997868370,\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":0,\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u7801 \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u5c5e\\\\u6027\",\"id\":1665997867736,\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"qty\",\"type\":\"number\",\"must\":0,\"trip\":\"\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u7684\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf\",\"id\":1665997868370,\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"bar_code\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u4ea7\\\\u54c1\\\\u7f16\\\\u7801 \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u5c5e\\\\u6027\",\"id\":\"1665997867736\",\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"qty\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf \\\\u89c4\\\\u683c\\\\u5546\\\\u54c1\\\\u7684\\\\u5e93\\\\u5b58\\\\u6570\\\\u91cf\",\"id\":\"1665997868370\",\"parentId\":\"row_2928\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_2947\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_2954\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"items\": [\n {\n \"bar_code\": \"MD-01\",\n \"qty\": 5\n },\n {\n \"bar_code\": \"MD-02\",\n \"qty\": 1\n },\n {\n \"bar_code\": \"MD-03\",\n \"qty\": 1\n },\n {\n \"bar_code\": \"MD-04\",\n \"qty\": 1\n },\n {\n \"bar_code\": \"MD-05\",\n \"qty\": 5\n }\n ]\n}', '{\n \"status\": 200,\n \"msg\": \"操作成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(818, 88, 'outapi', '订单列表', '', 'order/list', 'GET', 'app/outapi/controller/StoreOrder.php', 'lst', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5206\\\\u9875\",\"id\":\"row_2964\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u6761\\\\u6570\",\"id\":\"row_2971\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001: 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"row_2978\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355ID|\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"row_2985\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f: 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":\"row_2992\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4 2022\\/07\\/12 00:00:00-2022\\/08\\/17 00:00:00\",\"id\":\"row_2999\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8:1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":\"row_3006\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_3013\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_3020\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":\"1665998356462\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387231\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387347\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":\"1665998387507\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":\"1665998387641\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1665998387801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":\"1665998387989\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"1665998388135\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":\"1665998388311\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":\"1665998388469\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":\"1665998388614\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":\"1665998388788\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":\"1665998388948\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1665998389121\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":\"1665998389281\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":\"1665998389455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":\"1665998389615\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":\"1665998389801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":\"1665998389962\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":\"1665998390163\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1665998390322\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":\"1665998390455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1665998390642\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1665998390815\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":\"1665998390975\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1665998391190\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":\"1665998623612\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1665998623796\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1665998623995\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1665998624155\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1665998624329\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":\"1665998624515\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":\"1665998628959\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":\"1665998629128\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1665998358704\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/list?status=1&real_name=张三&pay_type=1&data=2022/07/12 00:00:00-2022/08/17 00:00:00&paid=1&page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 30,\n \"pid\": 0,\n \"order_id\": \"wx273504055794335744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"25.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"25.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656494848,\n \"pay_type\": \"yue\",\n \"add_time\": 1656494848,\n \"status\": -2,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 2273504044117393400,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n },\n {\n \"id\": 29,\n \"pid\": 20,\n \"order_id\": \"wx273477746087165952\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 3,\n \"total_price\": \"77.70\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"77.70\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 0,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746112331780,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n },\n {\n \"cart_id\": 273477746108137470,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"水钻一字夹6件套 银色\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"23.90\",\n \"cart_num\": 2,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 28,\n \"pid\": 20,\n \"order_id\": \"wx273477745973919744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"29.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"29.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 1,\n \"delivery_name\": \"泰捷达国际物流\",\n \"delivery_code\": \"ztjieda\",\n \"delivery_id\": \"TJ444\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746041028600,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 26,\n \"pid\": 14,\n \"order_id\": \"wx273423259360296960\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"22.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"22.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656404021,\n \"pay_type\": \"yue\",\n \"add_time\": 1656475584,\n \"status\": 1,\n \"delivery_name\": \"顺丰快运\",\n \"delivery_code\": \"shunfengkuaiyun\",\n \"delivery_id\": \"SF555\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273423259398045700,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"水果+雏菊\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"22.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n }\n ],\n \"count\": 25\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(819, 88, 'outapi', '订单详情', '', 'order/<order_id>', 'GET', 'app/outapi/controller/StoreOrder.php', 'read', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_3700\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_3716\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_3723\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665999858022,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665999858179,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665999858338,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u4ea4\\\\u6613\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665999858500,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665999858660,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665999858808,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665999858953,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665999859114,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665999859273,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665999859405,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665999859565,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665999859741,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665999859885,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665999860060,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665999860219,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":1665999860393,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665999860525,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":1665999860699,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665999860859,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"shipping_type\",\"type\":\"number\",\"trip\":\"\\\\u914d\\\\u9001\\\\u65b9\\\\u5f0f 1\\\\u5feb\\\\u9012 2\\\\u95e8\\\\u5e97\",\"id\":1665999861027,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u652f\\\\u4ed8 1\\\\u672a\\\\u53d1\\\\u8d27 2\\\\u5f85\\\\u6536\\\\u8d27 3\\\\u5f85\\\\u8bc4\\\\u4ef7 4\\\\u4ea4\\\\u6613\\\\u5b8c\\\\u6210\",\"id\":1665999861345,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_status\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u72b6\\\\u6001 0\\\\u672a\\\\u9000\\\\u6b3e 1\\\\u7533\\\\u8bf7\\\\u4e2d 2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666001289583,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1666001289787,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001289934,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001290095,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_type\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u8d27\\\\u7c7b\\\\u578b\",\"id\":1666001290241,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":1666001290388,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"back_integral\",\"type\":\"string\",\"trip\":\"\\\\u56de\\\\u9000\\\\u79ef\\\\u5206\",\"id\":1666001290696,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1666001290868,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status_name\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":1666001291196,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":1666001296656,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice\",\"type\":\"array\",\"trip\":\"\\\\u53d1\\\\u7968\",\"id\":1666001296788,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666001296961,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665999858022,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665999858179,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665999858338,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u4ea4\\\\u6613\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665999858500,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665999858660,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665999858808,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665999858953,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665999859114,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665999859273,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665999859405,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665999859565,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665999859741,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665999859885,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665999860060,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665999860219,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":1665999860393,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665999860525,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":1665999860699,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665999860859,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"shipping_type\",\"type\":\"number\",\"trip\":\"\\\\u914d\\\\u9001\\\\u65b9\\\\u5f0f 1\\\\u5feb\\\\u9012 2\\\\u95e8\\\\u5e97\",\"id\":1665999861027,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u652f\\\\u4ed8 1\\\\u672a\\\\u53d1\\\\u8d27 2\\\\u5f85\\\\u6536\\\\u8d27 3\\\\u5f85\\\\u8bc4\\\\u4ef7 4\\\\u4ea4\\\\u6613\\\\u5b8c\\\\u6210\",\"id\":1665999861345,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_status\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u72b6\\\\u6001 0\\\\u672a\\\\u9000\\\\u6b3e 1\\\\u7533\\\\u8bf7\\\\u4e2d 2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666001289583,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1666001289787,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001289934,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001290095,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_type\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u8d27\\\\u7c7b\\\\u578b\",\"id\":1666001290241,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":1666001290388,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"back_integral\",\"type\":\"string\",\"trip\":\"\\\\u56de\\\\u9000\\\\u79ef\\\\u5206\",\"id\":1666001290696,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1666001290868,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status_name\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":1666001291196,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":1666001296656,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice\",\"type\":\"array\",\"trip\":\"\\\\u53d1\\\\u7968\",\"id\":1666001296788,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666001296961,\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1665999858022\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":\"1665999858179\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":\"1665999858338\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u4ea4\\\\u6613\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":\"1665999858500\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1665999858660\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":\"1665999858808\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"1665999858953\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":\"1665999859114\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":\"1665999859273\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":\"1665999859405\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":\"1665999859565\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":\"1665999859741\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1665999859885\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":\"1665999860060\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":\"1665999860219\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":\"1665999860393\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":\"1665999860525\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":\"1665999860699\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":\"1665999860859\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"shipping_type\",\"type\":\"number\",\"trip\":\"\\\\u914d\\\\u9001\\\\u65b9\\\\u5f0f 1\\\\u5feb\\\\u9012 2\\\\u95e8\\\\u5e97\",\"id\":\"1665999861027\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u652f\\\\u4ed8 1\\\\u672a\\\\u53d1\\\\u8d27 2\\\\u5f85\\\\u6536\\\\u8d27 3\\\\u5f85\\\\u8bc4\\\\u4ef7 4\\\\u4ea4\\\\u6613\\\\u5b8c\\\\u6210\",\"id\":\"1665999861345\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_status\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u72b6\\\\u6001 0\\\\u672a\\\\u9000\\\\u6b3e 1\\\\u7533\\\\u8bf7\\\\u4e2d 2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1666001289583\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":\"1666001289787\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1666001289934\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1666001290095\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_type\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u8d27\\\\u7c7b\\\\u578b\",\"id\":\"1666001290241\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":\"1666001290388\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"back_integral\",\"type\":\"string\",\"trip\":\"\\\\u56de\\\\u9000\\\\u79ef\\\\u5206\",\"id\":\"1666001290696\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":\"1666001290868\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status_name\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":\"1666001291196\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":\"1666001296656\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice\",\"type\":\"array\",\"trip\":\"\\\\u53d1\\\\u7968\",\"id\":\"1666001296788\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":1666001412405,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":1666001412576,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":1666001412749,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":1666001412910,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":1666001413096,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666001413270,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":1666001413430,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":1666001413590,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":1666001413760,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":1666001413923,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":1666001496165,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":1666001496379,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":1666001496524,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":1666001496684,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":1666001556276,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666001556459,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":1666001613687,\"parentId\":1666001296788,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"invoice_id\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968ID\",\"id\":\"1666001412405\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":\"1666001412576\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":\"1666001412749\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":\"1666001412910\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":\"1666001413096\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1666001413270\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":\"1666001413430\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":\"1666001413590\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":\"1666001413760\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":\"1666001413923\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":\"1666001496165\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pay\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8\",\"id\":\"1666001496379\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_refund\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9000\\\\u6b3e\",\"id\":\"1666001496524\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968\",\"id\":\"1666001496684\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":\"1666001556276\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"1666001556459\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_time\",\"type\":\"number\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u65f6\\\\u95f4\",\"id\":\"1666001613687\",\"parentId\":\"1666001296788\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1666001296961\",\"parentId\":\"row_3730\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001645821,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001646007,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001646172,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001646327,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001646487,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001646647,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001646794,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001646972,\"parentId\":1666001296961,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":\"1666001645821\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1666001646007\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1666001646172\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1666001646327\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1666001646487\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":\"1666001646647\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":\"1666001646794\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":\"1666001646972\",\"parentId\":\"1666001296961\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/wx273866852013178880', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"id\": 25,\n \"pid\": 0,\n \"order_id\": \"wx273148789135507456\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"25.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"25.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656410146,\n \"pay_type\": \"yue\",\n \"add_time\": 1656410146,\n \"shipping_type\": 1,\n \"status\": 1,\n \"refund_status\": 0,\n \"delivery_name\": \"泰捷达国际物流\",\n \"delivery_code\": \"ztjieda\",\n \"delivery_id\": \"28\",\n \"delivery_type\": \"express\",\n \"use_integral\": \"0.00\",\n \"back_integral\": \"0.00\",\n \"invoice\": {\n \"invoice_id\": 1,\n \"header_type\": 1,\n \"type\": 1,\n \"name\": \"西巴尔\",\n \"duty_number\": \"ssdh\",\n \"drawer_phone\": \"15289381074\",\n \"email\": \"123@qq.com\",\n \"tell\": \"4001162626\",\n \"address\": \"注册地址\",\n \"bank\": \"开户行\",\n \"card_number\": \"62242419955121501\",\n \"is_pay\": 1,\n \"is_refund\": 0,\n \"is_invoice\": 1,\n \"invoice_number\": \"33333333\",\n \"remark\": \"remark222\",\n \"invoice_time\": 1656476718\n },\n \"items\": [\n {\n \"cart_id\": 2273148592808525800,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ],\n \"pay_type_name\": \"余额支付\",\n \"status_name\": \"待收货\",\n \"vip_true_price\": \"0.00\"\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(820, 88, 'outapi', '修改备注信息', '', 'order/remark/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'remark', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4245\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"row_4453\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4303\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/remark/wx273866852013178880\n{\n \"remark\": \"请尽快发货\"\n}', '{\n \"status\": 200,\n \"msg\": \"收货成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(821, 88, 'outapi', '确认收货', '', 'order/receive/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'receive', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4245\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4252\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4259\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/receive/wx273866852013178880', '{\n \"status\": 200,\n \"msg\": \"收货成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(822, 88, 'outapi', '获取物流公司', '', 'order/express_list', 'GET', 'app/outapi/controller/StoreOrder.php', 'express', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4203\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4210\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4217\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666001939800,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":1666001939958,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001940148,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666001939800,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":1666001939958,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1666001940148,\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":\"1666001939800\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"value\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":\"1666001939958\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1666001940148\",\"parentId\":\"row_4217\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/express_list', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"id\": 14,\n \"value\": \"宅急送\",\n \"code\": \"zhaijisong\"\n },\n {\n \"id\": 85,\n \"value\": \"顺丰快运\",\n \"code\": \"shunfengkuaiyun\"\n }\n ]\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(823, 88, 'outapi', '订单发货', '', 'order/delivery/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'delivery', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4245\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":\"row_4275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"row_4282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"row_4289\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4303\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/delivery/wx273866852013178880\n{\n \"delivery_name\": \"顺丰快运\",\n \"delivery_id\": \"SF5555:2356\",\n \"delivery_code\": \"shunfengkuaiyun\"\n}', '{\n \"status\": 200,\n \"msg\": \"收货成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(824, 88, 'outapi', '修改配送信息', '', 'order/distribution/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'updateDistribution', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4245\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"row_4453\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"row_4514\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4303\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/distribution/wx273866852013178880\n{\n \"delivery_code\": \"shunfengkuaiyun\",\n \"delivery_id\": \"SF123123\"\n}', '{\n \"status\": 200,\n \"msg\": \"操作成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(825, 88, 'outapi', '获取订单可拆分商品列表', '', 'order/split_cart_info/<order_id>', 'GET', 'app/outapi/controller/StoreOrder.php', 'splitCartInfo', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx275230594223308800\",\"id\":\"row_4124\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4131\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4138\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4145\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001805091,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001805597,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001805930,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001806238,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001806681,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001807023,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001807356,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001807703,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1666001805091,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666001805597,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666001805930,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666001806238,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666001806681,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1666001807023,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1666001807356,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1666001807703,\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"cart_id\",\"type\":\"string\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":\"1666001805091\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1666001805597\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1666001805930\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1666001806238\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1666001806681\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":\"1666001807023\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":\"1666001807356\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":\"1666001807703\",\"parentId\":\"row_4145\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/split_cart_info/wx275230594223308800', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": [\n {\n \"cart_id\": 12,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"水果+雏菊\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"22.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n },\n {\n \"cart_id\": 13,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n },\n {\n \"cart_id\": 11,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(826, 88, 'outapi', '拆单发送货', '', 'order/split_delivery/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'splitDelivery', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4245\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u540d\\\\u79f0\",\"id\":\"row_4275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"row_4282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"row_4289\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_ids\",\"type\":\"array\",\"must\":\"0\",\"trip\":\"\\\\u53d1\\\\u8d27\\\\u5546\\\\u54c1\",\"id\":\"row_4349\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4296\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4303\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/split_delivery/wx273866852013178880\n{\n \"delivery_name\": \"顺丰快运\",\n \"delivery_id\": \"SF123123\",\n \"delivery_code\": \"shunfengkuaiyun\",\n \"cart_ids\": [\n {\n \"cart_id\": 14,\n \"cart_num\": 1\n }\n ]\n}', '{\n \"status\": 200,\n \"msg\": \"收货成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(827, 88, 'outapi', '修改订单发票', '', 'order/invoice/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'setInvoice', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7 wx273866852013178880\",\"id\":\"row_4551\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"header_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u62ac\\\\u5934\\\\u7c7b\\\\u578b 1\\\\u4e2a\\\\u4eba 2\\\\u4f01\\\\u4e1a\",\"id\":\"row_4558\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u7c7b\\\\u578b 1\\\\u666e\\\\u901a 2\\\\u4e13\\\\u7528\",\"id\":\"row_4565\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"drawer_phone\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"row_4572\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"email\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u4eba\\\\u90ae\\\\u7bb1\",\"id\":\"row_4579\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u53d1\\\\u7968\\\\u62ac\\\\u5934\",\"id\":\"row_4586\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"duty_number\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u7a0e\\\\u53f7\",\"id\":\"row_4593\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"tell\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u7535\\\\u8bdd\",\"id\":\"row_4600\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"address\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u6ce8\\\\u518c\\\\u5730\\\\u5740\",\"id\":\"row_4607\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"bank\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5f00\\\\u6237\\\\u884c\",\"id\":\"row_4614\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"card_number\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u94f6\\\\u884c\\\\u5361\\\\u53f7\",\"id\":\"row_4621\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"row_4628\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4635\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4642\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/invoice/wx273866852013178880\n{\n \"header_type\": 1,\n \"type\": 1,\n \"drawer_phone\": \"152xxxxxx32\",\n \"email\": \"123@qq.com\",\n \"name\": \"测试发票\",\n \"duty_number\": \"\",\n \"tell\": \"4001162626\",\n \"address\": \"注册地址\",\n \"bank\": \"开户行\",\n \"card_number\": \"62242419955121501\",\n \"remark\": \"备注\"\n}', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(828, 88, 'outapi', '修改订单发票状态', '', 'order/invoice_status/<order_id>', 'PUT', 'app/outapi/controller/StoreOrder.php', 'setInvoiceStatus', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\" \\\\u8ba2\\\\u5355\\\\u53f7 wx272691290527760384\",\"id\":\"row_4652\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_invoice\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u662f\\\\u5426\\\\u5f00\\\\u7968 1\\\\u662f 0\\\\u5426\",\"id\":\"row_4659\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"invoice_number\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5f00\\\\u7968\\\\u7968\\\\u53f7\",\"id\":\"row_4666\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"row_4673\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4680\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4687\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/invoice_status/wx272691290527760384\n{\n \"is_invoice\": 1,\n \"invoice_number\": \"33333333\",\n \"remark\": \"开票备注\"\n}', '{\n \"status\": 200,\n \"msg\": \"设置成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(829, 89, 'outapi', '售后订单列表', '', 'refund/list', 'GET', 'app/outapi/controller/RefundOrder.php', 'lst', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\" \\\\u5206\\\\u9875\",\"id\":\"row_4697\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\" \\\\u6761\\\\u6570\",\"id\":\"row_4704\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u53f7\",\"id\":\"row_4711\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"time\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4 2022\\/06\\/01-2022\\/06\\/29\",\"id\":\"row_4718\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7c7b\\\\u578b 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"row_4725\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4732\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4739\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":1666002876034,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666002876686,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":1666002876034,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666002876686,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u6570\\\\u636e\",\"id\":\"1666002876034\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":1666002894953,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666002895180,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666002895312,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666002895489,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666002895632,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666002895792,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666002895941,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666002896115,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666002896286,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666002896432,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666002896592,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666002896752,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002896926,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666002897098,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666002897245,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666002897423,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666002897565,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666002897725,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666002897885,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003054800,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666003054960,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666003055133,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666003055308,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1666003055507,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003055803,\"parentId\":1666002876034,\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"id\",\"id\":\"1666002894953\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1666002895180\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1666002895312\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":\"1666002895489\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1666002895632\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":\"1666002895792\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":\"1666002895941\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":\"1666002896115\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"1666002896286\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":\"1666002896432\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":\"1666002896592\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":\"1666002896752\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666002896926\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666002897098\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":\"1666002897245\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":\"1666002897423\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":\"1666002897565\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":\"1666002897725\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":\"1666002897885\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":\"1666003054800\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":\"1666003054960\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":\"1666003055133\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1666003055308\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1666003055507\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1666003055803\",\"parentId\":\"1666002876034\",\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003104961,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003105147,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003105297,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003105481,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003105600,\"parentId\":1666003055803,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1666003104961\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1666003105147\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1666003105297\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1666003105481\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":\"1666003105600\",\"parentId\":\"1666003055803\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1666002876686\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/list?page=1&limit=20&order_id=xxx&time=2022/06/01-2022/06/29&refund_type=1', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 2,\n \"store_order_id\": 10,\n \"uid\": 2,\n \"order_id\": \"272753574860029952\",\n \"refund_type\": 6,\n \"refund_num\": 1,\n \"refunded_price\": \"25.90\",\n \"refund_phone\": \"\",\n \"refund_express\": \"\",\n \"refund_express_name\": \"\",\n \"refund_explain\": \"1111\",\n \"refund_img\": [],\n \"refund_reason\": \"收货地址填错了\",\n \"refuse_reason\": \"\",\n \"remark\": \"culpa sint nulla reprehenderit amet\",\n \"refunded_time\": 1656315941,\n \"is_cancel\": 0,\n \"is_del\": 0,\n \"is_pink_cancel\": 0,\n \"add_time\": 1656315919,\n \"avatar\": \"https://demo.crmeb.comstatics/system_images/default_avatar.jpeg\",\n \"nickname\": \"demo\",\n \"phone\": \"18354876351\",\n \"pay_price\": \"25.90\",\n \"items\": [\n {\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1\n }\n ]\n }\n ],\n \"count\": 1\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(830, 89, 'outapi', '售后订单备注', '', 'refund/remark/<order_id>', 'PUT', 'app/outapi/controller/RefundOrder.php', 'remark', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\" \\\\u552e\\\\u540e\\\\u5355\\\\u53f7\",\"id\":\"row_5417\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5907\\\\u6ce8\\\\u5185\\\\u5bb9\",\"id\":\"row_5424\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_5431\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_5438\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/remark/272753574860029952\n{\n \"remark\": \"备注内容\"\n}', '{\n \"status\": 200,\n \"msg\": \"备注成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(831, 89, 'outapi', '售后订单退款', '', 'refund/<order_id>', 'PUT', 'app/outapi/controller/RefundOrder.php', 'refundPrice', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u53f7\",\"id\":\"row_5448\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_5455\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_5462\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/275306677517942784', '{\n \"status\": 200,\n \"msg\": \"操作成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(832, 89, 'outapi', '售后订单详情', '', 'refund/<order_id>', 'GET', 'app/outapi/controller/RefundOrder.php', 'read', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u53f7 272753574860029952\",\"id\":\"row_4948\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_4732\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_4739\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"ID\",\"id\":1666003289819,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666003289991,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666003290155,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666003290286,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666003290448,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666003290590,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_price\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666003290754,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666003290898,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666003291073,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666003291234,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666003291391,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666003291566,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666003291765,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666003291911,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666003292090,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666003292259,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666003292417,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666003292591,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666003292764,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666003292938,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003293111,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_sn\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5355\\\\u53f7\",\"id\":1666003293284,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f weixin:\\\\u5fae\\\\u4fe1 yue:\\\\u4f59\\\\u989d offline:\\\\u7ebf\\\\u4e0b alipay:\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":1666003293457,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":1666003293604,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1666003293787,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1666003416393,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1666003416579,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_uid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u7528\\\\u6237ID\",\"id\":1666003416739,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1666003416913,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":1666003417064,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":1666003417219,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1666003417366,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u62b5\\\\u6263\",\"id\":1666003417539,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_postage\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u59cb\\\\u90ae\\\\u8d39\",\"id\":1666003417699,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u603b\\\\u4ef7\",\"id\":1666003417846,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type_name\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":1666003417993,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1666003418153,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003418285,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"ID\",\"id\":1666003289819,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1666003289991,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":1666003290155,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666003290286,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1666003290448,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":1666003290590,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_price\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666003290754,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":1666003290898,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":1666003291073,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":1666003291234,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":1666003291391,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":1666003291566,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":1666003291765,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666003291911,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":1666003292090,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":1666003292259,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":1666003292417,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":1666003292591,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":1666003292764,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":1666003292938,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":1666003293111,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_sn\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5355\\\\u53f7\",\"id\":1666003293284,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f weixin:\\\\u5fae\\\\u4fe1 yue:\\\\u4f59\\\\u989d offline:\\\\u7ebf\\\\u4e0b alipay:\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":1666003293457,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":1666003293604,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1666003293787,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1666003416393,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1666003416579,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_uid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u7528\\\\u6237ID\",\"id\":1666003416739,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1666003416913,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":1666003417064,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":1666003417219,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1666003417366,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u62b5\\\\u6263\",\"id\":1666003417539,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_postage\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u59cb\\\\u90ae\\\\u8d39\",\"id\":1666003417699,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u603b\\\\u4ef7\",\"id\":1666003417846,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type_name\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":1666003417993,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1666003418153,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1666003418285,\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"ID\",\"id\":\"1666003289819\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1666003289991\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u5355\\\\u53f7\",\"id\":\"1666003290155\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1666003290286\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type\",\"type\":\"number\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001 1\\\\u4ec5\\\\u9000\\\\u6b3e 2\\\\u9000\\\\u8d27\\\\u9000\\\\u6b3e 3\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e 4\\\\u5546\\\\u54c1\\\\u5f85\\\\u9000\\\\u8d27 5\\\\u9000\\\\u8d27\\\\u5f85\\\\u6536\\\\u8d27 6\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1666003290448\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u6570\\\\u91cf\",\"id\":\"1666003290590\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_price\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":\"1666003290754\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_price\",\"type\":\"string\",\"trip\":\"\\\\u5df2\\\\u9000\\\\u6b3e\\\\u91d1\\\\u989d\",\"id\":\"1666003290898\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_phone\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u7535\\\\u8bdd\",\"id\":\"1666003291073\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\",\"id\":\"1666003291234\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_express_name\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\",\"id\":\"1666003291391\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_explain\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u5907\\\\u6ce8\",\"id\":\"1666003291566\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_img\",\"type\":\"array\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u56fe\\\\u7247\",\"id\":\"1666003291765\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"trip\":\"\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666003291911\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refuse_reason\",\"type\":\"string\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u9000\\\\u6b3e\\\\u539f\\\\u56e0\",\"id\":\"1666003292090\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remark\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5907\\\\u6ce8\",\"id\":\"1666003292259\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refunded_time\",\"type\":\"number\",\"trip\":\"\\\\u5904\\\\u7406\\\\u65f6\\\\u95f4\",\"id\":\"1666003292417\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_cancel\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u53d6\\\\u6d88\",\"id\":\"1666003292591\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_pink_cancel\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u62fc\\\\u56e2\\\\u81ea\\\\u52a8\\\\u53d6\\\\u6d88\",\"id\":\"1666003292764\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_del\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u662f\\\\u5426\\\\u5220\\\\u9664\",\"id\":\"1666003292938\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u7533\\\\u8bf7\\\\u9000\\\\u6b3e\\\\u65f6\\\\u95f4\",\"id\":\"1666003293111\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_order_sn\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5355\\\\u53f7\",\"id\":\"1666003293284\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f weixin:\\\\u5fae\\\\u4fe1 yue:\\\\u4f59\\\\u989d offline:\\\\u7ebf\\\\u4e0b alipay:\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":\"1666003293457\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001 1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":\"1666003293604\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"1666003293787\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":\"1666003416393\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":\"1666003416579\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_uid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u7528\\\\u6237ID\",\"id\":\"1666003416739\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":\"1666003416913\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"vip_true_price\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5546\\\\u54c1\\\\u4f18\\\\u60e0\",\"id\":\"1666003417064\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4f7f\\\\u7528\",\"id\":\"1666003417219\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":\"1666003417366\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u62b5\\\\u6263\",\"id\":\"1666003417539\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_postage\",\"type\":\"string\",\"trip\":\"\\\\u539f\\\\u59cb\\\\u90ae\\\\u8d39\",\"id\":\"1666003417699\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u603b\\\\u4ef7\",\"id\":\"1666003417846\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_type_name\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u72b6\\\\u6001\\\\u540d\\\\u79f0\",\"id\":\"1666003417993\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":\"1666003418153\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1666003418285\",\"parentId\":\"row_4746\",\"_X_ROW_CHILD\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1666003536316,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1666003541917,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1666003542115,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1666003542341,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":1666003542608,\"parentId\":1666003418285,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1666003536316\",\"parentId\":\"1666003418285\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1666003541917\",\"parentId\":\"1666003418285\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1666003542115\",\"parentId\":\"1666003418285\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1666003542341\",\"parentId\":\"1666003418285\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u6570\\\\u91cf\",\"id\":\"1666003542608\",\"parentId\":\"1666003418285\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/272753574860029952', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"id\": 2,\n \"store_order_id\": 10,\n \"order_id\": \"272753574860029952\",\n \"uid\": 2,\n \"refund_type\": 6,\n \"refund_num\": 1,\n \"refund_price\": \"25.90\",\n \"refunded_price\": \"25.90\",\n \"refund_phone\": \"\",\n \"refund_express\": \"\",\n \"refund_express_name\": \"\",\n \"refund_explain\": \"1111\",\n \"refund_img\": [],\n \"refund_reason\": \"收货地址填错了\",\n \"refuse_reason\": \"\",\n \"remark\": \"culpa sint nulla reprehenderit amet\",\n \"refunded_time\": 1656315941,\n \"is_cancel\": 0,\n \"is_pink_cancel\": 0,\n \"is_del\": 0,\n \"add_time\": 1656315919,\n \"store_order_sn\": \"wx272753667579314176\",\n \"pay_type\": \"yue\",\n \"paid\": 1,\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"pay_uid\": 2,\n \"pay_time\": 1656301261,\n \"vip_true_price\": \"0.00\",\n \"use_integral\": \"0.00\",\n \"integral_price\": \"0.00\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"pay_postage\": \"0.00\",\n \"total_price\": \"25.90\",\n \"items\": [\n {\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1\n }\n ],\n \"refund_type_name\": \"已退款\",\n \"pay_type_name\": \"余额支付\"\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(833, 89, 'outapi', '商家同意退款', '', 'refund/agree/<order_id>', 'PUT', 'app/outapi/controller/RefundOrder.php', 'agree', '', '', '', '', '', 0, '2023-05-06 08:03:02', NULL),
|
||
(834, 89, 'outapi', '商家拒绝退款', '', 'refund/refuse/<order_id>', 'PUT', 'app/outapi/controller/RefundOrder.php', 'refuse', '[{\"attribute\":\"order_id\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u552e\\\\u540e\\\\u5355\\\\u53f7\",\"id\":\"row_5448\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_reason\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u62d2\\\\u7edd\\\\u539f\\\\u56e0\",\"id\":\"row_5518\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_5455\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_5462\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/refund/refuse/275306677517942784\n{\n \"refund_reason\": \"该商品不支持退款\"\n}', '{\n \"status\": 200,\n \"msg\": \"操作成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(835, 90, 'outapi', '优惠券列表', '', 'coupon/list', 'GET', 'app/outapi/controller/StoreCoupon.php', 'lst', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_855\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_862\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_869\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":1665990627957,\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665990629369,\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":1665990627957,\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665990629369,\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u5217\\\\u8868\",\"id\":\"1665990627957\",\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665990643050,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":1665990652448,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":1665990653531,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":1665990653876,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665990654198,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":1665990654608,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":1665990655435,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":1665990655996,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990656396,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":1665990656772,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":1665990657172,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":1665990657541,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":1665990657944,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":1665990658331,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":1665990658728,\"parentId\":1665990627957,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":\"1665990643050\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_title\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":\"1665990652448\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"type\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u7c7b\\\\u578b 0\\\\u901a\\\\u7528\\\\u5238 1\\\\u54c1\\\\u7c7b\\\\u5238 2\\\\u5546\\\\u54c1\\\\u5238\",\"id\":\"1665990653531\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u9762\\\\u503c\",\"id\":\"1665990653876\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":\"1665990654198\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":\"1665990654608\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_permanent\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u9650\\\\u91cf 1\\\\u4e0d\\\\u9650\\\\u91cf 0\\\\u9650\\\\u91cf\",\"id\":\"1665990655435\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 0\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":\"1665990655996\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":\"1665990656396\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":\"1665990656772\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":\"1665990657172\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":\"1665990657541\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"1665990657944\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf \\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":\"1665990658331\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"remain_count\",\"type\":\"number\",\"trip\":\"\\\\u5269\\\\u4f59\\\\u9886\\\\u53d6\\\\u6570\\\\u91cf\",\"id\":\"1665990658728\",\"parentId\":\"1665990627957\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1665990629369\",\"parentId\":\"row_869\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/coupon/list?status=1&receive_type=1&coupon_title=新人券&page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 3,\n \"coupon_title\": \"新人券\",\n \"type\": 0,\n \"coupon_price\": \"10.00\",\n \"use_min_price\": \"0.00\",\n \"receive_type\": 2,\n \"is_permanent\": 1,\n \"add_time\": 1658301477,\n \"start_time\": 0,\n \"end_time\": 0,\n \"start_use_time\": 0,\n \"end_use_time\": 0,\n \"coupon_time\": 1,\n \"status\": 1,\n \"total_count\": 0,\n \"remain_count\": 0\n },\n {\n \"id\": 2,\n \"coupon_title\": \"不限量优惠券\",\n \"type\": 0,\n \"coupon_price\": \"10.00\",\n \"use_min_price\": \"100.00\",\n \"receive_type\": 1,\n \"is_permanent\": 1,\n \"add_time\": 1658301118,\n \"start_time\": 1657728000,\n \"end_time\": 1660665600,\n \"start_use_time\": 0,\n \"end_use_time\": 0,\n \"coupon_time\": 5,\n \"status\": 1,\n \"total_count\": 0,\n \"remain_count\": 0\n },\n {\n \"id\": 1,\n \"coupon_title\": \"通用优惠券\",\n \"type\": 0,\n \"coupon_price\": \"11.00\",\n \"use_min_price\": \"25.00\",\n \"receive_type\": 1,\n \"is_permanent\": 0,\n \"add_time\": 1658300781,\n \"start_time\": 1658332800,\n \"end_time\": 1661184000,\n \"start_use_time\": 0,\n \"end_use_time\": 0,\n \"coupon_time\": 1,\n \"status\": 1,\n \"total_count\": 60,\n \"remain_count\": 60\n }\n ],\n \"count\": 3\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(836, 90, 'outapi', '新增优惠券', '', 'coupon', 'POST', 'app/outapi/controller/StoreCoupon.php', 'save', '[{\"attribute\":\"coupon_title\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u540d\\\\u79f0\",\"id\":\"row_349\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u9762\\\\u503c\",\"id\":\"row_356\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"use_min_price\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u6700\\\\u4f4e\\\\u6d88\\\\u8d39\\\\u91d1\\\\u989d \\\\u4e3a0\\\\u5219\\\\u6ca1\\\\u6709\\\\u9650\\\\u5236\",\"id\":\"row_363\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_time\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570 \\\\u5929\\\\u6570\\\\u4f5c\\\\u4e3a\\\\u5355\\\\u4f4d,\\\\u9886\\\\u53d6\\\\u540e\\\\u591a\\\\u5c11\\\\u5929\\\\u5185\\\\u6709\\\\u6548\",\"id\":\"row_370\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_use_time\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a\\\\u96f6\\\\u5219\\\\u6309\\\\u4f7f\\\\u7528\\\\u65f6\\\\u95f4\\\\u5929\\\\u6570\\\\u8ba1\\\\u7b97\",\"id\":\"row_377\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_use_time\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4f7f\\\\u7528\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":\"row_384\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"start_time\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u5f00\\\\u59cb\\\\u65f6\\\\u95f4 \\\\u4e3a0\\\\u5219\\\\u4e0d\\\\u9650\\\\u65f6\",\"id\":\"row_391\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"end_time\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u7ed3\\\\u675f\\\\u65f6\\\\u95f4\",\"id\":\"row_398\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"receive_type\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u65b9\\\\u5f0f 1\\\\u624b\\\\u52a8\\\\u9886\\\\u53d6 2\\\\u65b0\\\\u4eba\\\\u5238 3\\\\u8d60\\\\u9001\\\\u5238 4\\\\u4f1a\\\\u5458\\\\u5238\",\"id\":\"row_405\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_count\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u9886\\\\u53d6\\\\u9650\\\\u91cf\\\\u6570 0\\\\u4e3a\\\\u4e0d\\\\u9650\\\\u91cf\",\"id\":\"row_412\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u72b6\\\\u6001 1 \\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed\",\"id\":\"row_419\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_426\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_433\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_440\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665989997981,\"parentId\":\"row_440\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":1665989997981,\"parentId\":\"row_440\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID\",\"id\":\"1665989997981\",\"parentId\":\"row_440\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"coupon_title\": \"不限量优惠券\",\n \"coupon_price\": \"25.05\",\n \"use_min_price\": \"50.00\",\n \"coupon_time\": 3,\n \"start_use_time\": 0,\n \"end_use_time\": 0,\n \"start_time\": 0,\n \"end_time\": 0,\n \"receive_type\": 1,\n \"total_count\": 0,\n \"status\": 0\n}', '{\n \"status\": 200,\n \"msg\": \"保存成功\",\n \"data\": {\n \"id\": 15\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(837, 90, 'outapi', '修改优惠券状态', '', 'coupon/status/<id>/<status>', 'PUT', 'app/outapi/controller/StoreCoupon.php', 'status', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/coupon/status/1/1', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(838, 90, 'outapi', '删除优惠券', '', 'coupon/<id>', 'DELETE', 'app/outapi/controller/StoreCoupon.php', 'delete', '[]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_456\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_463\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/coupon/1', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(839, 91, 'outapi', '用户等级列表', '', 'user_level/list', 'GET', 'app/outapi/controller/UserLevel.php', 'lst', '[{\"attribute\":\"title\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":\"row_740\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_747\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_754\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_761\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\",\"id\":1666945894212,\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666945894384,\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\",\"id\":1666945894212,\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666945894384,\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\",\"id\":\"1666945894212\",\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":1666945916294,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945916493,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":1666945916651,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":1666945916826,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":1666945917587,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":1666945917775,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":1666945917944,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":1666945918118,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":1666945918305,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945984000,\"parentId\":1666945894212,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\",\"id\":\"1666945916294\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"name\",\"type\":\"string\",\"trip\":\"\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":\"1666945916493\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"grade\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7b49\\\\u7ea7\",\"id\":\"1666945916651\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"discount\",\"type\":\"number\",\"trip\":\"\\\\u4eab\\\\u53d7\\\\u6298\\\\u6263\",\"id\":\"1666945916826\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u80cc\\\\u666f\\\\u56fe\",\"id\":\"1666945917587\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"icon\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u6807\",\"id\":\"1666945917775\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"explain\",\"type\":\"string\",\"trip\":\"\\\\u8bf4\\\\u660e\",\"id\":\"1666945917944\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp_num\",\"type\":\"number\",\"trip\":\"\\\\u5347\\\\u7ea7\\\\u7ecf\\\\u9a8c\",\"id\":\"1666945918118\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_show\",\"type\":\"number\",\"trip\":\"\\\\u663e\\\\u793a\\\\u72b6\\\\u6001 1\\\\u663e\\\\u793a 0\\\\u9690\\\\u85cf\",\"id\":\"1666945918305\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"string\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":\"1666945984000\",\"parentId\":\"1666945894212\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1666945894384\",\"parentId\":\"row_761\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/user_level/list?title=等级1', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 1,\n \"name\": \"V1\",\n \"grade\": 1,\n \"discount\": 99,\n \"image\": \"https://demo.crmeb.comstatics/system_images/user_level_1_bgimg.jpeg\",\n \"icon\": \"https://demo.crmeb.comstatics/system_images/user_level_1_icon.jpeg\",\n \"explain\": \"V1\",\n \"exp_num\": 500,\n \"is_show\": 1,\n \"add_time\": \"2019-03-29 09:57:19\"\n },\n {\n \"id\": 2,\n \"name\": \"V2\",\n \"grade\": 2,\n \"discount\": 97,\n \"image\": \"https://demo.crmeb.comstatics/system_images/user_level_2_bgimg.jpeg\",\n \"icon\": \"https://demo.crmeb.comstatics/system_images/user_level_2_icon.jpeg\",\n \"explain\": \"V2\",\n \"exp_num\": 1000,\n \"is_show\": 1,\n \"add_time\": \"2019-03-29 09:59:02\"\n },\n {\n \"id\": 3,\n \"name\": \"V3\",\n \"grade\": 3,\n \"discount\": 95,\n \"image\": \"https://demo.crmeb.comstatics/system_images/user_level_3_bgimg.jpeg\",\n \"icon\": \"https://demo.crmeb.comstatics/system_images/user_level_3_icon.jpeg\",\n \"explain\": \"V3\",\n \"exp_num\": 3000,\n \"is_show\": 1,\n \"add_time\": \"2019-03-29 09:59:57\"\n },\n {\n \"id\": 4,\n \"name\": \"V4\",\n \"grade\": 4,\n \"discount\": 93,\n \"image\": \"https://demo.crmeb.comstatics/system_images/user_level_4_bgimg.jpeg\",\n \"icon\": \"https://demo.crmeb.comstatics/system_images/user_level_4_icon.jpeg\",\n \"explain\": \"V4\",\n \"exp_num\": 8000,\n \"is_show\": 1,\n \"add_time\": \"2019-03-29 10:00:37\"\n },\n {\n \"id\": 5,\n \"name\": \"V5\",\n \"grade\": 5,\n \"discount\": 70,\n \"image\": \"https://demo.crmeb.comstatics/system_images/user_level_5_bgimg.jpeg\",\n \"icon\": \"https://demo.crmeb.comstatics/system_images/user_level_5_icon.jpeg\",\n \"explain\": \"V5\",\n \"exp_num\": 15000,\n \"is_show\": 1,\n \"add_time\": \"2019-03-29 10:01:11\"\n }\n ],\n \"count\": 5\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(840, 91, 'outapi', '用户列表', '', 'user/list', 'GET', 'app/outapi/controller/User.php', 'lst', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u5206\\\\u9875\",\"id\":\"row_333\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u6761\\\\u6570\",\"id\":\"row_340\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_347\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_354\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_361\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u7528\\\\u6237\\\\u6570\\\\u636e\",\"id\":1666945585846,\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666945588267,\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u7528\\\\u6237\\\\u6570\\\\u636e\",\"id\":1666945585846,\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1666945588267,\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u7528\\\\u6237\\\\u6570\\\\u636e\",\"id\":\"1666945585846\",\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1666945628068,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":1666945628257,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":1666945628508,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":1666945628681,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":1666945629013,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1666945629174,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":1666945629334,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":1666945629496,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":1666945629645,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":1666945629801,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":1666945629974,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":1666945630134,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":1666945630280,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":1666945630454,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":1666945630614,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":1666945630787,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":1666945630933,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":1666945631120,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":1666945751767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":1666945751942,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":1666945752114,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":1666945752288,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":1666945752435,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":1666945752623,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":1666945752767,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":1666945752914,\"parentId\":1666945585846,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1666945628068\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":\"1666945628257\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"1666945628508\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"nickname\",\"type\":\"string\",\"trip\":\"\\\\u6635\\\\u79f0\",\"id\":\"1666945628681\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"avatar\",\"type\":\"string\",\"trip\":\"\\\\u5934\\\\u50cf\",\"id\":\"1666945629013\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1666945629174\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"now_money\",\"type\":\"string\",\"trip\":\"\\\\u4f59\\\\u989d\",\"id\":\"1666945629334\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"brokerage_price\",\"type\":\"string\",\"trip\":\"\\\\u4f63\\\\u91d1\\\\u91d1\\\\u989d\",\"id\":\"1666945629496\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integral\",\"type\":\"number\",\"trip\":\"\\\\u79ef\\\\u5206\",\"id\":\"1666945629645\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"exp\",\"type\":\"string\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u7ecf\\\\u9a8c\",\"id\":\"1666945629801\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"sign_num\",\"type\":\"number\",\"trip\":\"\\\\u8fde\\\\u7eed\\\\u7b7e\\\\u5230\\\\u5929\\\\u6570\",\"id\":\"1666945629974\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_type\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7c7b\\\\u578b\",\"id\":\"1666945630134\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":\"1666945630280\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\",\"id\":\"1666945630454\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"agent_level\",\"type\":\"number\",\"trip\":\"\\\\u5206\\\\u9500\\\\u7b49\\\\u7ea7\",\"id\":\"1666945630614\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c\",\"id\":\"1666945630787\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458ID\",\"id\":\"1666945630933\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_time\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u5173\\\\u8054\\\\u65f6\\\\u95f4\",\"id\":\"1666945631120\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650\",\"id\":\"1666945751767\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_count\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237\\\\u8d2d\\\\u4e70\\\\u6b21\\\\u6570\",\"id\":\"1666945751942\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_ever_level\",\"type\":\"number\",\"trip\":\"\\\\u662f\\\\u5426\\\\u6c38\\\\u4e45\\\\u6027\\\\u4f1a\\\\u5458 0\\\\u975e\\\\u6c38\\\\u4e45 1\\\\u6c38\\\\u4e45\",\"id\":\"1666945752114\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_money_level\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u6765\\\\u6e90 0\\\\u4e0d\\\\u662f 1\\\\u82b1\\\\u94b1\\\\u8d2d\\\\u4e70\\\\u7684\\\\u4f1a\\\\u5458 2\\\\u4f1a\\\\u5458\\\\u5361\\\\u9886\\\\u53d6 3\\\\u8d60\\\\u9001\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f\",\"id\":\"1666945752288\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"overdue_time\",\"type\":\"number\",\"trip\":\"\\\\u4f1a\\\\u5458\\\\u5230\\\\u671f\\\\u65f6\\\\u95f4\",\"id\":\"1666945752435\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_uid_nickname\",\"type\":\"string\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u5458\\\\u6635\\\\u79f0\",\"id\":\"1666945752623\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7b49\\\\u7ea7\\\\u540d\\\\u79f0\",\"id\":\"1666945752767\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u6dfb\\\\u52a0\\\\u65f6\\\\u95f4\",\"id\":\"1666945752914\",\"parentId\":\"1666945585846\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1666945588267\",\"parentId\":\"row_361\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/user/list?page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"uid\": 2,\n \"real_name\": \"喜羊羊\",\n \"mark\": \"\",\n \"nickname\": \"130****0001\",\n \"avatar\": \"https://demo.crmeb.comstatics/system_images/default_avatar.jpeg\",\n \"phone\": \"13000000001\",\n \"now_money\": \"97892.39\",\n \"brokerage_price\": \"1.00\",\n \"integral\": 1008,\n \"exp\": \"1008.90\",\n \"sign_num\": 0,\n \"user_type\": \"H5\",\n \"status\": 1,\n \"level\": 2,\n \"agent_level\": 0,\n \"spread_open\": 1,\n \"spread_uid\": 0,\n \"spread_time\": 0,\n \"is_promoter\": 1,\n \"pay_count\": 5,\n \"is_ever_level\": 0,\n \"is_money_level\": 0,\n \"overdue_time\": 0,\n \"add_time\": 1658214778,\n \"spread_uid_nickname\": \"\",\n \"level_name\": \"V2\"\n },\n {\n \"uid\": 1,\n \"real_name\": \"哒答\",\n \"mark\": \"\",\n \"nickname\": \"momo\",\n \"avatar\": \"http://thirdwx.qlogo.cn/mmopen/vi_32/Q3auHgzwzM6XbXMe12oINNuq9uEaxLDWpQxShj4FrLP9vicJRxaP36eLoxIu60pqPfXL6RibvYsGzE4RpXTjgZiag/132\",\n \"phone\": \"13000000000\",\n \"now_money\": \"97982.00\",\n \"brokerage_price\": \"0.00\",\n \"integral\": 0,\n \"exp\": \"0.00\",\n \"sign_num\": 0,\n \"user_type\": \"小程序\",\n \"status\": 1,\n \"level\": 0,\n \"agent_level\": 0,\n \"spread_open\": 1,\n \"spread_uid\": 0,\n \"spread_time\": 0,\n \"is_promoter\": 1,\n \"pay_count\": 3,\n \"is_ever_level\": 0,\n \"is_money_level\": 0,\n \"overdue_time\": 0,\n \"add_time\": 1658214670,\n \"spread_uid_nickname\": \"\",\n \"level_name\": \"\"\n }\n ],\n \"count\": 2\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(841, 91, 'outapi', '新增用户', '', 'user', 'POST', 'app/outapi/controller/User.php', 'save', '[{\"attribute\":\"real_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":\"row_247\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"row_254\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"row_261\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pwd\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5bc6\\\\u7801\",\"id\":\"row_268\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\\\\uff0c\\\\u4ece\\\\u7b49\\\\u7ea7\\\\u5217\\\\u8868\\\\u83b7\\\\u53d6\",\"id\":\"row_275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed(\\\\u9ed8\\\\u8ba4)\",\"id\":\"row_282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed(\\\\u9ed8\\\\u8ba4)\",\"id\":\"row_289\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":\"row_296\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_303\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_310\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_317\",\"_X_ROW_CHILD\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665988030602,\"parentId\":\"row_317\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665988030602,\"parentId\":\"row_317\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1665988030602\",\"parentId\":\"row_317\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '{\n \"real_name\": \"张三\",\n \"phone\": \"15289381076\",\n \"mark\": \"重要客户\",\n \"pwd\": \"123123\",\n \"level\": 5,\n \"spread_open\": 1,\n \"is_promoter\": 1,\n \"status\": 1\n}', '{\n \"status\": 200,\n \"msg\": \"添加成功\",\n \"data\": {\n \"uid\": 10\n }\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(842, 91, 'outapi', '修改用户', '', 'user/<uid>', 'PUT', 'app/outapi/controller/User.php', 'update', '[{\"attribute\":\"real_name\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u771f\\\\u5b9e\\\\u59d3\\\\u540d\",\"id\":\"row_247\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"phone\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"row_254\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"mark\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u5907\\\\u6ce8\",\"id\":\"row_261\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pwd\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u5bc6\\\\u7801\\\\uff0c\\\\u7559\\\\u7a7a\\\\u4e0d\\\\u66f4\\\\u65b0\",\"id\":\"row_268\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"level\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7b49\\\\u7ea7ID\\\\uff0c\\\\u4ece\\\\u7b49\\\\u7ea7\\\\u5217\\\\u8868\\\\u83b7\\\\u53d6\",\"id\":\"row_275\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"spread_open\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u8d44\\\\u683c 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed(\\\\u9ed8\\\\u8ba4)\",\"id\":\"row_282\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"is_promoter\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u63a8\\\\u5e7f\\\\u6743\\\\u9650 1\\\\u5f00\\\\u542f 0\\\\u5173\\\\u95ed(\\\\u9ed8\\\\u8ba4)\",\"id\":\"row_289\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u7528\\\\u6237\\\\u72b6\\\\u6001 1\\\\u542f\\\\u7528 0\\\\u7981\\\\u7528\",\"id\":\"row_296\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_210\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_217\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/user/1\n{\n \"real_name\": \"张某\",\n \"phone\": \"15289381077\",\n \"mark\": \"重要客户\",\n \"pwd\": \"123123\",\n \"level\": 4,\n \"spread_open\": 1,\n \"is_promoter\": 1,\n \"status\": 1\n}', '{\n \"status\": 200,\n \"msg\": \"修改成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(843, 91, 'outapi', '赠送积分/金额', '', 'user/give/<uid>', 'PUT', 'app/outapi/controller/User.php', 'give', '[{\"attribute\":\"money_status\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4f59\\\\u989d\\\\u4fee\\\\u6539\\\\u7c7b\\\\u578b 1\\\\u589e\\\\u52a0 2\\\\u51cf\\\\u5c11\",\"id\":\"row_290\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"money\",\"type\":\"string\",\"must\":\"1\",\"trip\":\"\\\\u4f59\\\\u989d 0\\\\u4e0d\\\\u66f4\\\\u65b0\",\"id\":\"row_297\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integration_status\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u79ef\\\\u5206\\\\u4fee\\\\u6539\\\\u7c7b\\\\u578b 1\\\\u589e\\\\u52a0 2\\\\u51cf\\\\u5c11\",\"id\":\"row_304\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"integration\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u79ef\\\\u5206 0\\\\u4e0d\\\\u66f4\\\\u65b0\",\"id\":\"row_311\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"days\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4ed8\\\\u8d39\\\\u4f1a\\\\u5458\\\\u65f6\\\\u957f \\\\u4ee5\\\\u5929\\\\u4e3a\\\\u5355\\\\u4f4d\\\\u7d2f\\\\u52a0 0\\\\u4e0d\\\\u66f4\\\\u65b0\",\"id\":\"row_318\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon\",\"type\":\"number\",\"must\":\"1\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238ID 0\\\\u4e0d\\\\u8d60\\\\u9001\",\"id\":\"row_325\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_332\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_339\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/user/give/1\n{\n \"money_status\": 1,\n \"money\": \"9.02\",\n \"integration_status\": 1,\n \"integration\": 50,\n \"days\": 1,\n \"coupon\": 0\n}', '{\n \"status\": 200,\n \"msg\": \"操作成功\"\n}', 0, '2023-05-06 08:03:02', NULL),
|
||
(844, 92, 'kefuapi', '账号登录', '', 'login', 'POST', 'app/kefuapi/controller/Login.php', 'login', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(845, 92, 'kefuapi', '获取扫码登录key', '', 'key', 'GET', 'app/kefuapi/controller/Login.php', 'getLoginKey', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(846, 92, 'kefuapi', '检测扫码情况', '', 'scan/<key>', 'GET', 'app/kefuapi/controller/Login.php', 'scanLogin', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(847, 92, 'kefuapi', '获取配置', '', 'config', 'GET', 'app/kefuapi/controller/Login.php', 'getAppid', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(848, 92, 'kefuapi', '微信扫码登录', '', 'wechat', 'GET', 'app/kefuapi/controller/Login.php', 'wechatAuth', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(849, 93, 'kefuapi', '上传图片', '', 'upload', 'POST', 'app/kefuapi/controller/User.php', 'upload', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(850, 94, 'kefuapi', '和客服聊天过的用户', '', 'user/record', 'GET', 'app/kefuapi/controller/User.php', 'recordList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(851, 94, 'kefuapi', '用户详细信息', '', 'user/info/<uid>', 'GET', 'app/kefuapi/controller/User.php', 'userInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(852, 94, 'kefuapi', '用户标签', '', 'user/label/<uid>', 'GET', 'app/kefuapi/controller/User.php', 'getUserLabel', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(853, 94, 'kefuapi', '设置用户标签', '', 'user/label/<uid>', 'PUT', 'app/kefuapi/controller/User.php', 'setUserLabel', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(854, 94, 'kefuapi', '获取用户分组', '', 'user/group', 'GET', 'app/kefuapi/controller/User.php', 'getUserGroup', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(855, 94, 'kefuapi', '设置用户分组', '', 'user/group/<uid>/<id>', 'PUT', 'app/kefuapi/controller/User.php', 'setUserGroup', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(856, 94, 'kefuapi', '退出登录', '', 'user/logout', 'POST', 'app/kefuapi/controller/User.php', 'logout', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(857, 95, 'kefuapi', '订单列表', '', 'order/list/<uid>', 'GET', 'app/kefuapi/controller/Order.php', 'getUserOrderList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(858, 95, 'kefuapi', '订单发货', '', 'order/delivery/<id>', 'POST', 'app/kefuapi/controller/Order.php', 'delivery_keep', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(859, 95, 'kefuapi', '订单修改', '', 'order/update/<id>', 'PUT', 'app/kefuapi/controller/Order.php', 'update', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(860, 95, 'kefuapi', '订单退款', '', 'order/refund', 'POST', 'app/kefuapi/controller/Order.php', 'refund', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(861, 95, 'kefuapi', '订单退款', '', 'order/refund_form/<id>', 'GET', 'app/kefuapi/controller/Order.php', 'refundForm', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(862, 95, 'kefuapi', '订单退款', '', 'order/edit/<id>', 'GET', 'app/kefuapi/controller/Order.php', 'edit', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(863, 95, 'kefuapi', '订单备注', '', 'order/remark', 'POST', 'app/kefuapi/controller/Order.php', 'remark', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(864, 95, 'kefuapi', '获取订单详情', '', 'order/info/<id>', 'GET', 'app/kefuapi/controller/Order.php', 'orderInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(865, 95, 'kefuapi', '获取订单详情', '', 'order/export', 'GET', 'app/kefuapi/controller/Order.php', 'export', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(866, 95, 'kefuapi', '获取物流公司模板', '', 'order/temp', 'GET', 'app/kefuapi/controller/Order.php', 'getExportTemp', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(867, 95, 'kefuapi', '获取配送员列表全部', '', 'order/delivery_all', 'GET', 'app/kefuapi/controller/Order.php', 'getDeliveryAll', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(868, 95, 'kefuapi', '获取配送员列表全部', '', 'order/delivery_info', 'GET', 'app/kefuapi/controller/Order.php', 'getDeliveryInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(869, 95, 'kefuapi', '单个订单号进行核销', '', 'order/verific/<id>', 'GET', 'app/kefuapi/controller/Order.php', 'order_verific', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(870, 96, 'kefuapi', '热销商品', '', 'product/hot/<uid>', 'GET', 'app/kefuapi/controller/Product.php', 'getProductHotSale', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(871, 96, 'kefuapi', '商品足记', '', 'product/visit/<uid>', 'GET', 'app/kefuapi/controller/Product.php', 'getVisitProductList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(872, 96, 'kefuapi', '购买记录', '', 'product/cart/<uid>', 'GET', 'app/kefuapi/controller/Product.php', 'getCartProductList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(873, 96, 'kefuapi', '商品详情', '', 'product/info/<id>', 'GET', 'app/kefuapi/controller/Product.php', 'getProductInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(874, 97, 'kefuapi', '聊天记录', '', 'service/list', 'GET', 'app/kefuapi/controller/Service.php', 'getChatList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(875, 97, 'kefuapi', '客服详细信息', '', 'service/info', 'GET', 'app/kefuapi/controller/Service.php', 'getServiceInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(876, 97, 'kefuapi', '客服话术', '', 'service/speechcraft', 'GET', 'app/kefuapi/controller/Service.php', 'getSpeechcraftList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(877, 97, 'kefuapi', '添加话术', '', 'service/speechcraft', 'POST', 'app/kefuapi/controller/Service.php', 'saveSpeechcraft', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(878, 97, 'kefuapi', '客服转接', '', 'service/transfer', 'POST', 'app/kefuapi/controller/Service.php', 'transfer', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(879, 97, 'kefuapi', '客服转接', '', 'service/transfer_list', 'GET', 'app/kefuapi/controller/Service.php', 'getServiceList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(880, 97, 'kefuapi', '分类列表', '', 'service/cate', 'GET', 'app/kefuapi/controller/Service.php', 'getCateList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(881, 97, 'kefuapi', '保存分类', '', 'service/cate', 'POST', 'app/kefuapi/controller/Service.php', 'saveCate', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(882, 97, 'kefuapi', '编辑分类', '', 'service/cate/<id>', 'PUT', 'app/kefuapi/controller/Service.php', 'editCate', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(883, 97, 'kefuapi', '删除分类', '', 'service/cate/<id>', 'DELETE', 'app/kefuapi/controller/Service.php', 'deleteCate', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(884, 97, 'kefuapi', '修改话术', '', 'service/speechcraft/<id>', 'PUT', 'app/kefuapi/controller/Service.php', 'editSpeechcraft', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(885, 97, 'kefuapi', '删除话术', '', 'service/speechcraft/<id>', 'DELETE', 'app/kefuapi/controller/Service.php', 'deleteSpeechcraft', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(886, 98, 'kefuapi', '随机客服信息', '', 'tourist/user', 'GET', 'app/kefuapi/controller/Common.php', 'getServiceUser', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(887, 98, 'kefuapi', '获取客服广告', '', 'tourist/adv', 'GET', 'app/kefuapi/controller/Common.php', 'getKfAdv', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(888, 98, 'kefuapi', '保存客服反馈内容', '', 'tourist/feedback', 'POST', 'app/kefuapi/controller/Common.php', 'saveFeedback', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(889, 98, 'kefuapi', '获取反馈页面广告位内容', '', 'tourist/feedback', 'GET', 'app/kefuapi/controller/Common.php', 'getFeedbackInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(890, 98, 'kefuapi', '获取订单信息', '', 'tourist/order/<order_id>', 'GET', 'app/kefuapi/controller/Common.php', 'getOrderInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(891, 98, 'kefuapi', '获取商品信息', '', 'tourist/product/<id>', 'GET', 'app/kefuapi/controller/Common.php', 'getProductInfo', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(892, 98, 'kefuapi', '获取聊天记录', '', 'tourist/chat', 'GET', 'app/kefuapi/controller/Common.php', 'getChatList', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(893, 98, 'kefuapi', '图片上传', '', 'tourist/upload', 'POST', 'app/kefuapi/controller/Common.php', 'upload', '', '', '', '', '', 0, '2023-05-06 08:03:19', NULL),
|
||
(1428, 146, 'api', '获取扫码登录key', '', 'pc/key', 'GET', 'app/api/controller/pc/LoginController.php', 'getLoginKey', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1429, 146, 'api', '检测扫码情况', '', 'pc/scan/<key>', 'GET', 'app/api/controller/pc/LoginController.php', 'scanLogin', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1430, 146, 'api', '获取开放平台appid', '', 'pc/get_appid', 'GET', 'app/api/controller/pc/LoginController.php', 'getAppid', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1431, 146, 'api', '检测扫码情况', '', 'pc/wechat_auth', 'GET', 'app/api/controller/pc/LoginController.php', 'wechatAuth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1432, 147, 'api', '获取付费会员购买页面二维码', '', 'pc/get_pay_vip_code', 'GET', 'app/api/controller/pc/HomeController.php', 'getPayVipCode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1433, 147, 'api', '手机购买跳转url配置', '', 'pc/get_product_phone_buy', 'GET', 'app/api/controller/pc/HomeController.php', 'getProductPhoneBuy', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1434, 147, 'api', 'PC首页轮播图', '', 'pc/get_banner', 'GET', 'app/api/controller/pc/HomeController.php', 'getBanner', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1435, 147, 'api', '首页分类尚品', '', 'pc/get_category_product', 'GET', 'app/api/controller/pc/HomeController.php', 'getCategoryProduct', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1436, 147, 'api', '商品列表', '', 'pc/get_products', 'GET', 'app/api/controller/pc/ProductController.php', 'getProductList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1437, 147, 'api', '商品详情小程序二维码', '', 'pc/get_product_code/<product_id>/<type?>', 'GET', 'app/api/controller/pc/ProductController.php', 'getProductRoutineCode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1438, 147, 'api', '获取城市数据', '', 'pc/get_city/<pid>', 'GET', 'app/api/controller/pc/PublicController.php', 'getCity', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1439, 147, 'api', '轮询订单状态接口', '', 'pc/check_order_status/<order_id>/<end_time>', 'GET', 'app/api/controller/pc/OrderController.php', 'checkOrderStatus', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1440, 147, 'api', '获取公司信息', '', 'pc/get_company_info', 'GET', 'app/api/controller/pc/PublicController.php', 'getCompanyInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1441, 147, 'api', '获取推荐商品', '', 'pc/get_recommend/<type>', 'GET', 'app/api/controller/pc/ProductController.php', 'getRecommendList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1442, 147, 'api', '获取关注二维码', '', 'pc/get_wechat_qrcode', 'GET', 'app/api/controller/pc/PublicController.php', 'getWechatQrcode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1443, 147, 'api', '获取优品推荐', '', 'pc/get_good_product', 'GET', 'app/api/controller/pc/ProductController.php', 'getGoodProduct', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1444, 148, 'api', '购物车列表', '', 'pc/get_cart_list', 'GET', 'app/api/controller/pc/CartController.php', 'getCartList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1445, 148, 'api', '余额记录', '', 'pc/get_balance_record/<type>', 'GET', 'app/api/controller/pc/UserController.php', 'getBalanceRecord', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1446, 148, 'api', '订单列表', '', 'pc/get_order_list', 'GET', 'app/api/controller/pc/OrderController.php', 'getOrderList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1447, 148, 'api', '退款订单列表', '', 'pc/get_refund_order_list', 'GET', 'app/api/controller/pc/OrderController.php', 'getRefundOrderList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1448, 148, 'api', '收藏列表', '', 'pc/get_collect_list', 'GET', 'app/api/controller/pc/UserController.php', 'getCollectList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1449, 149, 'api', '公众号服务', '', 'wechat/serve', '*', 'app/api/controller/v1/wechat/WechatController.php', 'serve', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1450, 149, 'api', '支付回调', '', 'pay/notify/<type>', '*', 'app/api/controller/v1/PayController.php', 'notify', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1451, 149, 'api', '获取统计代码', '', 'get_script', 'GET', 'app/api/controller/v1/PublicController.php', 'getScript', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1452, 149, 'api', '获取代码版本号', '', 'version', 'GET', 'app/api/controller/v1/PublicController.php', 'getVersion', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1453, 150, 'api', '微信APP授权', '', 'apple_login', 'POST', 'app/api/controller/v1/LoginController.php', 'appleLogin', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1454, 150, 'api', '账号密码登录', '', 'login', 'POST', 'app/api/controller/v1/LoginController.php', 'login', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1455, 150, 'api', '获取发短信的key', '', 'verify_code', 'GET', 'app/api/controller/v1/LoginController.php', 'verifyCode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1456, 150, 'api', '手机号登录', '', 'login/mobile', 'POST', 'app/api/controller/v1/LoginController.php', 'mobile', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1457, 150, 'api', '图片验证码', '', 'sms_captcha', 'GET', 'app/api/controller/v1/LoginController.php', 'captcha', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1458, 150, 'api', '图形验证码', '', 'ajcaptcha', 'GET', 'app/api/controller/v1/LoginController.php', 'ajcaptcha', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1459, 150, 'api', '图形验证码验证', '', 'ajcheck', 'POST', 'app/api/controller/v1/LoginController.php', 'ajcheck', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1460, 150, 'api', '手机验证码发送', '', 'register/verify', 'POST', 'app/api/controller/v1/LoginController.php', 'verify', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1461, 150, 'api', '手机号注册', '', 'register', 'POST', 'app/api/controller/v1/LoginController.php', 'register', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1462, 150, 'api', '手机号修改密码', '', 'register/reset', 'POST', 'app/api/controller/v1/LoginController.php', 'reset', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1463, 150, 'api', '绑定手机号', '', 'binding', 'POST', 'app/api/controller/v1/LoginController.php', 'binding_phone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1464, 150, 'api', '查询版权', '', 'copyright', 'GET', 'app/api/controller/v1/PublicController.php', 'copyright', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1465, 150, 'api', '商城基础配置汇总接口', '', 'basic_config', 'GET', 'app/api/controller/v1/PublicController.php', 'getMallBasicConfig', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1466, 151, 'api', '订单数据统计', '', 'admin/order/statistics', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'statistics', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1467, 151, 'api', '订单每月统计数据', '', 'admin/order/data', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'data', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1468, 151, 'api', '订单列表', '', 'admin/order/list', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1469, 151, 'api', '退款订单列表', '', 'admin/refund_order/list', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'refundOrderList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1470, 151, 'api', '订单详情', '', 'admin/order/detail/<orderId>', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1471, 151, 'api', '退款订单详情', '', 'admin/refund_order/detail/<uni>', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'refundOrderDetail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1472, 151, 'api', '订单发货获取订单信息', '', 'admin/order/delivery/gain/<orderId>', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'delivery_gain', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1473, 151, 'api', '订单发货', '', 'admin/order/delivery/keep/<id>', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'delivery_keep', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1474, 151, 'api', '订单改价', '', 'admin/order/price', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'price', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1475, 151, 'api', '订单备注', '', 'admin/order/remark', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'remark', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1476, 151, 'api', '订单同意退货', '', 'admin/order/agreeExpress', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'agreeExpress', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1477, 151, 'api', '退款订单备注', '', 'admin/refund_order/remark', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'refundRemark', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1478, 151, 'api', '订单交易额时间统计', '', 'admin/order/time', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'time', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1479, 151, 'api', '订单支付', '', 'admin/order/offline', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'offline', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1480, 151, 'api', '订单退款', '', 'admin/order/refund', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'refund', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1481, 151, 'api', '订单核销', '', 'order/order_verific', 'POST', 'app/api/controller/v1/admin/StoreOrderController.php', 'order_verific', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1482, 151, 'api', '获取配送员', '', 'admin/order/delivery', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'getDeliveryAll', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1483, 151, 'api', '获取电子面单默认信息', '', 'admin/order/delivery_info', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'getDeliveryInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1484, 151, 'api', '获取电子面单模板获取', '', 'admin/order/export_temp', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'getExportTemp', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1485, 151, 'api', '获取物流公司', '', 'admin/order/export_all', 'GET', 'app/api/controller/v1/admin/StoreOrderController.php', 'getExportAll', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1486, 152, 'api', '获取支付方式', '', 'pay/config', 'GET', 'app/api/controller/v1/PayController.php', 'config', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1487, 152, 'api', '用户修改手机号', '', 'user/updatePhone', 'POST', 'app/api/controller/v1/LoginController.php', 'update_binding_phone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1488, 152, 'api', '设置登录code', '', 'user/code', 'POST', 'app/api/controller/v1/user/StoreService.php', 'setLoginCode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1489, 152, 'api', '查看code是否可用', '', 'user/code', 'GET', 'app/api/controller/v1/LoginController.php', 'setLoginKey', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1490, 152, 'api', '用户绑定手机号', '', 'user/binding', 'POST', 'app/api/controller/v1/LoginController.php', 'user_binding_phone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1491, 152, 'api', '退出登录', '', 'logout', 'GET', 'app/api/controller/v1/LoginController.php', 'logout', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1492, 152, 'api', '切换账号', '', 'switch_h5', 'POST', 'app/api/controller/v1/LoginController.php', 'switch_h5', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1493, 152, 'api', '商品分享二维码', '', 'product/code/<id>', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'code', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1494, 152, 'api', '图片上传', '', 'upload/image', 'POST', 'app/api/controller/v1/PublicController.php', 'upload_image', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1495, 152, 'api', '用户搜索记录', '', 'v2/user/search_list', 'GET', 'app/api/controller/v2/user/UserSearchController.php', 'getUserSeachList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1496, 152, 'api', '新优惠券弹窗接口', '', 'v2/get_today_coupon', 'GET', 'app/api/controller/v2/store/StoreCouponsController.php', 'getTodayCoupon', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1497, 152, 'api', '微信公众号用户是否关注', '', 'v2/subscribe', 'GET', 'app/api/controller/v2/PublicController.php', 'subscribe', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1498, 152, 'api', '首页', '', 'v2/index', 'GET', 'app/api/controller/v2/PublicController.php', 'index', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1499, 152, 'api', '可领取优惠券列表', '', 'v2/coupons', 'GET', 'app/api/controller/v2/store/StoreCouponsController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1500, 153, 'api', '签到配置', '', 'sign/config', 'GET', 'app/api/controller/v1/user/UserSignController.php', 'sign_config', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1501, 153, 'api', '签到列表', '', 'sign/list', 'GET', 'app/api/controller/v1/user/UserSignController.php', 'sign_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1502, 153, 'api', '签到列表(年月)', '', 'sign/month', 'GET', 'app/api/controller/v1/user/UserSignController.php', 'sign_month', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1503, 153, 'api', '签到用户信息', '', 'sign/user', 'POST', 'app/api/controller/v1/user/UserSignController.php', 'sign_user', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1504, 153, 'api', '公众号授权登录', '', 'sign/integral', 'POST', 'app/api/controller/v1/user/UserSignController.php', 'sign_integral', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1505, 154, 'api', '领取优惠券', '', 'coupon/receive', 'POST', 'app/api/controller/v1/store/StoreCouponsController.php', 'receive', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1506, 154, 'api', '批量领取优惠券', '', 'coupon/receive/batch', 'POST', 'app/api/controller/v1/store/StoreCouponsController.php', 'receive_batch', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1507, 154, 'api', '用户已领取优惠券', '', 'coupons/user/<types>', 'GET', 'app/api/controller/v1/store/StoreCouponsController.php', 'user', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1508, 154, 'api', '优惠券 订单列表', '', 'coupons/order/<price>', 'GET', 'app/api/controller/v1/store/StoreCouponsController.php', 'order', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1509, 154, 'api', '获取新人券', '', 'v2/new_coupon', 'GET', 'app/api/controller/v2/store/StoreCouponsController.php', 'getNewCoupon', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1510, 154, 'api', '获取订单下管理的优惠券', '', 'v2/order/product_coupon/<orderId>', 'POST', 'app/api/controller/v2/store/StoreCouponsController.php', 'getOrderProductCoupon', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1511, 155, 'api', '购物车列表', '', 'cart/list', 'GET', 'app/api/controller/v1/store/StoreCartController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1512, 155, 'api', '购物车添加', '', 'cart/add', 'POST', 'app/api/controller/v1/store/StoreCartController.php', 'add', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1513, 155, 'api', '购物车删除', '', 'cart/del', 'POST', 'app/api/controller/v1/store/StoreCartController.php', 'del', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1514, 155, 'api', '订单取消', '', 'order/cancel', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'cancel', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1515, 155, 'api', '购物车修改商品数量', '', 'cart/num', 'POST', 'app/api/controller/v1/store/StoreCartController.php', 'num', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1516, 155, 'api', '购物车数量', '', 'cart/count', 'GET', 'app/api/controller/v1/store/StoreCartController.php', 'count', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1517, 155, 'api', '清除购物车', '', 'v2/reset_cart', 'POST', 'app/api/controller/v2/store/StoreCartController.php', 'resetCart', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1518, 155, 'api', '获取购物车列表', '', 'v2/cart_list', 'GET', 'app/api/controller/v2/store/StoreCartController.php', 'getCartList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1519, 155, 'api', '获取商品规格', '', 'v2/get_attr/<id>/<type>', 'GET', 'app/api/controller/v2/store/StoreProductController.php', 'getProductAttr', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1520, 155, 'api', '获取购物车数量', '', 'v2/set_cart_num', 'POST', 'app/api/controller/v2/store/StoreCartController.php', 'setCartNum', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1521, 156, 'api', '检测是否显示快递和自提标签', '', 'order/check_shipping', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'checkShipping', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1522, 156, 'api', '订单确认', '', 'order/confirm', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'confirm', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1523, 156, 'api', '计算订单金额', '', 'order/computed/<key>', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'computedOrder', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1524, 156, 'api', '订单创建', '', 'order/create/<key>', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'create', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1525, 156, 'api', '订单统计数据', '', 'order/data', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'data', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1526, 156, 'api', '订单列表', '', 'order/list', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'lst', '[{\"attribute\":\"page\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u5206\\\\u9875\",\"id\":\"row_2964\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"limit\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u6761\\\\u6570\",\"id\":\"row_2971\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001: 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"row_2978\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u8ba2\\\\u5355ID|\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"row_2985\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f: 1\\\\u5fae\\\\u4fe1 2\\\\u4f59\\\\u989d 3\\\\u7ebf\\\\u4e0b 4\\\\u652f\\\\u4ed8\\\\u5b9d\",\"id\":\"row_2992\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"string\",\"must\":\"0\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4 2022\\/07\\/12 00:00:00-2022\\/08\\/17 00:00:00\",\"id\":\"row_2999\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"must\":\"0\",\"trip\":\"\\\\u662f\\\\u5426\\\\u652f\\\\u4ed8:1\\\\u5df2\\\\u652f\\\\u4ed8 0\\\\u672a\\\\u652f\\\\u4ed8\",\"id\":\"row_3006\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '', '[{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u72b6\\\\u6001\\\\u7801\",\"id\":\"row_3013\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"msg\",\"type\":\"string\",\"trip\":\"\\\\u4fe1\\\\u606f\\\\u63cf\\\\u8ff0\",\"id\":\"row_3020\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"data\",\"type\":\"array\",\"trip\":\"\\\\u8fd4\\\\u56de\\\\u503c\",\"id\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":1665998356462,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":1665998358704,\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"list\",\"type\":\"array\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u6570\\\\u636e\",\"id\":\"1665998356462\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}],\"children\":[{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":1665998387231,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":1665998387347,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":1665998387507,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":1665998387641,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":1665998387801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":1665998387989,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":1665998388135,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":1665998388311,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":1665998388469,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":1665998388614,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":1665998388788,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":1665998388948,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":1665998389121,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":1665998389281,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":1665998389455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":1665998389615,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":1665998389801,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":1665998389962,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":1665998390163,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":1665998390322,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":1665998390455,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":1665998390642,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":1665998390815,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":1665998390975,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":1665998391190,\"parentId\":1665998356462,\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]}]},{\"attribute\":\"id\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387231\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pid\",\"type\":\"number\",\"trip\":\"\\\\u7236\\\\u7c7b\\\\u8ba2\\\\u5355ID\",\"id\":\"1665998387347\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"order_id\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u53f7\",\"id\":\"1665998387507\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"trade_no\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u6d41\\\\u6c34\\\\u53f7\",\"id\":\"1665998387641\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"uid\",\"type\":\"number\",\"trip\":\"\\\\u7528\\\\u6237ID\",\"id\":\"1665998387801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"freight_price\",\"type\":\"string\",\"trip\":\"\\\\u8fd0\\\\u8d39\\\\u91d1\\\\u989d\",\"id\":\"1665998387989\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"real_name\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u59d3\\\\u540d\",\"id\":\"1665998388135\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_phone\",\"type\":\"string\",\"trip\":\"\\\\u7528\\\\u6237\\\\u7535\\\\u8bdd\",\"id\":\"1665998388311\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"user_address\",\"type\":\"string\",\"trip\":\"\\\\u8be6\\\\u7ec6\\\\u5730\\\\u5740\",\"id\":\"1665998388469\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_num\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u5546\\\\u54c1\\\\u603b\\\\u6570\",\"id\":\"1665998388614\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_price\",\"type\":\"string\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u603b\\\\u4ef7\",\"id\":\"1665998388788\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"total_postage\",\"type\":\"string\",\"trip\":\"\\\\u90ae\\\\u8d39\",\"id\":\"1665998388948\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_price\",\"type\":\"string\",\"trip\":\"\\\\u5b9e\\\\u9645\\\\u652f\\\\u4ed8\\\\u91d1\\\\u989d\",\"id\":\"1665998389121\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"coupon_price\",\"type\":\"string\",\"trip\":\"\\\\u4f18\\\\u60e0\\\\u5238\\\\u91d1\\\\u989d\",\"id\":\"1665998389281\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"deduction_price\",\"type\":\"string\",\"trip\":\"\\\\u62b5\\\\u6263\\\\u91d1\\\\u989d\",\"id\":\"1665998389455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"paid\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u72b6\\\\u6001\",\"id\":\"1665998389615\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_time\",\"type\":\"number\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65f6\\\\u95f4\",\"id\":\"1665998389801\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\",\"id\":\"1665998389962\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"add_time\",\"type\":\"number\",\"trip\":\"\\\\u4e0b\\\\u5355\\\\u65f6\\\\u95f4\",\"id\":\"1665998390163\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"status\",\"type\":\"number\",\"trip\":\"\\\\u8ba2\\\\u5355\\\\u72b6\\\\u6001 0\\\\u672a\\\\u53d1\\\\u8d27 1\\\\u5df2\\\\u53d1\\\\u8d27 2\\\\u5df2\\\\u6536\\\\u8d27 3\\\\u5df2\\\\u5b8c\\\\u6210 -2\\\\u5df2\\\\u9000\\\\u6b3e\",\"id\":\"1665998390322\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_name\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u540d\\\\u79f0\\/\\\\u9001\\\\u8d27\\\\u4eba\\\\u59d3\\\\u540d\",\"id\":\"1665998390455\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_code\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u516c\\\\u53f8\\\\u7f16\\\\u7801\",\"id\":\"1665998390642\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"delivery_id\",\"type\":\"string\",\"trip\":\"\\\\u5feb\\\\u9012\\\\u5355\\\\u53f7\\/\\\\u624b\\\\u673a\\\\u53f7\",\"id\":\"1665998390815\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"pay_type_name\",\"type\":\"string\",\"trip\":\"\\\\u652f\\\\u4ed8\\\\u65b9\\\\u5f0f\\\\u540d\\\\u79f0\",\"id\":\"1665998390975\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"items\",\"type\":\"array\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u6570\\\\u636e\",\"id\":\"1665998391190\",\"parentId\":\"1665998356462\",\"_X_ROW_CHILD\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}],\"children\":[{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":1665998623612,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":1665998623796,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":1665998623995,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":1665998624155,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":1665998624329,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":1665998624515,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":1665998628959,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":1665998629128,\"parentId\":1665998391190,\"_X_ROW_CHILD\":[],\"children\":[]}]},{\"attribute\":\"cart_id\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u7269\\\\u8f66ID\",\"id\":\"1665998623612\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"store_name\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u540d\\\\u79f0\",\"id\":\"1665998623796\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"suk\",\"type\":\"string\",\"trip\":\"\\\\u5546\\\\u54c1\\\\u89c4\\\\u683c\",\"id\":\"1665998623995\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"image\",\"type\":\"string\",\"trip\":\"\\\\u56fe\\\\u7247\",\"id\":\"1665998624155\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"price\",\"type\":\"string\",\"trip\":\"\\\\u552e\\\\u4ef7\",\"id\":\"1665998624329\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"cart_num\",\"type\":\"number\",\"trip\":\"\\\\u8d2d\\\\u4e70\\\\u6570\\\\u91cf\",\"id\":\"1665998624515\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"surplus_num\",\"type\":\"number\",\"trip\":\"\\\\u62c6\\\\u5206\\\\u540e\\\\u5269\\\\u4f59\\\\u6570\\\\u91cf\",\"id\":\"1665998628959\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"refund_num\",\"type\":\"number\",\"trip\":\"\\\\u9000\\\\u8d27\\\\u6570\\\\u91cf\",\"id\":\"1665998629128\",\"parentId\":\"1665998391190\",\"_X_ROW_CHILD\":[],\"children\":[]},{\"attribute\":\"count\",\"type\":\"number\",\"trip\":\"\\\\u603b\\\\u6761\\\\u6570\",\"id\":\"1665998358704\",\"parentId\":\"row_3027\",\"_X_ROW_CHILD\":[],\"children\":[]}]', '/order/list?status=1&real_name=张三&pay_type=1&data=2022/07/12 00:00:00-2022/08/17 00:00:00&paid=1&page=1&limit=20', '{\n \"status\": 200,\n \"msg\": \"success\",\n \"data\": {\n \"list\": [\n {\n \"id\": 30,\n \"pid\": 0,\n \"order_id\": \"wx273504055794335744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"25.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"25.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656494848,\n \"pay_type\": \"yue\",\n \"add_time\": 1656494848,\n \"status\": -2,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 2273504044117393400,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"卡通布艺\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"25.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n },\n {\n \"id\": 29,\n \"pid\": 20,\n \"order_id\": \"wx273477746087165952\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 3,\n \"total_price\": \"77.70\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"77.70\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 0,\n \"delivery_name\": \"\",\n \"delivery_code\": \"\",\n \"delivery_id\": \"\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746112331780,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n },\n {\n \"cart_id\": 273477746108137470,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"水钻一字夹6件套 银色\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"23.90\",\n \"cart_num\": 2,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 28,\n \"pid\": 20,\n \"order_id\": \"wx273477745973919744\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"29.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"29.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656407739,\n \"pay_type\": \"yue\",\n \"add_time\": 1656488575,\n \"status\": 1,\n \"delivery_name\": \"泰捷达国际物流\",\n \"delivery_code\": \"ztjieda\",\n \"delivery_id\": \"TJ444\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273477746041028600,\n \"store_name\": \"优家UPLUS ins风简约无痕发夹金属一字夹4个装(金色+银色 刘海边夹前额一字发卡碎发夹卡子夹子分发夹)\",\n \"suk\": \"无痕金属发夹 4个装\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/8a2d668e1b8fde3ed9422c242eedbb32.jpg\",\n \"price\": \"29.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 0\n }\n ]\n },\n {\n \"id\": 26,\n \"pid\": 14,\n \"order_id\": \"wx273423259360296960\",\n \"trade_no\": \"\",\n \"uid\": 2,\n \"freight_price\": \"0.00\",\n \"real_name\": \"张三\",\n \"user_phone\": \"18354876351\",\n \"user_address\": \"福建省 宁德市 福安市 测试\",\n \"total_num\": 1,\n \"total_price\": \"22.90\",\n \"total_postage\": \"0.00\",\n \"pay_price\": \"22.90\",\n \"coupon_price\": \"0.00\",\n \"deduction_price\": \"0.00\",\n \"paid\": 1,\n \"pay_time\": 1656404021,\n \"pay_type\": \"yue\",\n \"add_time\": 1656475584,\n \"status\": 1,\n \"delivery_name\": \"顺丰快运\",\n \"delivery_code\": \"shunfengkuaiyun\",\n \"delivery_id\": \"SF555\",\n \"pay_type_name\": \"余额支付\",\n \"items\": [\n {\n \"cart_id\": 273423259398045700,\n \"store_name\": \"欧育 儿童发夹发饰韩国女童发夹宝宝头饰发卡婴幼儿甜美小女孩可爱刘海bb夹25件装 B1461\",\n \"suk\": \"水果+雏菊\",\n \"image\": \"https://demo.crmeb.comuploads/attach/2022/01/15/84133cb0a566849eae417ef7ac789afd.jpg\",\n \"price\": \"22.90\",\n \"cart_num\": 1,\n \"surplus_num\": 0,\n \"refund_num\": 1\n }\n ]\n }\n ],\n \"count\": 25\n }\n}', 0, '2023-05-06 08:12:51', NULL),
|
||
(1527, 156, 'api', '订单详情', '', 'order/detail/<uni>/<cartId?>', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1528, 156, 'api', '退款订单详情', '', 'order/refund_detail/<uni>/<cartId?>', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'refund_detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1529, 156, 'api', '订单退款理由', '', 'order/refund/reason', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'refund_reason', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1530, 156, 'api', '订单退款审核', '', 'order/refund/verify', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'refund_verify', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1531, 156, 'api', '订单收货', '', 'order/take', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'take', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1532, 156, 'api', '订单查看物流', '', 'order/express/<uni>/<type?>', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'express', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1533, 156, 'api', '订单删除', '', 'order/del', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'del', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1534, 156, 'api', '再次下单', '', 'order/again', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'again', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1535, 156, 'api', '订单支付', '', 'order/pay', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'pay', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1536, 156, 'api', '订单商品信息', '', 'order/product', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'product', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1537, 156, 'api', '订单评价', '', 'order/comment', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'comment', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1538, 156, 'api', '订单收银台', '', 'order/cashier/<orderId>/<type?>', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'cashier', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1539, 156, 'api', '代付详情', '', 'order/friend_detail', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'friendDetail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1540, 156, 'api', '获取未支付订单', '', 'order/nopay', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'get_noPay', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1541, 157, 'api', '推荐用户', '', 'spread/people', 'POST', 'app/api/controller/v1/user/UserController.php', 'spread_people', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1542, 157, 'api', '推广订单', '', 'spread/order', 'POST', 'app/api/controller/v1/user/UserBillController.php', 'spread_order', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1543, 157, 'api', '推广佣金明细', '', 'spread/commission/<type>', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'spread_commission', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1544, 157, 'api', '推广佣金', '', 'spread/count/<type>', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'spread_count', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1545, 157, 'api', '推广分销二维码海报生成', '', 'spread/banner', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'spread_banner', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1546, 157, 'api', '积分记录', '', 'integral/list', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'integral_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1547, 157, 'api', '小程序二维码', '', 'user/routine_code', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'getRoutineCode', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1548, 157, 'api', '获取分销背景等信息', '', 'user/spread_info', 'GET', 'app/api/controller/v1/user/UserBillController.php', 'getSpreadInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1549, 157, 'api', '事业部推广订单', '', 'division/order', 'POST', 'app/api/controller/v1/user/UserBillController.php', 'divisionOrder', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1550, 158, 'api', '提现银行', '', 'extract/bank', 'GET', 'app/api/controller/v1/user/UserExtractController.php', 'bank', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1551, 158, 'api', '提现申请', '', 'extract/cash', 'POST', 'app/api/controller/v1/user/UserExtractController.php', 'cash', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1552, 159, 'api', '统一充值', '', 'recharge/recharge', 'POST', 'app/api/controller/v1/user/UserRechargeController.php', 'recharge', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1553, 159, 'api', '小程序充值', '', 'recharge/routine', 'POST', 'app/api/controller/v1/user/UserRechargeController.php', 'routine', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1554, 159, 'api', '公众号充值', '', 'recharge/wechat', 'POST', 'app/api/controller/v1/user/UserRechargeController.php', 'wechat', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1555, 159, 'api', '充值余额选择', '', 'recharge/index', 'GET', 'app/api/controller/v1/user/UserRechargeController.php', 'index', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1556, 160, 'api', '检测用户是否可以成为会员', '', 'user/level/detection', 'GET', 'app/api/controller/v1/user/UserLevelController.php', 'detection', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1557, 160, 'api', '会员等级列表', '', 'user/level/grade', 'GET', 'app/api/controller/v1/user/UserLevelController.php', 'grade', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1558, 160, 'api', '获取等级任务', '', 'user/level/task/<id>', 'GET', 'app/api/controller/v1/user/UserLevelController.php', 'task', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1559, 160, 'api', '获取等级任务', '', 'user/level/info', 'GET', 'app/api/controller/v1/user/UserLevelController.php', 'userLevelInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1560, 160, 'api', '获取等级任务', '', 'user/level/expList', 'GET', 'app/api/controller/v1/user/UserLevelController.php', 'expList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1561, 160, 'api', '获取用户和客服的消息列表', '', 'user/record', 'GET', 'app/api/controller/v1/user/StoreService.php', 'recordList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1562, 161, 'api', '检测线下付款金额', '', 'order/offline/check/price', 'POST', 'app/api/controller/v1/order/OtherOrderController.php', 'computed_offline_pay_price', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1563, 161, 'api', '检测线下付款金额', '', 'order/offline/create', 'POST', 'app/api/controller/v1/order/OtherOrderController.php', 'create', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1564, 161, 'api', '线下付款支付方式', '', 'order/offline/pay/type', 'GET', 'app/api/controller/v1/order/OtherOrderController.php', 'pay_type', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1565, 162, 'api', '站内信列表', '', 'user/message_system/list', 'GET', 'app/api/controller/v1/user/MessageSystemController.php', 'message_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1566, 162, 'api', '详情', '', 'user/message_system/detail/<id>', 'GET', 'app/api/controller/v1/user/MessageSystemController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1567, 162, 'api', '站内信设置', '', 'user/message_system/edit_message', 'GET', 'app/api/controller/v1/user/MessageSystemController.php', 'edit_message', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1568, 163, 'api', '订单确认', '', 'store_integral/order/confirm', 'POST', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'confirm', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1569, 163, 'api', '订单创建', '', 'store_integral/order/create', 'POST', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'create', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1570, 163, 'api', '订单详情', '', 'store_integral/order/detail/<uni>', 'GET', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1571, 163, 'api', '订单列表', '', 'store_integral/order/list', 'GET', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1572, 163, 'api', '订单收货', '', 'store_integral/order/take', 'POST', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'take', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1573, 163, 'api', '订单查看物流', '', 'store_integral/order/express/<uni>', 'GET', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'express', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1574, 163, 'api', '订单删除', '', 'store_integral/order/del', 'POST', 'app/api/controller/v1/order/StoreIntegralOrderController.php', 'del', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1575, 164, 'api', '退款中间页面订单商品列表', '', 'order/refund/cart_info/<id>', 'GET', 'app/api/controller/v1/order/StoreOrderController.php', 'refundCartInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1576, 164, 'api', '获取退款商品列表', '', 'order/refund/cart_info', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'refundCartInfoList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1577, 164, 'api', '订单申请退款', '', 'order/refund/apply/<id>', 'POST', 'app/api/controller/v1/order/StoreOrderController.php', 'applyRefund', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1578, 164, 'api', '退款单列表', '', 'order/refund/list', 'GET', 'app/api/controller/v1/order/StoreOrderRefundController.php', 'refundList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1579, 164, 'api', '退款单详情', '', 'order/refund/detail/<uni>', 'GET', 'app/api/controller/v1/order/StoreOrderRefundController.php', 'refundDetail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1580, 164, 'api', '用户取消退款申请', '', 'order/refund/cancel/<uni>', 'POST', 'app/api/controller/v1/order/StoreOrderRefundController.php', 'cancelApply', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1581, 164, 'api', '退款单详情', '', 'order/refund/express', 'POST', 'app/api/controller/v1/order/StoreOrderRefundController.php', 'applyExpress', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1582, 164, 'api', '用户取消退款申请', '', 'order/refund/del/<uni>', 'GET', 'app/api/controller/v1/order/StoreOrderRefundController.php', 'delRefund', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1583, 165, 'api', '申请详情', '', 'agent/apply/info', 'GET', 'app/api/controller/v1/user/DivisionController.php', 'applyInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1584, 165, 'api', '申请代理商', '', 'agent/apply/<id>', 'POST', 'app/api/controller/v1/user/DivisionController.php', 'applyAgent', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1585, 165, 'api', '代理商规则', '', 'agent/get_agent_agreement', 'GET', 'app/api/controller/v1/user/DivisionController.php', 'getAgentAgreement', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1586, 165, 'api', '员工列表', '', 'agent/get_staff_list', 'GET', 'app/api/controller/v1/user/DivisionController.php', 'getStaffList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1587, 165, 'api', '设置员工分佣比例', '', 'agent/set_staff_percent', 'POST', 'app/api/controller/v1/user/DivisionController.php', 'setStaffPercent', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1588, 165, 'api', '删除员工', '', 'agent/del_staff/<uid>', 'GET', 'app/api/controller/v1/user/DivisionController.php', 'delStaff', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1589, 166, 'api', '推广数据', '', 'commission', 'GET', 'app/api/controller/v1/user/UserBrokerageController.php', 'commission', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1590, 166, 'api', '佣金排行', '', 'brokerage_rank', 'GET', 'app/api/controller/v1/user/UserBrokerageController.php', 'brokerageRank', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1591, 166, 'api', '用户注销', '', 'user_cancel', 'GET', 'app/api/controller/v1/user/UserController.php', 'SetUserCancel', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1592, 166, 'api', '商品浏览列表', '', 'user/visit_list', 'GET', 'app/api/controller/v1/user/UserController.php', 'visitList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1593, 166, 'api', '商品浏览记录删除', '', 'user/visit', 'DELETE', 'app/api/controller/v1/user/UserController.php', 'visitDelete', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1594, 166, 'api', '修改用户信息', '', 'v2/user/user_update', 'POST', 'app/api/controller/v2/wechat/AuthController.php', 'updateInfo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1595, 167, 'api', '个人中心菜单', '', 'menu/user', 'GET', 'app/api/controller/v1/PublicController.php', 'menu_user', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1596, 167, 'api', '首页', '', 'index', 'GET', 'app/api/controller/v1/PublicController.php', 'index', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1597, 167, 'api', '', '', 'diy/get_diy/<id?>', 'GET', 'app/api/controller/v1/PublicController.php', 'getDiy', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1598, 167, 'api', '获取首页推荐不同类型商品的轮播图和商品', '', 'home/products', 'GET', 'app/api/controller/v1/PublicController.php', 'home_products_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1599, 168, 'api', '获取网站配置', '', 'site_config', 'GET', 'app/api/controller/v1/PublicController.php', 'getSiteConfig', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1600, 168, 'api', '物流公司列表', '', 'logistics', 'GET', 'app/api/controller/v1/PublicController.php', 'logistics', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1601, 168, 'api', '分享配置', '', 'share', 'GET', 'app/api/controller/v1/PublicController.php', 'share', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1602, 168, 'api', '可领取优惠券列表', '', 'coupons', 'GET', 'app/api/controller/v1/store/StoreCouponsController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1603, 168, 'api', '短信购买异步通知', '', 'sms/pay/notify', 'POST', 'app/api/controller/v1/PublicController.php', 'sms_pay_notify', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1604, 168, 'api', '获取关注微信公众号海报', '', 'wechat/follow', 'GET', 'app/api/controller/v1/wechat/WechatController.php', 'follow', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1605, 168, 'api', '用户是否关注', '', 'subscribe', 'GET', 'app/api/controller/v1/user/UserController.php', 'subscribe', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1606, 168, 'api', '门店列表', '', 'store_list', 'GET', 'app/api/controller/v1/PublicController.php', 'store_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1607, 168, 'api', '获取城市列表', '', 'city_list', 'GET', 'app/api/controller/v1/PublicController.php', 'city_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1608, 168, 'api', '拼团数据', '', 'pink', 'GET', 'app/api/controller/v1/PublicController.php', 'pink', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1609, 168, 'api', '获取底部导航', '', 'navigation/<template_name?>', 'GET', 'app/api/controller/v1/PublicController.php', 'getNavigation', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1610, 168, 'api', '添加用户访问记录', '', 'user/set_visit', 'POST', 'app/api/controller/v1/user/UserController.php', 'set_visit', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1611, 168, 'api', '复制口令接口', '', 'copy_words', 'GET', 'app/api/controller/v1/PublicController.php', 'copy_words', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1612, 169, 'api', '热门搜索关键字获取', '', 'search/keyword', 'GET', 'app/api/controller/v1/PublicController.php', 'search', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1613, 169, 'api', '商品分类类', '', 'category', 'GET', 'app/api/controller/v1/store/CategoryController.php', 'category', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1614, 169, 'api', '商品分类类版本', '', 'category_version', 'GET', 'app/api/controller/v1/store/CategoryController.php', 'getCategoryVersion', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1615, 169, 'api', '获取图片base64', '', 'image_base64', 'POST', 'app/api/controller/v1/PublicController.php', 'get_image_base64', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1616, 169, 'api', '商品详情', '', 'product/detail/<id>/<type?>', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1617, 169, 'api', '获取首页推荐不同类型商品的轮播图和商品', '', 'groom/list/<type>', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'groom_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1618, 169, 'api', '商品列表', '', 'products', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1619, 169, 'api', '为你推荐', '', 'product/hot', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'product_hot', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1620, 169, 'api', '商品评价列表', '', 'reply/list/<id>', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'reply_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1621, 169, 'api', '商品评价数量和好评度', '', 'reply/config/<id>', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'reply_config', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1622, 169, 'api', '预售商品列表', '', 'advance/list', 'GET', 'app/api/controller/v1/store/StoreProductController.php', 'advanceList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1623, 171, 'api', '文章分类列表', '', 'article/category/list', 'GET', 'app/api/controller/v1/publics/ArticleCategoryController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1624, 171, 'api', '文章列表', '', 'article/list/<cid>', 'GET', 'app/api/controller/v1/publics/ArticleController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1625, 171, 'api', '文章详情', '', 'article/details/<id>', 'GET', 'app/api/controller/v1/publics/ArticleController.php', 'details', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1626, 171, 'api', '文章 热门', '', 'article/hot/list', 'GET', 'app/api/controller/v1/publics/ArticleController.php', 'hot', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1627, 171, 'api', '文章 最新', '', 'article/new/list', 'GET', 'app/api/controller/v1/publics/ArticleController.php', 'new', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1628, 171, 'api', '文章 banner', '', 'article/banner/list', 'GET', 'app/api/controller/v1/publics/ArticleController.php', 'banner', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1629, 172, 'api', '秒杀商品时间区间', '', 'seckill/index', 'GET', 'app/api/controller/v1/activity/StoreSeckillController.php', 'index', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1630, 172, 'api', '秒杀商品列表', '', 'seckill/list/<time>', 'GET', 'app/api/controller/v1/activity/StoreSeckillController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1631, 172, 'api', '秒杀商品详情', '', 'seckill/detail/<id>/<time?>', 'GET', 'app/api/controller/v1/activity/StoreSeckillController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1632, 173, 'api', '砍价商品列表配置', '', 'bargain/config', 'GET', 'app/api/controller/v1/activity/StoreBargainController.php', 'config', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1633, 173, 'api', '砍价商品列表', '', 'bargain/list', 'GET', 'app/api/controller/v1/activity/StoreBargainController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1634, 174, 'api', '拼团商品列表', '', 'combination/list', 'GET', 'app/api/controller/v1/activity/StoreCombinationController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1635, 174, 'api', '拼团商品列表', '', 'combination/banner_list', 'GET', 'app/api/controller/v1/activity/StoreCombinationController.php', 'banner_list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1636, 174, 'api', '拼团商品详情', '', 'combination/detail/<id>', 'GET', 'app/api/controller/v1/activity/StoreCombinationController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1637, 170, 'api', '预售商品详情', '', 'advance/detail/<id>', 'GET', 'app/api/controller/v1/activity/StoreAdvanceController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1638, 170, 'api', '活动状态', '', 'user/activity', 'GET', 'app/api/controller/v1/user/UserController.php', 'activity', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1639, 175, 'api', '微信 sdk 配置', '', 'wechat/config', 'GET', 'app/api/controller/v1/wechat/WechatController.php', 'config', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1640, 175, 'api', '微信授权', '', 'wechat/auth', 'GET', 'app/api/controller/v1/wechat/WechatController.php', 'auth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1641, 175, 'api', '微信APP授权', '', 'wechat/app_auth', 'POST', 'app/api/controller/v1/wechat/WechatController.php', 'appAuth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1642, 176, 'api', '小程序登陆', '', 'wechat/mp_auth', 'POST', 'app/api/controller/v1/wechat/AuthController.php', 'mp_auth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1643, 176, 'api', '小程序登陆授权展示logo', '', 'wechat/get_logo', 'GET', 'app/api/controller/v1/wechat/AuthController.php', 'get_logo', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1644, 176, 'api', '小程序订阅消息', '', 'wechat/temp_ids', 'GET', 'app/api/controller/v1/wechat/AuthController.php', 'temp_ids', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1645, 176, 'api', '小程序直播列表', '', 'wechat/live', 'GET', 'app/api/controller/v1/wechat/AuthController.php', 'live', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1646, 176, 'api', '小程序直播回放', '', 'wechat/livePlaybacks/<id>', 'GET', 'app/api/controller/v1/wechat/AuthController.php', 'livePlaybacks', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1647, 177, 'api', '积分商城首页数据', '', 'store_integral/index', 'GET', 'app/api/controller/v1/activity/StoreIntegralController.php', 'index', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1648, 177, 'api', '积分商品列表', '', 'store_integral/list', 'GET', 'app/api/controller/v1/activity/StoreIntegralController.php', 'lst', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1649, 177, 'api', '积分商品详情', '', 'store_integral/detail/<id>', 'GET', 'app/api/controller/v1/activity/StoreIntegralController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1650, 178, 'api', '获取app最新版本', '', 'get_new_app/<platform>', 'GET', 'app/api/controller/v1/PublicController.php', 'getNewAppVersion', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1651, 178, 'api', '获取客服类型', '', 'get_customer_type', 'GET', 'app/api/controller/v1/PublicController.php', 'getCustomerType', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1652, 178, 'api', '长链接设置', '', 'get_workerman_url', 'GET', 'app/api/controller/v1/PublicController.php', 'getWorkerManUrl', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1653, 178, 'api', '首页开屏广告', '', 'get_open_adv', 'GET', 'app/api/controller/v1/PublicController.php', 'getOpenAdv', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1654, 178, 'api', '获取用户协议', '', 'user_agreement', 'GET', 'app/api/controller/v1/PublicController.php', 'getUserAgreement', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1655, 178, 'api', '获取协议', '', 'get_agreement/<type>', 'GET', 'app/api/controller/v1/PublicController.php', 'getAgreement', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1656, 179, 'api', '获取多语言类型列表', '', 'get_lang_type_list', 'GET', 'app/api/controller/v1/PublicController.php', 'getLangTypeList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1657, 179, 'api', '获取当前语言json', '', 'get_lang_json', 'GET', 'app/api/controller/v1/PublicController.php', 'getLangJson', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1658, 179, 'api', '获取当前后台设置的默认语言类型', '', 'get_default_lang_type', 'GET', 'app/api/controller/v1/PublicController.php', 'getDefaultLangType', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1659, 179, 'api', '获取当前后台设置的默认语言类型', '', 'lang_version', 'GET', 'app/api/controller/v1/PublicController.php', 'getLangVersion', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1660, 180, 'api', '定时任务调用接口', '', 'crontab/run', 'GET', 'app/api/controller/v1/CrontabController.php', 'crontabRun', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1661, 180, 'api', '检测定时任务接口', '', 'crontab/check', 'GET', 'app/api/controller/v1/CrontabController.php', 'crontabCheck', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1662, 180, 'api', '未支付自动取消订单', '', 'crontab/order_cancel', 'GET', 'app/api/controller/v1/CrontabController.php', 'orderUnpaidCancel', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1663, 180, 'api', '拼团到期订单处理', '', 'crontab/pink_expiration', 'GET', 'app/api/controller/v1/CrontabController.php', 'pinkExpiration', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1664, 180, 'api', '自动解绑上级绑定', '', 'crontab/agent_unbind', 'GET', 'app/api/controller/v1/CrontabController.php', 'agentUnbind', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1665, 180, 'api', '更新直播商品状态', '', 'crontab/live_product_status', 'GET', 'app/api/controller/v1/CrontabController.php', 'syncGoodStatus', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1666, 180, 'api', '更新直播间状态', '', 'crontab/live_room_status', 'GET', 'app/api/controller/v1/CrontabController.php', 'syncRoomStatus', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1667, 180, 'api', '自动收货', '', 'crontab/take_delivery', 'GET', 'app/api/controller/v1/CrontabController.php', 'autoTakeOrder', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1668, 180, 'api', '查询预售到期商品自动下架', '', 'crontab/advance_off', 'GET', 'app/api/controller/v1/CrontabController.php', 'downAdvance', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1669, 180, 'api', '自动好评', '', 'crontab/product_replay', 'GET', 'app/api/controller/v1/CrontabController.php', 'autoComment', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1670, 180, 'api', '清除昨日海报', '', 'crontab/clear_poster', 'GET', 'app/api/controller/v1/CrontabController.php', 'emptyYesterdayAttachment', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1671, 181, 'api', '公众号授权登录', '', 'v2/wechat/auth', 'GET', 'app/api/controller/v2/wechat/WechatController.php', 'auth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1672, 181, 'api', '小程序授权', '', 'v2/wechat/routine_auth', 'GET', 'app/api/controller/v2/wechat/AuthController.php', 'auth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1673, 181, 'api', '小程序静默授权', '', 'v2/wechat/silence_auth', 'GET', 'app/api/controller/v2/wechat/AuthController.php', 'silenceAuthNoLogin', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1674, 181, 'api', '小程序静默授权登陆', '', 'v2/wechat/silence_auth_login', 'GET', 'app/api/controller/v2/wechat/AuthController.php', 'silenceAuth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1675, 181, 'api', '公众号静默授权', '', 'v2/wechat/wx_silence_auth', 'GET', 'app/api/controller/v2/wechat/WechatController.php', 'silenceAuthNoLogin', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1676, 181, 'api', '公众号静默授权登陆', '', 'v2/wechat/wx_silence_auth_login', 'GET', 'app/api/controller/v2/wechat/WechatController.php', 'silenceAuth', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1677, 181, 'api', '是否强制绑定手机号', '', 'v2/bind_status', 'GET', 'app/api/controller/v2/PublicController.php', 'bindPhoneStatus', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1678, 181, 'api', '小程序授权绑定手机号', '', 'v2/auth_bindind_phone', 'POST', 'app/api/controller/v2/wechat/AuthController.php', 'authBindingPhone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1679, 181, 'api', '小程序授权后绑定手机号', '', 'v2/routine/binding_phone', 'POST', 'app/api/controller/v2/wechat/AuthController.php', 'BindingPhone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1680, 181, 'api', '小程序手机号登录直接绑定', '', 'v2/phone_silence_auth', 'POST', 'app/api/controller/v2/wechat/AuthController.php', 'silenceAuthBindingPhone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1681, 181, 'api', '微信手机号登录直接绑定', '', 'v2/phone_wx_silence_auth', 'POST', 'app/api/controller/v2/wechat/WechatController.php', 'silenceAuthBindingPhone', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1682, 182, 'api', '获取门店自提开启状态', '', 'v2/diy/get_store_status', 'GET', 'app/api/controller/v2/PublicController.php', 'getStoreStatus', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1683, 182, 'api', '一键换色', '', 'v2/diy/color_change/<name>', 'GET', 'app/api/controller/v2/PublicController.php', 'colorChange', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1684, 182, 'api', '获取DIY数据', '', 'v2/diy/get_diy/<name?>', 'GET', 'app/api/controller/v2/PublicController.php', 'getDiy', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1685, 182, 'api', '获取DIY版本号', '', 'v2/diy/get_version/<name?>', 'GET', 'app/api/controller/v2/PublicController.php', 'getVersion', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1686, 183, 'api', '订单申请发票', '', 'v2/order/make_up_invoice', 'POST', 'app/api/controller/v2/order/StoreOrderInvoiceController.php', 'makeUp', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1687, 183, 'api', '用户发票列表', '', 'v2/invoice', 'GET', 'app/api/controller/v2/user/UserInvoiceController.php', 'invoiceList', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1688, 183, 'api', '单个发票详情', '', 'v2/invoice/detail/<id>', 'GET', 'app/api/controller/v2/user/UserInvoiceController.php', 'invoice', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1689, 183, 'api', '修改|添加发票', '', 'v2/invoice/save', 'POST', 'app/api/controller/v2/user/UserInvoiceController.php', 'saveInvoice', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1690, 183, 'api', '设置默认发票', '', 'v2/invoice/set_default/<id>', 'POST', 'app/api/controller/v2/user/UserInvoiceController.php', 'setDefaultInvoice', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1691, 183, 'api', '获取默认发票', '', 'v2/invoice/get_default/<type>', 'GET', 'app/api/controller/v2/user/UserInvoiceController.php', 'getDefaultInvoice', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1692, 183, 'api', '删除发票', '', 'v2/invoice/del/<id>', 'GET', 'app/api/controller/v2/user/UserInvoiceController.php', 'delInvoice', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1693, 183, 'api', '订单申请开票记录', '', 'v2/order/invoice_list', 'GET', 'app/api/controller/v2/order/StoreOrderInvoiceController.php', 'list', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL),
|
||
(1694, 183, 'api', '订单开票详情', '', 'v2/order/invoice_detail/<uni>', 'GET', 'app/api/controller/v2/order/StoreOrderInvoiceController.php', 'detail', '', '', '', '', '', 0, '2023-05-06 08:12:51', NULL);
|
||
SQL
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => 1,
|
||
'table' => "system_route_cate",
|
||
'findSql' => "select * from information_schema.tables where table_name ='@table'",
|
||
'sql' => "CREATE TABLE IF NOT EXISTS `@table` (
|
||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '上级id',
|
||
`app_name` varchar(20) NOT NULL DEFAULT '' COMMENT '应用名',
|
||
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称',
|
||
`mark` varchar(32) NOT NULL DEFAULT '' COMMENT '分组标识',
|
||
`path` varchar(255) NOT NULL DEFAULT '' COMMENT '路径',
|
||
`sort` int(11) NOT NULL DEFAULT '0',
|
||
`add_time` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
|
||
PRIMARY KEY (`id`),
|
||
KEY `app_name` (`app_name`)
|
||
) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8 COMMENT='路由规分类表'"
|
||
],
|
||
[
|
||
'code' => 500,
|
||
'type' => -1,
|
||
'table' => "system_route_cate",
|
||
'sql' => <<<SQL
|
||
INSERT INTO `@table` (`id`, `pid`, `app_name`, `name`, `mark`, `path`, `sort`, `add_time`) VALUES
|
||
(1, 0, 'adminapi', '分销模块', '', '', 0, 1682563684),
|
||
(2, 1, 'adminapi', '分销员管理', '', '', 0, 1682563684),
|
||
(3, 1, 'adminapi', '分销设置', '', '', 0, 1682563684),
|
||
(4, 1, 'adminapi', '分销等级', '', '', 0, 1682563684),
|
||
(5, 1, 'adminapi', '事业部', '', '', 0, 1682563684),
|
||
(6, 0, 'adminapi', '应用模块', '', '', 0, 1682563684),
|
||
(7, 6, 'adminapi', '公众号', '', '', 0, 1682563684),
|
||
(8, 6, 'adminapi', '小程序', '', '', 0, 1682563684),
|
||
(9, 6, 'adminapi', '公众号渠道码', '', '', 0, 1682563684),
|
||
(10, 6, 'adminapi', '客服相关', '', '', 0, 1682563684),
|
||
(11, 0, 'adminapi', '文章模块', '', '', 0, 1682563684),
|
||
(12, 11, 'adminapi', '文章管理', '', '', 0, 1682563684),
|
||
(13, 11, 'adminapi', '文章分类', '', '', 0, 1682563684),
|
||
(14, 0, 'adminapi', '系统数据', '', '', 0, 1682563684),
|
||
(15, 0, 'adminapi', '页面装修', '', '', 0, 1682563684),
|
||
(16, 0, 'adminapi', '数据导出', '', '', 0, 1682563684),
|
||
(17, 0, 'adminapi', '素材管理', '', '', 0, 1682563684),
|
||
(18, 0, 'adminapi', '财务管理', '', '', 0, 1682563684),
|
||
(19, 18, 'adminapi', '提现', '', '', 0, 1682563684),
|
||
(20, 18, 'adminapi', '资金记录', '', '', 0, 1682563684),
|
||
(21, 18, 'adminapi', '充值', '', '', 0, 1682563684),
|
||
(22, 0, 'adminapi', '物流管理', '', '', 0, 1682563684),
|
||
(23, 0, 'adminapi', '直播管理', '', '', 0, 1682563684),
|
||
(24, 23, 'adminapi', '主播', '', '', 0, 1682563684),
|
||
(25, 23, 'adminapi', '直播商品', '', '', 0, 1682563684),
|
||
(26, 23, 'adminapi', '直播间', '', '', 0, 1682563684),
|
||
(27, 0, 'adminapi', '营销活动', '', '', 0, 1682563684),
|
||
(28, 27, 'adminapi', '优惠券', '', '', 0, 1682563684),
|
||
(29, 27, 'adminapi', '砍价活动', '', '', 0, 1682563684),
|
||
(30, 27, 'adminapi', '拼团活动', '', '', 0, 1682563684),
|
||
(31, 27, 'adminapi', '秒杀活动', '', '', 0, 1682563684),
|
||
(32, 27, 'adminapi', '积分活动', '', '', 0, 1682563684),
|
||
(33, 27, 'adminapi', '抽奖活动', '', '', 0, 1682563684),
|
||
(34, 0, 'adminapi', '门店核销', '', '', 0, 1682563684),
|
||
(35, 34, 'adminapi', '门店', '', '', 0, 1682563684),
|
||
(36, 34, 'adminapi', '店员', '', '', 0, 1682563684),
|
||
(37, 34, 'adminapi', '核销订单', '', '', 0, 1682563684),
|
||
(38, 0, 'adminapi', '消息通知', '', '', 0, 1682563684),
|
||
(39, 0, 'adminapi', '订单管理', '', '', 0, 1682563684),
|
||
(40, 0, 'adminapi', '退款订单', '', '', 0, 1682563684),
|
||
(41, 0, 'adminapi', '商品管理', '', '', 0, 1682563684),
|
||
(42, 41, 'adminapi', '商品分类', '', '', 0, 1682563684),
|
||
(43, 41, 'adminapi', '商品', '', '', 0, 1682563684),
|
||
(44, 41, 'adminapi', '商品评论', '', '', 0, 1682563684),
|
||
(45, 41, 'adminapi', '商品采集', '', '', 0, 1682563684),
|
||
(46, 0, 'adminapi', '登录相关', '', '', 0, 1682563684),
|
||
(47, 0, 'adminapi', '一号通', '', '', 0, 1682563684),
|
||
(48, 0, 'adminapi', '系统设置', '', '', 0, 1682563684),
|
||
(49, 48, 'adminapi', '管理员', '', '', 0, 1682563684),
|
||
(50, 48, 'adminapi', '权限菜单', '', '', 0, 1682563684),
|
||
(51, 48, 'adminapi', '管理员身份', '', '', 0, 1682563684),
|
||
(52, 48, 'adminapi', '系统配置', '', '', 0, 1682563684),
|
||
(53, 48, 'adminapi', '组合数据', '', '', 0, 1682563684),
|
||
(54, 48, 'adminapi', '城市数据', '', '', 0, 1682563684),
|
||
(55, 48, 'adminapi', '运费模版', '', '', 0, 1682563684),
|
||
(56, 48, 'adminapi', '系统通知', '', '', 0, 1682563684),
|
||
(57, 48, 'adminapi', '协议版权', '', '', 0, 1682563684),
|
||
(58, 48, 'adminapi', '对外接口', '', '', 0, 1682563684),
|
||
(59, 48, 'adminapi', '多语言', '', '', 0, 1682563684),
|
||
(60, 0, 'adminapi', '程序统计', '', '', 0, 1682563684),
|
||
(61, 60, 'adminapi', '用户统计', '', '', 0, 1682563684),
|
||
(62, 60, 'adminapi', '商品统计', '', '', 0, 1682563684),
|
||
(63, 60, 'adminapi', '交易统计', '', '', 0, 1682563684),
|
||
(64, 60, 'adminapi', '订单统计', '', '', 0, 1682563684),
|
||
(65, 60, 'adminapi', '资金流水', '', '', 0, 1682563684),
|
||
(66, 60, 'adminapi', '余额统计', '', '', 0, 1682563684),
|
||
(67, 0, 'adminapi', '系统维护', '', '', 0, 1682563684),
|
||
(68, 67, 'adminapi', '存储配置', '', '', 0, 1682563684),
|
||
(69, 67, 'adminapi', '系统日志', '', '', 0, 1682563684),
|
||
(70, 67, 'adminapi', '数据备份', '', '', 0, 1682563684),
|
||
(71, 67, 'adminapi', '数据清除', '', '', 0, 1682563684),
|
||
(72, 67, 'adminapi', '在线升级', '', '', 0, 1682563684),
|
||
(73, 67, 'adminapi', '定时任务', '', '', 0, 1682563684),
|
||
(74, 67, 'adminapi', '系统路由', '', '', 0, 1682563684),
|
||
(75, 67, 'adminapi', '代码生成', '', '', 0, 1682563684),
|
||
(76, 0, 'adminapi', '文件管理', '', '', 0, 1682563684),
|
||
(77, 0, 'adminapi', '用户管理', '', '', 0, 1682563684),
|
||
(78, 77, 'adminapi', '用户', '', '', 0, 1682563684),
|
||
(79, 77, 'adminapi', '用户等级', '', '', 0, 1682563684),
|
||
(80, 77, 'adminapi', '用户分组', '', '', 0, 1682563684),
|
||
(81, 77, 'adminapi', '用户标签', '', '', 0, 1682563684),
|
||
(82, 77, 'adminapi', '付费会员', '', '', 0, 1682563684),
|
||
(83, 77, 'adminapi', '用户注销', '', '', 0, 1682563684),
|
||
(84, 0, 'adminapi', 'CRUD', '', '', 0, 1683343418),
|
||
(85, 0, 'outapi', '公共接口', '', '', 0, 1683360182),
|
||
(86, 0, 'outapi', '商品分类', '', '', 0, 1683360182),
|
||
(87, 0, 'outapi', '商品', '', '', 0, 1683360182),
|
||
(88, 0, 'outapi', '订单', '', '', 0, 1683360182),
|
||
(89, 0, 'outapi', '售后', '', '', 0, 1683360182),
|
||
(90, 0, 'outapi', '优惠卷', '', '', 0, 1683360182),
|
||
(91, 0, 'outapi', '用户', '', '', 0, 1683360182),
|
||
(92, 0, 'kefuapi', '登录', '', '', 0, 1683360199),
|
||
(93, 0, 'kefuapi', '公用接口', '', '', 0, 1683360199),
|
||
(94, 0, 'kefuapi', '用户', '', '', 0, 1683360199),
|
||
(95, 0, 'kefuapi', '订单', '', '', 0, 1683360199),
|
||
(96, 0, 'kefuapi', '商品', '', '', 0, 1683360199),
|
||
(97, 0, 'kefuapi', '客服', '', '', 0, 1683360199),
|
||
(98, 0, 'kefuapi', '游客客服', '', '', 0, 1683360199),
|
||
(145, 0, 'api', 'PC', '', '', 0, 1683360771),
|
||
(146, 145, 'api', '授权登录', '', '', 0, 1683360771),
|
||
(147, 145, 'api', '用户未授权接口', '', '', 0, 1683360771),
|
||
(148, 145, 'api', '用户授权接口', '', '', 0, 1683360771),
|
||
(149, 0, 'api', '服务接口', '', '', 0, 1683360771),
|
||
(150, 0, 'api', '基础接口', '', '', 0, 1683360771),
|
||
(151, 0, 'api', '移动端订单管理', '', '', 0, 1683360771),
|
||
(152, 0, 'api', '公共接口', '', '', 0, 1683360771),
|
||
(153, 0, 'api', '签到', '', '', 0, 1683360771),
|
||
(154, 0, 'api', '优惠券', '', '', 0, 1683360771),
|
||
(155, 0, 'api', '购物车', '', '', 0, 1683360771),
|
||
(156, 0, 'api', '订单', '', '', 0, 1683360771),
|
||
(157, 0, 'api', '账单', '', '', 0, 1683360771),
|
||
(158, 0, 'api', '提现', '', '', 0, 1683360771),
|
||
(159, 0, 'api', '充值', '', '', 0, 1683360771),
|
||
(160, 0, 'api', '会员等级', '', '', 0, 1683360771),
|
||
(161, 0, 'api', '线下付款', '', '', 0, 1683360771),
|
||
(162, 0, 'api', '站内信', '', '', 0, 1683360771),
|
||
(163, 0, 'api', '积分订单', '', '', 0, 1683360771),
|
||
(164, 0, 'api', '售后', '', '', 0, 1683360771),
|
||
(165, 0, 'api', '代理商', '', '', 0, 1683360771),
|
||
(166, 0, 'api', '用户', '', '', 0, 1683360771),
|
||
(167, 0, 'api', '主页接口', '', '', 0, 1683360771),
|
||
(168, 0, 'api', '商城配置', '', '', 0, 1683360771),
|
||
(169, 0, 'api', '商品', '', '', 0, 1683360771),
|
||
(170, 0, 'api', '活动', '', '', 0, 1683360771),
|
||
(171, 170, 'api', '文章(未授权)', '', '', 0, 1683360771),
|
||
(172, 170, 'api', '秒杀(未授权)', '', '', 0, 1683360771),
|
||
(173, 170, 'api', '砍价(未授权)', '', '', 0, 1683360771),
|
||
(174, 170, 'api', '拼团(未授权)', '', '', 0, 1683360771),
|
||
(175, 0, 'api', '微信', '', '', 0, 1683360771),
|
||
(176, 0, 'api', '小程序', '', '', 0, 1683360771),
|
||
(177, 0, 'api', '积分商城(未授权)', '', '', 0, 1683360771),
|
||
(178, 0, 'api', '其他接口', '', '', 0, 1683360771),
|
||
(179, 0, 'api', '多语言', '', '', 0, 1683360771),
|
||
(180, 0, 'api', '定时任务', '', '', 0, 1683360771),
|
||
(181, 0, 'api', '微信授权', '', '', 0, 1683360771),
|
||
(182, 0, 'api', 'DIY', '', '', 0, 1683360771),
|
||
(183, 0, 'api', '发票', '', '', 0, 1683360771);
|
||
SQL
|
||
],
|
||
];
|
||
return $data;
|
||
}
|
||
|
||
/**
|
||
* 升级列表
|
||
* @return mixed
|
||
*/
|
||
public function upgradeList()
|
||
{
|
||
return app('json')->success($this->services->getUpgradeList());
|
||
}
|
||
|
||
/**
|
||
* 可升级列表
|
||
* @return mixed
|
||
*/
|
||
public function upgradeableList()
|
||
{
|
||
return app('json')->success($this->services->getUpgradeableList());
|
||
}
|
||
|
||
/**
|
||
* 可升级列表
|
||
* @return mixed
|
||
*/
|
||
public function agreement()
|
||
{
|
||
return app('json')->success($this->services->getAgreement());
|
||
}
|
||
|
||
/**
|
||
* 下载升级包
|
||
* @param $packageKey
|
||
* @return mixed
|
||
*/
|
||
public function download($packageKey)
|
||
{
|
||
if (empty($packageKey)) {
|
||
return app('json')->fail(100100);
|
||
}
|
||
|
||
$this->services->packageDownload($packageKey);
|
||
return app('json')->success();
|
||
}
|
||
|
||
/**
|
||
* 升级进度
|
||
* @return mixed
|
||
*/
|
||
public function progress()
|
||
{
|
||
$result = $this->services->getProgress();
|
||
return app('json')->success($result);
|
||
}
|
||
|
||
/**
|
||
* 获取升级状态
|
||
* @return mixed
|
||
*/
|
||
public function upgradeStatus()
|
||
{
|
||
$data = $this->services->getUpgradeStatus();
|
||
return app('json')->success($data);
|
||
}
|
||
|
||
/**
|
||
* 升级记录
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function upgradeLogList()
|
||
{
|
||
$data = $this->services->getUpgradeLogList();
|
||
return app('json')->success($data);
|
||
}
|
||
|
||
/**
|
||
* 导出备份
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
*/
|
||
public function export($id, $type)
|
||
{
|
||
if (!$id || !$type) {
|
||
return app('json')->fail(100026);
|
||
}
|
||
return app('json')->success($this->services->export((int)$id, $type));
|
||
}
|
||
}
|