diff --git a/.gitattributes b/.gitattributes
index fc8b10121..6d3abb5c3 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,3 +1,3 @@
-*.js linguist-language=php
+/b*.js linguist-language=php
*.css linguist-language=php
*.html linguist-language=php
\ No newline at end of file
diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php
index 1bcf7550c..d638dbd72 100644
--- a/app/admin/controller/Config.php
+++ b/app/admin/controller/Config.php
@@ -17,8 +17,8 @@
namespace app\admin\controller;
use think\admin\Controller;
-use think\admin\Library;
use think\admin\service\AdminService;
+use think\admin\service\ModuleService;
use think\admin\service\RuntimeService;
use think\admin\service\SystemService;
use think\admin\storage\AliossStorage;
@@ -54,7 +54,7 @@ class Config extends Controller
{
$this->title = '系统参数配置';
$this->super = AdminService::isSuper();
- $this->version = Library::VERSION;
+ $this->version = ModuleService::getVersion();
$this->fetch();
}
diff --git a/app/admin/controller/User.php b/app/admin/controller/User.php
index 9319ffc9d..c1c704f66 100644
--- a/app/admin/controller/User.php
+++ b/app/admin/controller/User.php
@@ -22,7 +22,6 @@ use think\admin\model\SystemAuth;
use think\admin\model\SystemBase;
use think\admin\model\SystemUser;
use think\admin\service\AdminService;
-use think\model\Relation;
/**
* 系统用户管理
@@ -52,7 +51,8 @@ class User extends Controller
$query->where(['is_deleted' => 0, 'status' => intval($this->type === 'index')]);
// 关联用户身份资料
- $query->with(['userinfo' => function (Relation $relation) {
+ $query->with(['userinfo' => function ($relation) {
+ /** @var \think\model\Relation|\think\db\Query $relation */
$relation->field('code,name,content');
}]);
diff --git a/app/data/database/20221013045838_install_user.php b/app/data/database/20221013045838_install_user.php
index 4b137344d..bf1aceb4b 100644
--- a/app/data/database/20221013045838_install_user.php
+++ b/app/data/database/20221013045838_install_user.php
@@ -2,6 +2,9 @@
use think\migration\Migrator;
+@set_time_limit(0);
+@ini_set('memory_limit', -1);
+
/**
* 用户数据
*/
@@ -12,9 +15,6 @@ class InstallUser extends Migrator
*/
public function change()
{
- set_time_limit(0);
- @ini_set('memory_limit', -1);
-
$this->_create_base_postage_company();
$this->_create_base_postage_region();
$this->_create_base_postage_template();
diff --git a/app/data/database/20221013045839_install_user_data.php b/app/data/database/20221013045839_install_user_data.php
index f6ce2c5ec..b38357079 100644
--- a/app/data/database/20221013045839_install_user_data.php
+++ b/app/data/database/20221013045839_install_user_data.php
@@ -3,6 +3,9 @@
use think\admin\extend\PhinxExtend;
use think\migration\Migrator;
+@set_time_limit(0);
+@ini_set('memory_limit', -1);
+
/**
* 数据库初始化
*/
@@ -13,9 +16,6 @@ class InstallUserData extends Migrator
*/
public function change()
{
- set_time_limit(0);
- @ini_set('memory_limit', -1);
-
$this->insertMenu();
}
diff --git a/app/data/database/20221013045840_install_user_region.php b/app/data/database/20221013045840_install_user_region.php
index 85dec6d56..058431829 100644
--- a/app/data/database/20221013045840_install_user_region.php
+++ b/app/data/database/20221013045840_install_user_region.php
@@ -2,6 +2,9 @@
use think\migration\Migrator;
+@set_time_limit(0);
+@ini_set('memory_limit', -1);
+
/**
* 数据库初始化
*/
@@ -14,9 +17,6 @@ class InstallUserRegion extends Migrator
*/
public function change()
{
- set_time_limit(0);
- @ini_set('memory_limit', -1);
-
$this->installRegion();
}
diff --git a/composer.json b/composer.json
index 96131ae77..0a43f62bf 100644
--- a/composer.json
+++ b/composer.json
@@ -14,12 +14,18 @@
"email": "zoujingli@qq.com"
}
],
- "minimum-stability": "stable",
"require": {
"php": ">=7.1",
+ "zoujingli/think-library": "v6.0.x-dev",
"zoujingli/think-plugs-admin": "^1.0",
"zoujingli/think-plugs-wechat": "^1.0"
},
+ "repositories": {
+ "ThinkLibrary": {
+ "type": "path",
+ "url": "../ThinkLibrary"
+ }
+ },
"autoload": {
"psr-0": {
"": "extend"
diff --git a/database/migrations/20221013031925_install_admin.php b/database/migrations/20221013031925_install_admin.php
index 3c78be839..5079cfcd0 100644
--- a/database/migrations/20221013031925_install_admin.php
+++ b/database/migrations/20221013031925_install_admin.php
@@ -16,6 +16,9 @@
use think\migration\Migrator;
+set_time_limit(0);
+@ini_set('memory_limit', -1);
+
/**
* 系统模块数据
*/
diff --git a/database/migrations/20221013045838_install_user.php b/database/migrations/20221013045838_install_user.php
deleted file mode 100644
index 4b137344d..000000000
--- a/database/migrations/20221013045838_install_user.php
+++ /dev/null
@@ -1,1213 +0,0 @@
-_create_base_postage_company();
- $this->_create_base_postage_region();
- $this->_create_base_postage_template();
- $this->_create_base_user_discount();
- $this->_create_base_user_message();
- $this->_create_base_user_payment();
- $this->_create_base_user_upgrade();
- $this->_create_data_news_item();
- $this->_create_data_news_mark();
- $this->_create_data_news_x_collect();
- $this->_create_data_user();
- $this->_create_data_user_address();
- $this->_create_data_user_balance();
- $this->_create_data_user_logger();
- $this->_create_data_user_message();
- $this->_create_data_user_payment();
- $this->_create_data_user_rebate();
- $this->_create_data_user_token();
- $this->_create_data_user_transfer();
- $this->_create_shop_goods();
- $this->_create_shop_goods_cate();
- $this->_create_shop_goods_item();
- $this->_create_shop_goods_mark();
- $this->_create_shop_goods_stock();
- $this->_create_shop_order();
- $this->_create_shop_order_item();
- $this->_create_shop_order_send();
- }
-
- /**
- * 创建数据对象
- * @class BasePostageCompany
- * @table base_postage_company
- * @return void
- */
- private function _create_base_postage_company()
- {
-
- // 当前数据表
- $table = 'base_postage_company';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-快递-公司',
- ])
- ->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '快递公司名称'])
- ->addColumn('code_1', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '快递公司代码'])
- ->addColumn('code_2', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '百度快递100代码'])
- ->addColumn('code_3', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '官方快递100代码'])
- ->addColumn('remark', 'string', ['limit' => 512, 'default' => '', 'null' => true, 'comment' => '快递公司描述'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '状态(0.无效,1.有效)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(1已删除,0未删除)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code_1', ['name' => 'idx_base_postage_company_code_1'])
- ->addIndex('code_2', ['name' => 'idx_base_postage_company_code_2'])
- ->addIndex('code_3', ['name' => 'idx_base_postage_company_code_3'])
- ->addIndex('status', ['name' => 'idx_base_postage_company_status'])
- ->addIndex('deleted', ['name' => 'idx_base_postage_company_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BasePostageRegion
- * @table base_postage_region
- * @return void
- */
- private function _create_base_postage_region()
- {
-
- // 当前数据表
- $table = 'base_postage_region';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-快递-区域',
- ])
- ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '上级PID'])
- ->addColumn('first', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '首字母'])
- ->addColumn('short', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '区域简称'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '区域名称'])
- ->addColumn('level', 'integer', ['limit' => 4, 'default' => 0, 'null' => true, 'comment' => '区域层级'])
- ->addColumn('pinyin', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '区域拼音'])
- ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '区域邮编'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '使用状态'])
- ->addColumn('lng', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '所在经度'])
- ->addColumn('lat', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '所在纬度'])
- ->addIndex('pid', ['name' => 'idx_base_postage_region_pid'])
- ->addIndex('name', ['name' => 'idx_base_postage_region_name'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BasePostageTemplate
- * @table base_postage_template
- * @return void
- */
- private function _create_base_postage_template()
- {
-
- // 当前数据表
- $table = 'base_postage_template';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-快递-模板',
- ])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '模板编号'])
- ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '模板名称'])
- ->addColumn('normal', 'text', ['default' => null, 'null' => true, 'comment' => '默认规则'])
- ->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '模板规则'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '模板状态'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code', ['name' => 'idx_base_postage_template_code'])
- ->addIndex('status', ['name' => 'idx_base_postage_template_status'])
- ->addIndex('deleted', ['name' => 'idx_base_postage_template_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BaseUserDiscount
- * @table base_user_discount
- * @return void
- */
- private function _create_base_user_discount()
- {
-
- // 当前数据表
- $table = 'base_user_discount';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-基础-折扣',
- ])
- ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '方案名称'])
- ->addColumn('items', 'text', ['default' => null, 'null' => true, 'comment' => '方案规则'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '方案描述'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '方案状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('status', ['name' => 'idx_base_user_discount_status'])
- ->addIndex('deleted', ['name' => 'idx_base_user_discount_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BaseUserMessage
- * @table base_user_message
- * @return void
- */
- private function _create_base_user_message()
- {
-
- // 当前数据表
- $table = 'base_user_message';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-基础-通知',
- ])
- ->addColumn('type', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '消息类型'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '消息名称'])
- ->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '消息内容'])
- ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '阅读次数'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '消息状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_base_user_message_type'])
- ->addIndex('status', ['name' => 'idx_base_user_message_status'])
- ->addIndex('deleted', ['name' => 'idx_base_user_message_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BaseUserPayment
- * @table base_user_payment
- * @return void
- */
- private function _create_base_user_payment()
- {
-
- // 当前数据表
- $table = 'base_user_payment';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-基础-支付',
- ])
- ->addColumn('type', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '支付类型'])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '通道编号'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '支付名称'])
- ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '支付图标'])
- ->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '支付参数'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '支付说明'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '支付状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_base_user_payment_type'])
- ->addIndex('code', ['name' => 'idx_base_user_payment_code'])
- ->addIndex('status', ['name' => 'idx_base_user_payment_status'])
- ->addIndex('deleted', ['name' => 'idx_base_user_payment_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class BaseUserUpgrade
- * @table base_user_upgrade
- * @return void
- */
- private function _create_base_user_upgrade()
- {
-
- // 当前数据表
- $table = 'base_user_upgrade';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-等级',
- ])
- ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '用户级别名称'])
- ->addColumn('number', 'integer', ['limit' => 2, 'default' => 0, 'null' => true, 'comment' => '用户级别序号'])
- ->addColumn('rebate_rule', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '用户奖利规则'])
- ->addColumn('upgrade_type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '会员升级规则(0单个,1同时)'])
- ->addColumn('upgrade_team', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '团队人数统计(0不计,1累计)'])
- ->addColumn('goods_vip_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '入会礼包状态'])
- ->addColumn('order_amount_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '订单金额状态'])
- ->addColumn('order_amount_number', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单金额累计'])
- ->addColumn('teams_users_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '团队人数状态'])
- ->addColumn('teams_users_number', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '团队人数累计'])
- ->addColumn('teams_direct_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '直推人数状态'])
- ->addColumn('teams_direct_number', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '直推人数累计'])
- ->addColumn('teams_indirect_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '间推人数状态'])
- ->addColumn('teams_indirect_number', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '间推人数累计'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '用户级别描述'])
- ->addColumn('utime', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '等级更新时间'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '用户等级状态(1使用,0禁用)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '等级创建时间'])
- ->addIndex('status', ['name' => 'idx_base_user_upgrade_status'])
- ->addIndex('number', ['name' => 'idx_base_user_upgrade_number'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataNewsItem
- * @table data_news_item
- * @return void
- */
- private function _create_data_news_item()
- {
-
- // 当前数据表
- $table = 'data_news_item';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-文章-内容',
- ])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '文章编号'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '文章标题'])
- ->addColumn('mark', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '文章标签'])
- ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '文章封面'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '备注说明'])
- ->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '文章内容'])
- ->addColumn('num_like', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '文章点赞数'])
- ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '文章阅读数'])
- ->addColumn('num_collect', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '文章收藏数'])
- ->addColumn('num_comment', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '文章评论数'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '文章状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code', ['name' => 'idx_data_news_item_code'])
- ->addIndex('status', ['name' => 'idx_data_news_item_status'])
- ->addIndex('deleted', ['name' => 'idx_data_news_item_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataNewsMark
- * @table data_news_mark
- * @return void
- */
- private function _create_data_news_mark()
- {
-
- // 当前数据表
- $table = 'data_news_mark';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-文章-标签',
- ])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '标签名称'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '标签说明'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '标签状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('status', ['name' => 'idx_data_news_mark_status'])
- ->addIndex('deleted', ['name' => 'idx_data_news_mark_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataNewsXCollect
- * @table data_news_x_collect
- * @return void
- */
- private function _create_data_news_x_collect()
- {
-
- // 当前数据表
- $table = 'data_news_x_collect';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-文章-标记',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('type', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '记录类型(1收藏,2点赞,3历史,4评论)'])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '文章编号'])
- ->addColumn('reply', 'text', ['default' => null, 'null' => true, 'comment' => '评论内容'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '记录状态(0无效,1待审核,2已审核)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_data_news_x_collect_type'])
- ->addIndex('code', ['name' => 'idx_data_news_x_collect_code'])
- ->addIndex('status', ['name' => 'idx_data_news_x_collect_status'])
- ->addIndex('uuid', ['name' => 'idx_data_news_x_collect_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUser
- * @table data_user
- * @return void
- */
- private function _create_data_user()
- {
-
- // 当前数据表
- $table = 'data_user';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员',
- ])
- ->addColumn('pid0', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '临时推荐人UID'])
- ->addColumn('pid1', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '推荐人一级UID'])
- ->addColumn('pid2', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '推荐人二级UID'])
- ->addColumn('pids', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '推荐人绑定状态'])
- ->addColumn('path', 'string', ['limit' => 999, 'default' => '-', 'null' => true, 'comment' => '推荐关系路径'])
- ->addColumn('layer', 'integer', ['limit' => 20, 'default' => 1, 'null' => true, 'comment' => '推荐关系层级'])
- ->addColumn('openid1', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '小程序OPENID'])
- ->addColumn('openid2', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '服务号OPENID'])
- ->addColumn('unionid', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '公众号UnionID'])
- ->addColumn('phone', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '用户手机'])
- ->addColumn('headimg', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '用户头像'])
- ->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '用户姓名'])
- ->addColumn('nickname', 'string', ['limit' => 99, 'default' => '', 'null' => true, 'comment' => '用户昵称'])
- ->addColumn('password', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '登录密码'])
- ->addColumn('region_province', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '所在省份'])
- ->addColumn('region_city', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '所在城市'])
- ->addColumn('region_area', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '所在区域'])
- ->addColumn('base_age', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户年龄'])
- ->addColumn('base_sex', 'string', ['limit' => 10, 'default' => '', 'null' => true, 'comment' => '用户性别'])
- ->addColumn('base_height', 'string', ['limit' => 10, 'default' => '', 'null' => true, 'comment' => '用户身高'])
- ->addColumn('base_weight', 'string', ['limit' => 10, 'default' => '', 'null' => true, 'comment' => '用户体重'])
- ->addColumn('base_birthday', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '用户生日'])
- ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => 'VIP等级编号'])
- ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '普通用户', 'null' => true, 'comment' => 'VIP等级名称'])
- ->addColumn('vip_order', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => 'VIP升级订单'])
- ->addColumn('vip_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => 'VIP等级时间'])
- ->addColumn('buy_vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '是否入会礼包'])
- ->addColumn('buy_last_date', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '最后支付时间'])
- ->addColumn('rebate_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '返利金额统计'])
- ->addColumn('rebate_used', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '返利提现统计'])
- ->addColumn('rebate_lock', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '返利锁定统计'])
- ->addColumn('balance_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '累计充值统计'])
- ->addColumn('balance_used', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '已经使用统计'])
- ->addColumn('teams_users_total', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '团队人数统计'])
- ->addColumn('teams_users_direct', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '直属人数团队'])
- ->addColumn('teams_users_indirect', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '间接人数团队'])
- ->addColumn('order_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单交易统计'])
- ->addColumn('teams_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '二级团队业绩'])
- ->addColumn('teams_amount_direct', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '直属团队业绩'])
- ->addColumn('teams_amount_indirect', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '间接团队业绩'])
- ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '用户备注描述'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '用户状态(1正常,0已黑)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '注册时间'])
- ->addIndex('status', ['name' => 'idx_data_user_status'])
- ->addIndex('deleted', ['name' => 'idx_data_user_deleted'])
- ->addIndex('openid1', ['name' => 'idx_data_user_openid1'])
- ->addIndex('openid2', ['name' => 'idx_data_user_openid2'])
- ->addIndex('unionid', ['name' => 'idx_data_user_unionid'])
- ->addIndex('pid1', ['name' => 'idx_data_user_pid1'])
- ->addIndex('pid2', ['name' => 'idx_data_user_pid2'])
- ->addIndex('pid0', ['name' => 'idx_data_user_pid0'])
- ->addIndex('pids', ['name' => 'idx_data_user_pids'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserAddress
- * @table data_user_address
- * @return void
- */
- private function _create_data_user_address()
- {
-
- // 当前数据表
- $table = 'data_user_address';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-地址',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '地址类型(0普通,1默认)'])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '地址编号'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '收货姓名'])
- ->addColumn('phone', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '收货手机'])
- ->addColumn('idcode', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '身体证号'])
- ->addColumn('idimg1', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '身份证正面'])
- ->addColumn('idimg2', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '身份证反面'])
- ->addColumn('province', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '地址-省份'])
- ->addColumn('city', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '地址-城市'])
- ->addColumn('area', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '地址-区域'])
- ->addColumn('address', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '地址-详情'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_data_user_address_type'])
- ->addIndex('code', ['name' => 'idx_data_user_address_code'])
- ->addIndex('deleted', ['name' => 'idx_data_user_address_deleted'])
- ->addIndex('uuid', ['name' => 'idx_data_user_address_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserBalance
- * @table data_user_balance
- * @return void
- */
- private function _create_data_user_balance()
- {
-
- // 当前数据表
- $table = 'data_user_balance';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-余额',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '充值编号'])
- ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '充值名称'])
- ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '充值备注'])
- ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '充值金额'])
- ->addColumn('upgrade', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '强制升级'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '系统用户'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code', ['name' => 'idx_data_user_balance_code'])
- ->addIndex('deleted', ['name' => 'idx_data_user_balance_deleted'])
- ->addIndex('uuid', ['name' => 'idx_data_user_balance_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserLogger
- * @table data_user_logger
- * @return void
- */
- private function _create_data_user_logger()
- {
-
- // 当前数据表
- $table = 'data_user_logger';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '登录用户'])
- ->addColumn('phone', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '用户手机'])
- ->addColumn('regon_ip', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '登录地址'])
- ->addColumn('region_prov', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '所有省份'])
- ->addColumn('region_city', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '所在城市'])
- ->addColumn('region_area', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '所在区间'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '注册时间'])
- ->addIndex('uuid', ['name' => 'idx_data_user_logger_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserMessage
- * @table data_user_message
- * @return void
- */
- private function _create_data_user_message()
- {
-
- // 当前数据表
- $table = 'data_user_message';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-短信',
- ])
- ->addColumn('type', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '短信类型'])
- ->addColumn('msgid', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '消息编号'])
- ->addColumn('phone', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '目标手机'])
- ->addColumn('region', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '国家编号'])
- ->addColumn('result', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '返回结果'])
- ->addColumn('content', 'string', ['limit' => 512, 'default' => '', 'null' => true, 'comment' => '短信内容'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '短信状态(0失败,1成功)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_data_user_message_type'])
- ->addIndex('status', ['name' => 'idx_data_user_message_status'])
- ->addIndex('phone', ['name' => 'idx_data_user_message_phone'])
- ->addIndex('msgid', ['name' => 'idx_data_user_message_msgid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserPayment
- * @table data_user_payment
- * @return void
- */
- private function _create_data_user_payment()
- {
-
- // 当前数据表
- $table = 'data_user_payment';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-支付',
- ])
- ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '订单单号'])
- ->addColumn('order_name', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '订单描述'])
- ->addColumn('order_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单金额'])
- ->addColumn('payment_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '支付编号'])
- ->addColumn('payment_type', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '支付通道'])
- ->addColumn('payment_trade', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '支付单号'])
- ->addColumn('payment_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '支付状态'])
- ->addColumn('payment_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '支付金额'])
- ->addColumn('payment_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '支付时间'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('order_no', ['name' => 'idx_data_user_payment_order_no'])
- ->addIndex('payment_code', ['name' => 'idx_data_user_payment_payment_code'])
- ->addIndex('payment_type', ['name' => 'idx_data_user_payment_payment_type'])
- ->addIndex('payment_trade', ['name' => 'idx_data_user_payment_payment_trade'])
- ->addIndex('payment_status', ['name' => 'idx_data_user_payment_payment_status'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserRebate
- * @table data_user_rebate
- * @return void
- */
- private function _create_data_user_rebate()
- {
-
- // 当前数据表
- $table = 'data_user_rebate';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-返利',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '奖励日期'])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '奖励编号'])
- ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '奖励类型'])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '奖励名称'])
- ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '奖励数量'])
- ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '订单单号'])
- ->addColumn('order_uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '订单用户'])
- ->addColumn('order_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单金额'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '生效状态(0未生效,1已生效)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删除,1已删除)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('type', ['name' => 'idx_data_user_rebate_type'])
- ->addIndex('date', ['name' => 'idx_data_user_rebate_date'])
- ->addIndex('code', ['name' => 'idx_data_user_rebate_code'])
- ->addIndex('name', ['name' => 'idx_data_user_rebate_name'])
- ->addIndex('status', ['name' => 'idx_data_user_rebate_status'])
- ->addIndex('uuid', ['name' => 'idx_data_user_rebate_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserToken
- * @table data_user_token
- * @return void
- */
- private function _create_data_user_token()
- {
-
- // 当前数据表
- $table = 'data_user_token';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-认证',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '授权类型'])
- ->addColumn('time', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '有效时间'])
- ->addColumn('token', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '授权令牌'])
- ->addColumn('tokenv', 'string', ['limit' => 32, 'default' => '', 'null' => true, 'comment' => '授权验证'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('uuid', ['name' => 'idx_data_user_token_uuid'])
- ->addIndex('type', ['name' => 'idx_data_user_token_type'])
- ->addIndex('time', ['name' => 'idx_data_user_token_time'])
- ->addIndex('token', ['name' => 'idx_data_user_token_token'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class DataUserTransfer
- * @table data_user_transfer
- * @return void
- */
- private function _create_data_user_transfer()
- {
-
- // 当前数据表
- $table = 'data_user_transfer';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-提现',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户UID'])
- ->addColumn('type', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '提现方式'])
- ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '提现日期'])
- ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '提现单号'])
- ->addColumn('appid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '公众号APPID'])
- ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '公众号OPENID'])
- ->addColumn('charge_rate', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'null' => true, 'comment' => '提现手续费比例'])
- ->addColumn('charge_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '提现手续费金额'])
- ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '提现转账金额'])
- ->addColumn('qrcode', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '收款码图片地址'])
- ->addColumn('bank_wseq', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '微信银行编号'])
- ->addColumn('bank_name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '开户银行名称'])
- ->addColumn('bank_bran', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '开户分行名称'])
- ->addColumn('bank_user', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '开户账号姓名'])
- ->addColumn('bank_code', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '开户银行卡号'])
- ->addColumn('alipay_user', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '支付宝姓名'])
- ->addColumn('alipay_code', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '支付宝账号'])
- ->addColumn('remark', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '提现描述'])
- ->addColumn('trade_no', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '交易单号'])
- ->addColumn('trade_time', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '打款时间'])
- ->addColumn('change_time', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '处理时间'])
- ->addColumn('change_desc', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '处理描述'])
- ->addColumn('audit_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '审核状态'])
- ->addColumn('audit_remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '审核描述'])
- ->addColumn('audit_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '审核时间'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '提现状态(0失败,1待审核,2已审核,3打款中,4已打款,5已收款)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code', ['name' => 'idx_data_user_transfer_code'])
- ->addIndex('status', ['name' => 'idx_data_user_transfer_status'])
- ->addIndex('date', ['name' => 'idx_data_user_transfer_date'])
- ->addIndex('type', ['name' => 'idx_data_user_transfer_type'])
- ->addIndex('audit_status', ['name' => 'idx_data_user_transfer_audit_status'])
- ->addIndex('appid', ['name' => 'idx_data_user_transfer_appid'])
- ->addIndex('openid', ['name' => 'idx_data_user_transfer_openid'])
- ->addIndex('uuid', ['name' => 'idx_data_user_transfer_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopGoods
- * @table shop_goods
- * @return void
- */
- private function _create_shop_goods()
- {
-
- // 当前数据表
- $table = 'shop_goods';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-内容',
- ])
- ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商品编号'])
- ->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '商品名称'])
- ->addColumn('marks', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '商品标签'])
- ->addColumn('cateids', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '分类编号'])
- ->addColumn('cover', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '商品封面'])
- ->addColumn('slider', 'text', ['default' => null, 'null' => true, 'comment' => '轮播图片'])
- ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '商品描述'])
- ->addColumn('content', 'text', ['default' => null, 'null' => true, 'comment' => '商品详情'])
- ->addColumn('payment', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '支付方式'])
- ->addColumn('data_specs', 'text', ['default' => null, 'null' => true, 'comment' => '商品规格(JSON)'])
- ->addColumn('data_items', 'text', ['default' => null, 'null' => true, 'comment' => '商品规格(JSON)'])
- ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商品库存统计'])
- ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商品销售统计'])
- ->addColumn('stock_virtual', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商品虚拟销量'])
- ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '最低销售价格'])
- ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '最低市场价格'])
- ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '折扣方案编号'])
- ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '物流运费模板'])
- ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '物流配送(0无需配送,1需要配送)'])
- ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '参与返利(0无需返利,1需要返利)'])
- ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '入会礼包(0非入会礼包,1是入会礼包)'])
- ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '购买升级等级(0不升级,其他升级)'])
- ->addColumn('limit_low_vip', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '限制最低等级(0不限制,其他限制)'])
- ->addColumn('limit_max_num', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '最大购买数量(0不限制,其他限制)'])
- ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '访问阅读统计'])
- ->addColumn('state_hot', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '设置热度标签'])
- ->addColumn('state_home', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '设置首页推荐'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '列表排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '商品状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('code', ['name' => 'idx_shop_goods_code'])
- ->addIndex('status', ['name' => 'idx_shop_goods_status'])
- ->addIndex('deleted', ['name' => 'idx_shop_goods_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopGoodsCate
- * @table shop_goods_cate
- * @return void
- */
- private function _create_shop_goods_cate()
- {
-
- // 当前数据表
- $table = 'shop_goods_cate';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-分类',
- ])
- ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '上级分类'])
- ->addColumn('name', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '分类名称'])
- ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '分类图标'])
- ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '分类描述'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '使用状态'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('sort', ['name' => 'idx_shop_goods_cate_sort'])
- ->addIndex('status', ['name' => 'idx_shop_goods_cate_status'])
- ->addIndex('deleted', ['name' => 'idx_shop_goods_cate_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopGoodsItem
- * @table shop_goods_item
- * @return void
- */
- private function _create_shop_goods_item()
- {
-
- // 当前数据表
- $table = 'shop_goods_item';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-规格',
- ])
- ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商品SKU'])
- ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商品编号'])
- ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '商品规格'])
- ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '销售数量'])
- ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商品库存'])
- ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '销售价格'])
- ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '市场价格'])
- ->addColumn('number_virtual', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '虚拟销量'])
- ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 1, 'null' => true, 'comment' => '配送计件'])
- ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '奖励余额'])
- ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '奖励积分'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '商品状态'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('goods_code', ['name' => 'idx_shop_goods_item_goods_code'])
- ->addIndex('goods_spec', ['name' => 'idx_shop_goods_item_goods_spec'])
- ->addIndex('status', ['name' => 'idx_shop_goods_item_status'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopGoodsMark
- * @table shop_goods_mark
- * @return void
- */
- private function _create_shop_goods_mark()
- {
-
- // 当前数据表
- $table = 'shop_goods_mark';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-标签',
- ])
- ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '标签名称'])
- ->addColumn('remark', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '标签描述'])
- ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '排序权重'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '标签状态(1使用,0禁用)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('sort', ['name' => 'idx_shop_goods_mark_sort'])
- ->addIndex('status', ['name' => 'idx_shop_goods_mark_status'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopGoodsStock
- * @table shop_goods_stock
- * @return void
- */
- private function _create_shop_goods_stock()
- {
-
- // 当前数据表
- $table = 'shop_goods_stock';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-库存',
- ])
- ->addColumn('batch_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '操作批量'])
- ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商品编号'])
- ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '商品规格'])
- ->addColumn('goods_stock', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '入库数量'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '数据状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('status', ['name' => 'idx_shop_goods_stock_status'])
- ->addIndex('deleted', ['name' => 'idx_shop_goods_stock_deleted'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopOrder
- * @table shop_order
- * @return void
- */
- private function _create_shop_order()
- {
-
- // 当前数据表
- $table = 'shop_order';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-内容',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '下单用户编号'])
- ->addColumn('puid1', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '推荐一层用户'])
- ->addColumn('puid2', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '推荐二层用户'])
- ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商品订单单号'])
- ->addColumn('amount_real', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单实际金额'])
- ->addColumn('amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '订单统计金额'])
- ->addColumn('amount_goods', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品统计金额'])
- ->addColumn('amount_reduct', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '随机减免金额'])
- ->addColumn('amount_express', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '快递费用金额'])
- ->addColumn('amount_discount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '折扣后的金额'])
- ->addColumn('payment_type', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '实际支付平台'])
- ->addColumn('payment_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '实际通道编号'])
- ->addColumn('payment_allow', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '允许支付通道'])
- ->addColumn('payment_trade', 'string', ['limit' => 80, 'default' => '', 'null' => true, 'comment' => '实际支付单号'])
- ->addColumn('payment_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '实际支付状态'])
- ->addColumn('payment_image', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '支付凭证图片'])
- ->addColumn('payment_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '实际支付金额'])
- ->addColumn('payment_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '余额抵扣金额'])
- ->addColumn('payment_remark', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '支付结果描述'])
- ->addColumn('payment_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '支付到账时间'])
- ->addColumn('number_goods', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '订单商品数量'])
- ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '订单快递计数'])
- ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '物流配送类型(0无需配送,1需要配送)'])
- ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '参与返利金额'])
- ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '奖励账户余额'])
- ->addColumn('order_remark', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '订单用户备注'])
- ->addColumn('cancel_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '订单取消状态'])
- ->addColumn('cancel_remark', 'string', ['limit' => 200, 'default' => '', 'null' => true, 'comment' => '订单取消描述'])
- ->addColumn('cancel_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '订单取消时间'])
- ->addColumn('deleted_status', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '订单删除状态(0未删,1已删)'])
- ->addColumn('deleted_remark', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '订单删除描述'])
- ->addColumn('deleted_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '订单删除时间'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '订单流程状态(0已取消,1预订单,2待支付,3支付中,4已支付,5已发货,6已完成)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '订单创建时间'])
- ->addIndex('status', ['name' => 'idx_shop_order_status'])
- ->addIndex('order_no', ['name' => 'idx_shop_order_order_no'])
- ->addIndex('cancel_status', ['name' => 'idx_shop_order_cancel_status'])
- ->addIndex('payment_status', ['name' => 'idx_shop_order_payment_status'])
- ->addIndex('puid1', ['name' => 'idx_shop_order_puid1'])
- ->addIndex('deleted_status', ['name' => 'idx_shop_order_deleted_status'])
- ->addIndex('uuid', ['name' => 'idx_shop_order_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopOrderItem
- * @table shop_order_item
- * @return void
- */
- private function _create_shop_order_item()
- {
-
- // 当前数据表
- $table = 'shop_order_item';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-商品',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商城用户编号'])
- ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商城订单单号'])
- ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商城商品SKU'])
- ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商城商品编号'])
- ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '商城商品规格'])
- ->addColumn('goods_name', 'string', ['limit' => 250, 'default' => '', 'null' => true, 'comment' => '商城商品名称'])
- ->addColumn('goods_cover', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '商品封面图片'])
- ->addColumn('goods_payment', 'string', ['limit' => 999, 'default' => '', 'null' => true, 'comment' => '指定支付通道'])
- ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品市场单价'])
- ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品销售单价'])
- ->addColumn('total_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品市场总价'])
- ->addColumn('total_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品销售总价'])
- ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品奖励余额'])
- ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品奖励积分'])
- ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 1, 'null' => true, 'comment' => '包含商品数量'])
- ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '用户等级名称'])
- ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '用户等级序号'])
- ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '是否入会礼包(0非礼包,1是礼包)'])
- ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '升级用户等级'])
- ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '物流配送类型(0虚物,1实物)'])
- ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '快递邮费模板'])
- ->addColumn('truck_number', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '快递计费基数'])
- ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '参与返利状态(0不返,1返利)'])
- ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '参与返利金额'])
- ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '优惠方案编号'])
- ->addColumn('discount_rate', 'decimal', ['precision' => 20, 'scale' => 6, 'default' => '100.000000', 'null' => true, 'comment' => '销售价格折扣'])
- ->addColumn('discount_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '商品优惠金额'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '商品状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '订单创建时间'])
- ->addIndex('status', ['name' => 'idx_shop_order_item_status'])
- ->addIndex('deleted', ['name' => 'idx_shop_order_item_deleted'])
- ->addIndex('order_no', ['name' => 'idx_shop_order_item_order_no'])
- ->addIndex('goods_sku', ['name' => 'idx_shop_order_item_goods_sku'])
- ->addIndex('goods_code', ['name' => 'idx_shop_order_item_goods_code'])
- ->addIndex('goods_spec', ['name' => 'idx_shop_order_item_goods_spec'])
- ->addIndex('rebate_type', ['name' => 'idx_shop_order_item_rebate_type'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
- /**
- * 创建数据对象
- * @class ShopOrderSend
- * @table shop_order_send
- * @return void
- */
- private function _create_shop_order_send()
- {
-
- // 当前数据表
- $table = 'shop_order_send';
-
- // 存在则跳过
- if ($this->hasTable($table)) return;
-
- // 创建数据表
- $this->table($table, [
- 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-配送',
- ])
- ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '商城用户编号'])
- ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '商城订单单号'])
- ->addColumn('address_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '配送地址编号'])
- ->addColumn('address_name', 'string', ['limit' => 50, 'default' => '', 'null' => true, 'comment' => '配送收货人姓名'])
- ->addColumn('address_phone', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '配送收货人手机'])
- ->addColumn('address_idcode', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '配送收货人证件号码'])
- ->addColumn('address_idimg1', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '配送收货人证件正面'])
- ->addColumn('address_idimg2', 'string', ['limit' => 500, 'default' => '', 'null' => true, 'comment' => '配送收货人证件反面'])
- ->addColumn('address_province', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '配送地址的省份'])
- ->addColumn('address_city', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '配送地址的城市'])
- ->addColumn('address_area', 'string', ['limit' => 30, 'default' => '', 'null' => true, 'comment' => '配送地址的区域'])
- ->addColumn('address_content', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '配送的详细地址'])
- ->addColumn('address_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '地址确认时间'])
- ->addColumn('template_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '配送模板编号'])
- ->addColumn('template_count', 'integer', ['limit' => 20, 'default' => 0, 'null' => true, 'comment' => '快递计费基数'])
- ->addColumn('template_remark', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '配送计算描述'])
- ->addColumn('template_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'null' => true, 'comment' => '配送计算金额'])
- ->addColumn('company_code', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '快递公司编码'])
- ->addColumn('company_name', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '快递公司名称'])
- ->addColumn('send_number', 'string', ['limit' => 100, 'default' => '', 'null' => true, 'comment' => '快递运送单号'])
- ->addColumn('send_remark', 'string', ['limit' => 255, 'default' => '', 'null' => true, 'comment' => '快递发送备注'])
- ->addColumn('send_datetime', 'string', ['limit' => 20, 'default' => '', 'null' => true, 'comment' => '快递发送时间'])
- ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'null' => true, 'comment' => '发货商品状态(1使用,0禁用)'])
- ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'null' => true, 'comment' => '发货删除状态(0未删,1已删)'])
- ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'null' => true, 'comment' => '创建时间'])
- ->addIndex('status', ['name' => 'idx_shop_order_send_status'])
- ->addIndex('deleted', ['name' => 'idx_shop_order_send_deleted'])
- ->addIndex('order_no', ['name' => 'idx_shop_order_send_order_no'])
- ->addIndex('uuid', ['name' => 'idx_shop_order_send_uuid'])
- ->save();
-
- // 修改主键长度
- $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]);
- }
-
-}
diff --git a/database/migrations/20221013045839_install_user_data.php b/database/migrations/20221013045839_install_user_data.php
deleted file mode 100644
index f6ce2c5ec..000000000
--- a/database/migrations/20221013045839_install_user_data.php
+++ /dev/null
@@ -1,72 +0,0 @@
-insertMenu();
- }
-
- /**
- * 创建菜单
- * @return void
- */
- protected function insertMenu()
- {
- PhinxExtend::write2menu([
- [
- 'name' => '控制台',
- 'sort' => '300',
- 'subs' => [
- [
- 'name' => '数据管理',
- 'subs' => [
- ['name' => '数据统计报表', 'icon' => 'layui-icon layui-icon-theme', 'node' => 'data/total.portal/index'],
- ['name' => '轮播图片管理', 'icon' => 'layui-icon layui-icon-carousel', 'node' => 'data/base.slider/index'],
- ['name' => '页面内容管理', 'icon' => 'layui-icon layui-icon-read', 'node' => 'data/base.pager/index'],
- ['name' => '文章内容管理', 'icon' => 'layui-icon layui-icon-template', 'node' => 'data/news.item/index'],
- ['name' => '支付参数管理', 'icon' => 'layui-icon layui-icon-rmb', 'node' => 'data/base.payment/index'],
- ['name' => '系统通知管理', 'icon' => 'layui-icon layui-icon-notice', 'node' => 'data/base.message/index'],
- ['name' => '微信小程序配置', 'icon' => 'layui-icon layui-icon-set', 'node' => 'data/base.config/wxapp'],
- ['name' => '邀请二维码设置', 'icon' => 'layui-icon layui-icon-cols', 'node' => 'data/base.config/cropper'],
- ],
- ],
- [
- 'name' => '用户管理',
- 'subs' => [
- ['name' => '会员用户管理', 'icon' => 'layui-icon layui-icon-user', 'node' => 'data/user.admin/index'],
- ['name' => '余额充值管理', 'icon' => 'layui-icon layui-icon-rmb', 'node' => 'data/user.balance/index'],
- ['name' => '用户返利管理', 'icon' => 'layui-icon layui-icon-transfer', 'node' => 'data/user.rebate/index'],
- ['name' => '用户提现管理', 'icon' => 'layui-icon layui-icon-component', 'node' => 'data/user.transfer/index'],
- ['name' => '用户等级管理', 'icon' => 'layui-icon layui-icon-senior', 'node' => 'data/base.upgrade/index'],
- ['name' => '用户折扣方案', 'icon' => 'layui-icon layui-icon-set', 'node' => 'data/base.discount/index'],
- ],
- ],
- [
- 'name' => '商城管理',
- 'subs' => [
- ['name' => '商品数据管理', 'icon' => 'layui-icon layui-icon-star', 'node' => 'data/shop.goods/index'],
- ['name' => '商品分类管理', 'icon' => 'layui-icon layui-icon-tabs', 'node' => 'data/shop.cate/index'],
- ['name' => '订单数据管理', 'icon' => 'layui-icon layui-icon-template', 'node' => 'data/shop.order/index'],
- ['name' => '订单发货管理', 'icon' => 'layui-icon layui-icon-transfer', 'node' => 'data/shop.send/index'],
- ['name' => '快递公司管理', 'icon' => 'layui-icon layui-icon-website', 'node' => 'data/base.postage.company/index'],
- ['name' => '邮费模板管理', 'icon' => 'layui-icon layui-icon-template-1', 'node' => 'data/base.postage.template/index'],
- ],
- ],
- ],
- ],
- ], ['node' => 'data/user.admin/index']);
- }
-}
diff --git a/database/migrations/20221013045840_install_user_region.php b/database/migrations/20221013045840_install_user_region.php
deleted file mode 100644
index 85dec6d56..000000000
--- a/database/migrations/20221013045840_install_user_region.php
+++ /dev/null
@@ -1,3784 +0,0 @@
-installRegion();
- }
-
- /**
- * 写入默认区域数据
- * @return void
- * @throws \think\db\exception\DbException
- */
- private function installRegion()
- {
- // 检查数据
- $table = 'base_postage_region';
- $result = $this->fetchRow("select count(1) _count from $table");
- if (isset($result['_count']) && $result['_count'] > 0) return;
-
- // 写入数据
- $this->execute(<<{this.set(t,e[t])}),this);rt(this);const i=this[Ze];if(e in this&&!i.has(e))throw new l("observable-set-cannot-override",this);Object.defineProperty(this,e,{enumerable:!0,configurable:!0,get:()=>i.get(e),set(t){const n=i.get(e);let s=this.fire("set:"+e,e,t,n);void 0===s&&(s=t),n===s&&i.has(e)||(i.set(e,s),this.fire("change:"+e,e,s,n))}}),this[e]=t},bind(...e){if(!e.length||!ct(e))throw new l("observable-bind-wrong-properties",this);if(new Set(e).size!==e.length)throw new l("observable-bind-duplicate-properties",this);rt(this);const t=this[tt];e.forEach((e=>{if(t.has(e))throw new l("observable-bind-rebind",this)}));const i=new Map;return e.forEach((e=>{const n={property:e,to:[]};t.set(e,n),i.set(e,n)})),{to:at,toMany:lt,_observable:this,_bindProperties:e,_to:[],_bindings:i}},unbind(...e){if(!this[Ze])return;const t=this[tt],i=this[et];if(e.length){if(!ct(e))throw new l("observable-unbind-wrong-properties",this);e.forEach((e=>{const n=t.get(e);if(!n)return;let s,o,r,a;n.to.forEach((e=>{s=e[0],o=e[1],r=i.get(s),a=r[o],a.delete(n),a.size||delete r[o],Object.keys(r).length||(i.delete(s),this.stopListening(s,"change"))})),t.delete(e)}))}else i.forEach(((e,t)=>{this.stopListening(t,"change")})),i.clear(),t.clear()},decorate(e){const t=this[e];if(!t)throw new l("observablemixin-cannot-decorate-undefined",this,{object:this,methodName:e});this.on(e,((e,i)=>{e.return=t.apply(this,i)})),this[e]=function(...t){return this.fire(e,t)},this[e][nt]=t,this[it]||(this[it]=[]),this[it].push(e)}};Xe(st,p),st.stopListening=function(e,t,i){if(!e&&this[it]){for(const e of this[it])this[e]=this[e][nt];delete this[it]}p.stopListening.call(this,e,t,i)};const ot=st;function rt(e){e[Ze]||(Object.defineProperty(e,Ze,{value:new Map}),Object.defineProperty(e,et,{value:new Map}),Object.defineProperty(e,tt,{value:new Map}))}function at(...e){const t=function(...e){if(!e.length)throw new l("observable-bind-to-parse-error",null);const t={to:[]};let i;"function"==typeof e[e.length-1]&&(t.callback=e.pop());return e.forEach((e=>{if("string"==typeof e)i.properties.push(e);else{if("object"!=typeof e)throw new l("observable-bind-to-parse-error",null);i={observable:e,properties:[]},t.to.push(i)}})),t}(...e),i=Array.from(this._bindings.keys()),n=i.length;if(!t.callback&&t.to.length>1)throw new l("observable-bind-to-no-callback",this);if(n>1&&t.callback)throw new l("observable-bind-to-extra-callback",this);var s;t.to.forEach((e=>{if(e.properties.length&&e.properties.length!==n)throw new l("observable-bind-to-properties-length",this);e.properties.length||(e.properties=this._bindProperties)})),this._to=t.to,t.callback&&(this._bindings.get(i[0]).callback=t.callback),s=this._observable,this._to.forEach((e=>{const t=s[et];let i;t.get(e.observable)||s.listenTo(e.observable,"change",((n,o)=>{i=t.get(e.observable)[o],i&&i.forEach((e=>{dt(s,e.property)}))}))})),function(e){let t;e._bindings.forEach(((i,n)=>{e._to.forEach((s=>{t=s.properties[i.callback?0:e._bindProperties.indexOf(n)],i.to.push([s.observable,t]),function(e,t,i,n){const s=e[et],o=s.get(i),r=o||{};r[n]||(r[n]=new Set);r[n].add(t),o||s.set(i,r)}(e._observable,i,s.observable,t)}))}))}(this),this._bindProperties.forEach((e=>{dt(this._observable,e)}))}function lt(e,t,i){if(this._bindings.size>1)throw new l("observable-bind-to-many-not-one-binding",this);this.to(...function(e,t){const i=e.map((e=>[e,t]));return Array.prototype.concat.apply([],i)}(e,t),i)}function ct(e){return e.every((e=>"string"==typeof e))}function dt(e,t){const i=e[tt].get(t);let n;i.callback?n=i.callback.apply(e,i.to.map((e=>e[0][e[1]]))):(n=i.to[0],n=n[0][n[1]]),Object.prototype.hasOwnProperty.call(e,t)?e[t]=n:e.set(t,n)}function ht(e,...t){t.forEach((t=>{Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t)).forEach((i=>{if(i in e.prototype)return;const n=Object.getOwnPropertyDescriptor(t,i);n.enumerable=!1,Object.defineProperty(e.prototype,i,n)}))}))}class ut{constructor(e){this.editor=e,this.set("isEnabled",!0),this._disableStack=new Set}forceDisabled(e){this._disableStack.add(e),1==this._disableStack.size&&(this.on("set:isEnabled",mt,{priority:"highest"}),this.isEnabled=!1)}clearForceDisabled(e){this._disableStack.delete(e),0==this._disableStack.size&&(this.off("set:isEnabled",mt),this.isEnabled=!0)}destroy(){this.stopListening()}static get isContextPlugin(){return!1}}function mt(e){e.return=!1,e.stop()}ht(ut,ot);class gt{constructor(e){this.editor=e,this.set("value",void 0),this.set("isEnabled",!1),this.affectsData=!0,this._disableStack=new Set,this.decorate("execute"),this.listenTo(this.editor.model.document,"change",(()=>{this.refresh()})),this.on("execute",(e=>{this.isEnabled||e.stop()}),{priority:"high"}),this.listenTo(e,"change:isReadOnly",((e,t,i)=>{i&&this.affectsData?this.forceDisabled("readOnlyMode"):this.clearForceDisabled("readOnlyMode")}))}refresh(){this.isEnabled=!0}forceDisabled(e){this._disableStack.add(e),1==this._disableStack.size&&(this.on("set:isEnabled",ft,{priority:"highest"}),this.isEnabled=!1)}clearForceDisabled(e){this._disableStack.delete(e),0==this._disableStack.size&&(this.off("set:isEnabled",ft),this.refresh())}execute(){}destroy(){this.stopListening()}}function ft(e){e.return=!1,e.stop()}ht(gt,ot);class pt extends gt{constructor(e){super(e),this._childCommandsDefinitions=[]}refresh(){}execute(...e){const t=this._getFirstEnabledCommand();return!!t&&t.execute(e)}registerChildCommand(e,t={priority:"normal"}){a(this._childCommandsDefinitions,{command:e,priority:t.priority}),e.on("change:isEnabled",(()=>this._checkEnabled())),this._checkEnabled()}_checkEnabled(){this.isEnabled=!!this._getFirstEnabledCommand()}_getFirstEnabledCommand(){const e=this._childCommandsDefinitions.find((({command:e})=>e.isEnabled));return e&&e.command}}const bt=function(e,t){return function(i){return e(t(i))}};const wt=bt(Object.getPrototypeOf,Object);var vt=Function.prototype,_t=Object.prototype,yt=vt.toString,kt=_t.hasOwnProperty,Ct=yt.call(Object);const At=function(e){if(!Ce(e)||"[object Object]"!=F(e))return!1;var t=wt(e);if(null===t)return!0;var i=kt.call(t,"constructor")&&t.constructor;return"function"==typeof i&&i instanceof i&&yt.call(i)==Ct};const xt=function(){this.__data__=[],this.size=0};const Tt=function(e,t){for(var i=e.length;i--;)if(ie(e[i][0],t))return i;return-1};var Et=Array.prototype.splice;const St=function(e){var t=this.__data__,i=Tt(t,e);return!(i<0)&&(i==t.length-1?t.pop():Et.call(t,i,1),--this.size,!0)};const Pt=function(e){var t=this.__data__,i=Tt(t,e);return i<0?void 0:t[i][1]};const It=function(e){return Tt(this.__data__,e)>-1};const Rt=function(e,t){var i=this.__data__,n=Tt(i,e);return n<0?(++this.size,i.push([e,t])):i[n][1]=t,this};function Vt(e){var t=-1,i=null==e?0:e.length;for(this.clear();++t{this._setToTarget(e,n,t[n],i)}))}}function An(e){return yn(e,xn)}function xn(e){return kn(e)?e:void 0}function Tn(e){return!(!e||!e[Symbol.iterator])}class En{constructor(e={},t={}){const i=Tn(e);if(i||(t=e),this._items=[],this._itemMap=new Map,this._idProperty=t.idProperty||"id",this._bindToExternalToInternalMap=new WeakMap,this._bindToInternalToExternalMap=new WeakMap,this._skippedIndexesFromExternal=[],i)for(const t of e)this._items.push(t),this._itemMap.set(this._getItemIdBeforeAdding(t),t)}get length(){return this._items.length}get first(){return this._items[0]||null}get last(){return this._items[this.length-1]||null}add(e,t){return this.addMany([e],t)}addMany(e,t){if(void 0===t)t=this._items.length;else if(t>this._items.length||t<0)throw new l("collection-add-item-invalid-index",this);for(let i=0;it===e));return Array.isArray(t)}set(e,t){if(A(e))for(const[t,i]of Object.entries(e))this._styleProcessor.toNormalizedForm(t,i,this._styles);else this._styleProcessor.toNormalizedForm(e,t,this._styles)}remove(e){const t=Es(e);ms(this._styles,t),delete this._styles[e],this._cleanEmptyObjectsOnPath(t)}getNormalized(e){return this._styleProcessor.getNormalized(e,this._styles)}toString(){return this.isEmpty?"":this._getStylesEntries().map((e=>e.join(":"))).sort().join(";")+";"}getAsString(e){if(this.isEmpty)return;if(this._styles[e]&&!A(this._styles[e]))return this._styles[e];const t=this._styleProcessor.getReducedForm(e,this._styles).find((([t])=>t===e));return Array.isArray(t)?t[1]:void 0}getStyleNames(e=!1){if(this.isEmpty)return[];if(e)return this._styleProcessor.getStyleNames(this._styles);return this._getStylesEntries().map((([e])=>e))}clear(){this._styles={}}_getStylesEntries(){const e=[],t=Object.keys(this._styles);for(const i of t)e.push(...this._styleProcessor.getReducedForm(i,this._styles));return e}_cleanEmptyObjectsOnPath(e){const t=e.split(".");if(!(t.length>1))return;const i=t.splice(0,t.length-1).join("."),n=gs(this._styles,i);if(!n)return;!Array.from(Object.keys(n)).length&&this.remove(i)}}class Ts{constructor(){this._normalizers=new Map,this._extractors=new Map,this._reducers=new Map,this._consumables=new Map}toNormalizedForm(e,t,i){if(A(t))Ss(i,Es(e),t);else if(this._normalizers.has(e)){const n=this._normalizers.get(e),{path:s,value:o}=n(t);Ss(i,s,o)}else Ss(i,e,t)}getNormalized(e,t){if(!e)return ks({},t);if(void 0!==t[e])return t[e];if(this._extractors.has(e)){const i=this._extractors.get(e);if("string"==typeof i)return gs(t,i);const n=i(e,t);if(n)return n}return gs(t,Es(e))}getReducedForm(e,t){const i=this.getNormalized(e,t);if(void 0===i)return[];if(this._reducers.has(e)){return this._reducers.get(e)(i)}return[[e,i]]}getStyleNames(e){const t=Array.from(this._consumables.keys()).filter((t=>{const i=this.getNormalized(t,e);return i&&"object"==typeof i?Object.keys(i).length:i})),i=new Set([...t,...Object.keys(e)]);return Array.from(i.values())}getRelatedStyles(e){return this._consumables.get(e)||[]}setNormalizer(e,t){this._normalizers.set(e,t)}setExtractor(e,t){this._extractors.set(e,t)}setReducer(e,t){this._reducers.set(e,t)}setStyleRelation(e,t){this._mapStyleNames(e,t);for(const i of t)this._mapStyleNames(i,[e])}_mapStyleNames(e,t){this._consumables.has(e)||this._consumables.set(e,[]),this._consumables.get(e).push(...t)}}function Es(e){return e.replace("-",".")}function Ss(e,t,i){let n=i;A(i)&&(n=ks({},gs(e,t),i)),As(e,t,n)}class Ps extends Dn{constructor(e,t,i,n){if(super(e),this.name=t,this._attrs=function(e){e=Hn(e);for(const[t,i]of e)null===i?e.delete(t):"string"!=typeof i&&e.set(t,String(i));return e}(i),this._children=[],n&&this._insertChild(0,n),this._classes=new Set,this._attrs.has("class")){const e=this._attrs.get("class");Is(this._classes,e),this._attrs.delete("class")}this._styles=new xs(this.document.stylesProcessor),this._attrs.has("style")&&(this._styles.setTo(this._attrs.get("style")),this._attrs.delete("style")),this._customProperties=new Map,this._unsafeAttributesToRender=[]}get childCount(){return this._children.length}get isEmpty(){return 0===this._children.length}is(e,t=null){return t?t===this.name&&("element"===e||"view:element"===e):"element"===e||"view:element"===e||"node"===e||"view:node"===e}getChild(e){return this._children[e]}getChildIndex(e){return this._children.indexOf(e)}getChildren(){return this._children[Symbol.iterator]()}*getAttributeKeys(){this._classes.size>0&&(yield"class"),this._styles.isEmpty||(yield"style"),yield*this._attrs.keys()}*getAttributes(){yield*this._attrs.entries(),this._classes.size>0&&(yield["class",this.getAttribute("class")]),this._styles.isEmpty||(yield["style",this.getAttribute("style")])}getAttribute(e){if("class"==e)return this._classes.size>0?[...this._classes].join(" "):void 0;if("style"==e){const e=this._styles.toString();return""==e?void 0:e}return this._attrs.get(e)}hasAttribute(e){return"class"==e?this._classes.size>0:"style"==e?!this._styles.isEmpty:this._attrs.has(e)}isSimilar(e){if(!(e instanceof Ps))return!1;if(this===e)return!0;if(this.name!=e.name)return!1;if(this._attrs.size!==e._attrs.size||this._classes.size!==e._classes.size||this._styles.size!==e._styles.size)return!1;for(const[t,i]of this._attrs)if(!e._attrs.has(t)||e._attrs.get(t)!==i)return!1;for(const t of this._classes)if(!e._classes.has(t))return!1;for(const t of this._styles.getStyleNames())if(!e._styles.has(t)||e._styles.getAsString(t)!==this._styles.getAsString(t))return!1;return!0}hasClass(...e){for(const t of e)if(!this._classes.has(t))return!1;return!0}getClassNames(){return this._classes.keys()}getStyle(e){return this._styles.getAsString(e)}getNormalizedStyle(e){return this._styles.getNormalized(e)}getStyleNames(e=!1){return this._styles.getStyleNames(e)}hasStyle(...e){for(const t of e)if(!this._styles.has(t))return!1;return!0}findAncestor(...e){const t=new Wn(...e);let i=this.parent;for(;i;){if(t.match(i))return i;i=i.parent}return null}getCustomProperty(e){return this._customProperties.get(e)}*getCustomProperties(){yield*this._customProperties.entries()}getIdentity(){const e=Array.from(this._classes).sort().join(","),t=this._styles.toString(),i=Array.from(this._attrs).map((e=>`${e[0]}="${e[1]}"`)).sort().join(" ");return this.name+(""==e?"":` class="${e}"`)+(t?` style="${t}"`:"")+(""==i?"":` ${i}`)}shouldRenderUnsafeAttribute(e){return this._unsafeAttributesToRender.includes(e)}_clone(e=!1){const t=[];if(e)for(const i of this.getChildren())t.push(i._clone(e));const i=new this.constructor(this.document,this.name,this._attrs,t);return i._classes=new Set(this._classes),i._styles.set(this._styles.getNormalized()),i._customProperties=new Map(this._customProperties),i.getFillerOffset=this.getFillerOffset,i._unsafeAttributesToRender=this._unsafeAttributesToRender,i}_appendChild(e){return this._insertChild(this.childCount,e)}_insertChild(e,t){this._fireChange("children",this);let i=0;const n=function(e,t){if("string"==typeof t)return[new zn(e,t)];Tn(t)||(t=[t]);return Array.from(t).map((t=>"string"==typeof t?new zn(e,t):t instanceof Ln?new zn(e,t.data):t))}(this.document,t);for(const t of n)null!==t.parent&&t._remove(),t.parent=this,t.document=this.document,this._children.splice(e,0,t),e++,i++;return i}_removeChildren(e,t=1){this._fireChange("children",this);for(let i=e;is?(e.nodesToHandle=n-s,e.offset=s):e.nodesToHandle=0);if("remove"==i.type&&e.offset
").replace(/\r?\n/g,"
").replace(/^\s/," ").replace(/\s$/," ").replace(/\s\s/g," ")).includes("
")||r.includes("
"))&&(r=`
${r}
`),o=r),o=this.editor.data.htmlProcessor.toView(o));const a=new n(this,"inputTransformation");this.fire(a,{content:o,dataTransfer:s,targetRanges:t.targetRanges,method:t.method}),a.stop.called&&e.stop(),i.scrollToTheSelection()}),{priority:"low"}),this.listenTo(this,"inputTransformation",((e,i)=>{if(i.content.isEmpty)return;const n=this.editor.data.toModel(i.content,"$clipboardHolder");0!=n.childCount&&(e.stop(),t.change((()=>{this.fire("contentInsertion",{content:n,method:i.method,dataTransfer:i.dataTransfer,targetRanges:i.targetRanges})})))}),{priority:"low"}),this.listenTo(this,"contentInsertion",((e,i)=>{i.resultRange=t.insertContent(i.content)}),{priority:"low"})}_setupCopyCut(){const e=this.editor,t=e.model.document,i=e.editing.view.document;function n(n,s){const o=s.dataTransfer;s.preventDefault();const r=e.data.toView(e.model.getSelectedContent(t.selection));i.fire("clipboardOutput",{dataTransfer:o,content:r,method:n.name})}this.listenTo(i,"copy",n,{priority:"low"}),this.listenTo(i,"cut",((t,i)=>{e.isReadOnly?i.preventDefault():n(t,i)}),{priority:"low"}),this.listenTo(i,"clipboardOutput",((i,n)=>{n.content.isEmpty||(n.dataTransfer.setData("text/html",this.editor.data.htmlProcessor.toData(n.content)),n.dataTransfer.setData("text/plain",dg(n.content))),"cut"==n.method&&e.model.deleteContent(t.selection)}),{priority:"low"})}}function*ug(e,t){for(const i of t)i&&e.getAttributeProperties(i[0]).copyOnEnter&&(yield i)}class mg extends gt{execute(){const e=this.editor.model,t=e.document;e.change((i=>{!function(e,t,i,n){const s=i.isCollapsed,o=i.getFirstRange(),r=o.start.parent,a=o.end.parent;if(n.isLimit(r)||n.isLimit(a))return void(s||r!=a||e.deleteContent(i));if(s){const e=ug(t.model.schema,i.getAttributes());gg(t,o.start),t.setSelectionAttribute(e)}else{const n=!(o.start.isAtStart&&o.end.isAtEnd),s=r==a;e.deleteContent(i,{leaveUnmerged:n}),n&&(s?gg(t,i.focus):t.setSelection(a,0))}}(this.editor.model,i,t.selection,e.schema),this.fire("afterExecute",{writer:i})}))}}function gg(e,t){e.split(t),e.setSelection(t.parent.nextSibling,0)}class fg extends fr{constructor(e){super(e);const t=this.document;t.on("keydown",((e,i)=>{if(this.isEnabled&&i.keyCode==lo.enter){const n=new js(t,"enter",t.selection.getFirstRange());t.fire(n,new Dr(t,i.domEvent,{isSoft:i.shiftKey})),n.stop.called&&e.stop()}}))}observe(){}}class pg extends ut{static get pluginName(){return"Enter"}init(){const e=this.editor,t=e.editing.view,i=t.document;t.addObserver(fg),e.commands.add("enter",new mg(e)),this.listenTo(i,"enter",((i,n)=>{n.preventDefault(),n.isSoft||(e.execute("enter"),t.scrollToTheSelection())}),{priority:"low"})}}class bg{constructor(){this._stack=[]}add(e,t){const i=this._stack,n=i[0];this._insertDescriptor(e);const s=i[0];n===s||wg(n,s)||this.fire("change:top",{oldDescriptor:n,newDescriptor:s,writer:t})}remove(e,t){const i=this._stack,n=i[0];this._removeDescriptor(e);const s=i[0];n===s||wg(n,s)||this.fire("change:top",{oldDescriptor:n,newDescriptor:s,writer:t})}_insertDescriptor(e){const t=this._stack,i=t.findIndex((t=>t.id===e.id));if(wg(e,t[i]))return;i>-1&&t.splice(i,1);let n=0;for(;t[n]&&vg(t[n],e);)n++;t.splice(n,0,e)}_removeDescriptor(e){const t=this._stack,i=t.findIndex((t=>t.id===e));i>-1&&t.splice(i,1)}}function wg(e,t){return e&&t&&e.priority==t.priority&&_g(e.classes)==_g(t.classes)}function vg(e,t){return e.priority>t.priority||!(e.priority