fourPayProject/posp-boss/sql/增量DB.sql
2025-03-31 10:14:11 +08:00

565 lines
72 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- -- 2023-12-04 报件记录表增加扩展字段
-- ALTER TABLE `pos_report`
-- ADD COLUMN `business_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '业务开通状态 0开通 1没开通' AFTER `check_desc`,
-- ADD COLUMN `business_desc` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '业务开通状态信息' AFTER `business_status`,
-- ADD COLUMN `product_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产品开通状态 0开通 1没开通' AFTER `business_desc`,
-- ADD COLUMN `product_desc` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '产品开通状态信息' AFTER `product_status`,
-- ADD COLUMN `settle_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '结算规划状态 0开通 1没开通' AFTER `product_desc`,
-- ADD COLUMN `settle_desc` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '结算规划信息' AFTER `settle_status`,
-- ALTER TABLE `pos_report`
-- MODIFY COLUMN `business_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '10E' COMMENT '业务开通状态10A成功10B失败10C审核中10D待提交10E暂不可提交' AFTER `check_desc`,
-- MODIFY COLUMN `product_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '10E' COMMENT '产品开通状态 10A成功10B失败10C审核中10D待提交10E暂不可提交' AFTER `business_desc`,
-- MODIFY COLUMN `settle_status` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT '10E' COMMENT '结算规划状态 10A成功10B失败10C审核中10D待提交10E暂不可提交' AFTER `product_desc`,
--
-- CREATE TABLE `pos_filings` (
-- `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
-- `merchant_id` bigint(20) NULL DEFAULT NULL COMMENT '商户id',
-- `chl_type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '报备的渠道',
-- `filings_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '高速的备案id',
-- `filings_status` varchar(5) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '备案状态',
-- `filing_msg` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '高速返回的msg',
-- `info` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '备案信息',
-- `create_date` datetime NULL DEFAULT NULL COMMENT '创建时间',
-- `create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
-- `update_date` datetime NULL DEFAULT NULL COMMENT '修改时间',
-- `update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
-- `del_flag` tinyint(4) NULL DEFAULT NULL COMMENT '删除标记',
-- `remarks` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
-- PRIMARY KEY (`id`) USING BTREE
-- ) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
--
-- SET FOREIGN_KEY_CHECKS = 1;
--
--
--
--
--
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ('文件压缩密码', 'uploadZipPwd', '123456', '2023-12-14 19:31:32', 2, '2023-12-14 19:31:32', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ( '银联支付宝-子渠道商商户号', 'zfbChildChannelId', '1553634535915667464', '2023-12-14 11:00:26', 2, '2023-12-14 11:00:26', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` (`config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ( '银联微信-子渠道商商户号', 'wxChildChannelId', '1543576014565916675', '2023-12-14 10:59:55', 2, '2023-12-14 10:59:55', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ( '银联支付宝-渠道商商户号', 'zfbChannelId', '2088141198300959', '2023-12-14 10:54:25', 2, '2023-12-14 10:58:15', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ( '银联微信-渠道商商户号', 'wxChannelId', '424477566', '2023-12-14 10:53:41', 2, '2023-12-14 10:57:00', 2, NULL, 0, NULL);
-- INSERT INTO `sys_menu` (`id`, `name`, `parent_id`, `level`, `parent_ids`, `sort`, `href`, `target`, `icon`, `bg_color`, `is_show`, `permission`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (303, '商户报备记录', 204, 2, '204,247,', 1, '/posFilings/list', NULL, '', NULL, 1, '', 2, '2019-02-26 16:01:03', 2, '2019-02-26 16:42:13', NULL, 0);
-- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 303);
-- 用户登录表增加openid
-- ALTER TABLE `pos_user_all`
-- ADD COLUMN `open_id` varchar(255) NULL COMMENT '微信小程序身份主键' AFTER `app_id`;
--
-- ALTER TABLE `pos_report`
-- ADD COLUMN `tc_status` varchar(20) NULL COMMENT '商户投产状态 10A成功10B失败10C审核中10D待提交10E暂不可提交' AFTER `settle_desc`,
-- ADD COLUMN `tc_desc` text NULL COMMENT '商户投产接口信息' AFTER `tc_status`;
--
-- CREATE TABLE `package_info` (
-- `id` bigint(20) NOT NULL COMMENT '主键',
-- `package_no` varchar(50) NULL COMMENT '套餐编号',
-- `package_name` varchar(30) NULL COMMENT '套餐包名称',
-- `package_limit` decimal(10, 2) NULL COMMENT '套餐包额度',
-- `valid_start_time` datetime NULL COMMENT '有效期开始时间',
-- `valid_end_time` datetime NULL COMMENT '有效期结束时间',
-- `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
-- `create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
-- `update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
-- `update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
-- `remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
-- `del_flag` tinyint(4) NULL DEFAULT NULL COMMENT '删除标记',
-- PRIMARY KEY (`id`)
-- );
--
-- CREATE TABLE `package_mer_record` (
-- `id` bigint(20) NOT NULL COMMENT '主键',
-- `mer_id` bigint(20) NULL COMMENT '商户主键',
-- `package_id` bigint(20) NULL COMMENT '套餐包主键',
-- `package_limit` decimal(10, 2) NULL COMMENT '套餐包额度',
-- `last_limit` decimal(10, 2) NULL COMMENT '当前剩余额度',
-- `package_start_time` datetime(0) NULL DEFAULT NULL COMMENT '套餐开始时间',
-- `package_end_time` datetime(0) NULL DEFAULT NULL COMMENT '套餐结束时间',
-- `fee_type` varchar(2) NULL COMMENT '收费类型 0 先收 1 后收',
-- `status` varchar(2) NULL COMMENT '状态0停用1生效',
-- `create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
-- `create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
-- `update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
-- `update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
-- `remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
-- `del_flag` tinyint(4) NULL DEFAULT NULL COMMENT '删除标记',
-- PRIMARY KEY (`id`)
-- );
-- -- 菜单sql
-- INSERT INTO `sys_menu` (
-- `id`,
-- `name`,
-- `parent_id`,
-- `level`,
-- `parent_ids`,
-- `sort`,
-- `href`,
-- `target`,
-- `icon`,
-- `bg_color`,
-- `is_show`,
-- `permission`,
-- `create_by`,
-- `create_date`,
-- `update_by`,
-- `update_date`,
-- `remarks`,
-- `del_flag`
-- )
-- VALUES
-- (
-- 888,
-- '套餐管理',
-- NULL,
-- 1,
-- '888,',
-- 61,
-- '/packageInfo/list',
-- NULL,
-- '',
-- NULL,
-- 1,
-- '',
-- 2,
-- '2023-08-08 16:46:26',
-- 2,
-- '2023-08-08 16:46:26',
-- NULL,
-- 0
-- );
--
-- INSERT INTO `sys_menu` (
-- `name`,
-- `parent_id`,
-- `level`,
-- `parent_ids`,
-- `sort`,
-- `href`,
-- `target`,
-- `icon`,
-- `bg_color`,
-- `is_show`,
-- `permission`,
-- `create_by`,
-- `create_date`,
-- `update_by`,
-- `update_date`,
-- `remarks`,
-- `del_flag`
-- )
-- VALUES
-- (
-- '套餐设置',
-- 888,
-- 2,
-- '888,889,',
-- 1,
-- '/packageInfo/list',
-- NULL,
-- '',
-- NULL,
-- 1,
-- '',
-- 2,
-- '2019-02-26 16:01:03',
-- 2,
-- '2019-02-26 16:42:13',
-- NULL,
-- 0
-- );
-- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 888);
-- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 889);
--
-- INSERT INTO `sys_menu` (
-- `name`,
-- `parent_id`,
-- `level`,
-- `parent_ids`,
-- `sort`,
-- `href`,
-- `target`,
-- `icon`,
-- `bg_color`,
-- `is_show`,
-- `permission`,
-- `create_by`,
-- `create_date`,
-- `update_by`,
-- `update_date`,
-- `remarks`,
-- `del_flag`
-- )
-- VALUES
-- (
-- '商户配置',
-- 888,
-- 2,
-- '888,890,',
-- 1,
-- '/packageMerRecord/list',
-- NULL,
-- '',
-- NULL,
-- 1,
-- '',
-- 2,
-- '2019-02-26 16:01:03',
-- 2,
-- '2019-02-26 16:42:13',
-- NULL,
-- 0
-- );
-- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 890);
-- INSERT INTO `pos_sys_config` (`id`, `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES (56, '公众号秘钥', 'wxGzhAppSecret', 'a814ae781200661b0e08ee29a97bce1d', '2024-01-02 18:16:46', 2, '2024-01-02 18:16:46', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` (`id`, `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES (55, '微信小程序密钥', 'wxXcxAppSecret', '36a8d9fd04e59ab7c054bfe0a9e82d97', '2024-01-02 16:16:40', 2, '2024-01-02 16:52:18', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` (`id`, `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES (54, '微信小程序appid', 'wxXcxAppId', 'wxb68b20bd47bd82f9', '2024-01-02 16:07:59', 2, '2024-01-02 16:52:09', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` (`id`, `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES (53, '微信公众号收款模版id', 'wxMessageTemplateId', 'dnUAQBMc7uoNL8cjwy2uyY30pBezWHrVc2s8eaOPL7s', '2024-01-02 11:32:00', 2, '2024-01-02 11:32:00', 2, NULL, 0, NULL);
-- INSERT INTO `pos_sys_config` (`id`, `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES (52, '微信公众号appid', 'wxGzhAppId', 'wx4a301966d2bff3d1', '2024-01-02 11:31:15', 2, '2024-01-02 11:31:15', 2, NULL, 0, NULL);
--
-- ALTER TABLE `package_mer_record`
-- ADD COLUMN `auto_stop` varchar(2) NULL COMMENT '0无1有' AFTER `status`;
--
-- ALTER TABLE `package_mer_record`
-- DROP COLUMN `fee_type`,
-- MODIFY COLUMN `status` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL COMMENT '状态0停用1生效' AFTER `package_end_time`;
--
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ('套餐包阈值', 'packageLimit', '500', '2024-01-08 15:50:57', 2, '2024-01-08 15:50:57', 2, NULL, 0, NULL);
-- 员工工号
-- ALTER TABLE `pos_agent`
-- ADD COLUMN `employee_number` varchar(50) NULL COMMENT '员工工号' AFTER `union_pay_rate`;
-- UPDATE sys_dict
-- set label ='次工作日自动结算(T+1)'
-- where type = 'pos_merchant_settlement_cycle' and value ='T1'
--
--
-- UPDATE sys_dict
-- set label ='次自然日自动结算(D+1)'
-- where type = 'pos_merchant_settlement_cycle' and value ='D1'
--
--
--
-- UPDATE sys_dict
-- set del_flag ='1'
-- where type = 'pos_order_online_trade_type' and value not in ('ALI_QRCODE_PAY','WX_QRCODE_PAY','YSF_QRCODE_PAY')
--
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1129, '11', '身份证', 'pos_report_certType', '商户进件证件字典', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1130, '12', '军人或武警证件', 'pos_report_certType', '商户进件证件字典', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1131, '13', '港澳通行证', 'pos_report_certType', '商户进件证件字典', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1132, '14', '护照', 'pos_report_certType', '商户进件证件字典', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1133, '15', '外国人永久居留证', 'pos_report_certType', '商户进件证件字典', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1152, 'CHN', '中国', 'pos_nation', NULL, 1, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1153, 'MYS', '马来西亚', 'pos_nation', NULL, 2, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1154, 'PHL', '菲律宾', 'pos_nation', NULL, 3, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1155, 'THA', '泰国', 'pos_nation', NULL, 4, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1156, 'JPN', '日本', 'pos_nation', NULL, 5, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1157, 'VNM', '越南', 'pos_nation', NULL, 6, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1158, 'HKG', '香港', 'pos_nation', NULL, 7, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1159, 'KHM', '柬埔寨', 'pos_nation', NULL, 8, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1160, 'BGD', '孟加拉国', 'pos_nation', NULL, 9, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1161, 'IND', '印度', 'pos_nation', NULL, 10, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1162, 'AFG', '阿富汗', 'pos_nation', NULL, 11, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1163, 'MMR', '缅甸', 'pos_nation', NULL, 12, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1164, 'LBN', '黎巴嫩', 'pos_nation', NULL, 13, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1165, 'SYR', '叙利亚', 'pos_nation', NULL, 14, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1166, 'KWT', '科威特', 'pos_nation', NULL, 15, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1167, 'OMN', '阿曼', 'pos_nation', NULL, 16, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1168, 'BHR', '巴林', 'pos_nation', NULL, 17, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1169, 'BTN', '不丹', 'pos_nation', NULL, 18, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1170, 'NPL', '尼泊尔', 'pos_nation', NULL, 19, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1171, 'IDN', '印度尼西亚', 'pos_nation', NULL, 20, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1172, 'SGP', '新加坡', 'pos_nation', NULL, 21, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1173, 'BRN', '文莱', 'pos_nation', NULL, 22, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1174, 'KOR', '韩国', 'pos_nation', NULL, 23, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1175, 'PRK', '朝鲜', 'pos_nation', NULL, 24, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1176, 'MAC', '澳门', 'pos_nation', NULL, 25, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1177, 'LAO', '老挝', 'pos_nation', NULL, 26, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1178, 'TWN', '台湾', 'pos_nation', NULL, 27, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1179, 'TUR', '土耳其', 'pos_nation', NULL, 28, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1180, 'PAK', '巴基斯坦', 'pos_nation', NULL, 29, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1181, 'LKA', '斯里兰卡', 'pos_nation', NULL, 30, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1182, 'MDV', '马尔代夫', 'pos_nation', NULL, 31, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1183, 'JOR', '约旦', 'pos_nation', NULL, 32, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1184, 'IRQ', '伊拉克', 'pos_nation', NULL, 33, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1185, 'SAU', '沙特阿拉伯', 'pos_nation', NULL, 34, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1186, 'ISR', '以色列', 'pos_nation', NULL, 35, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1187, 'QAT', '卡塔尔', 'pos_nation', NULL, 36, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1188, 'MNG', '蒙古', 'pos_nation', NULL, 37, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1189, 'IRN', '伊朗', 'pos_nation', NULL, 38, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1190, 'RUS', '俄罗斯', 'pos_nation', NULL, 39, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1191, 'NLD', '荷兰', 'pos_nation', NULL, 40, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1192, 'FRA', '法国', 'pos_nation', NULL, 41, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1193, 'GIB', '直布罗陀', 'pos_nation', NULL, 42, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1194, 'LUX', '卢森堡', 'pos_nation', NULL, 43, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1195, 'ISL', '冰岛', 'pos_nation', NULL, 44, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1196, 'MLT', '马耳他', 'pos_nation', NULL, 45, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1197, 'FIN', '芬兰', 'pos_nation', NULL, 46, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1198, 'HUN', '匈牙利', 'pos_nation', NULL, 47, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1199, 'YUG', '南斯拉夫', 'pos_nation', NULL, 48, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1200, 'SMR', '圣马力诺', 'pos_nation', NULL, 49, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1201, 'ROM', '罗马尼亚', 'pos_nation', NULL, 50, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1202, 'LIE', '列支敦士登', 'pos_nation', NULL, 51, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1203, 'GBR', '英国', 'pos_nation', NULL, 52, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1204, 'SWE', '瑞典', 'pos_nation', NULL, 53, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1205, 'POL', '波兰', 'pos_nation', NULL, 54, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1206, 'GRC', '希腊', 'pos_nation', NULL, 55, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1207, 'BEL', '比利时', 'pos_nation', NULL, 56, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1208, 'ESP', '西班牙', 'pos_nation', NULL, 57, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1209, 'PRT', '葡萄牙', 'pos_nation', NULL, 58, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1210, 'IRL', '爱尔兰', 'pos_nation', NULL, 59, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1211, 'ALB', '阿尔巴尼亚', 'pos_nation', NULL, 60, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1212, 'CYP', '塞浦路斯', 'pos_nation', NULL, 61, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1213, 'BGR', '保加利亚', 'pos_nation', NULL, 62, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1214, 'DEU', '德国', 'pos_nation', NULL, 63, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1215, 'ITA', '意大利', 'pos_nation', NULL, 64, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1216, 'VAT', '梵蒂冈', 'pos_nation', NULL, 65, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1217, 'CHE', '瑞士', 'pos_nation', NULL, 66, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1218, 'AUT', '奥地利', 'pos_nation', NULL, 67, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1219, 'DNK', '丹麦', 'pos_nation', NULL, 68, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1220, 'NOR', '挪威', 'pos_nation', NULL, 69, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1221, 'EGY', '埃及', 'pos_nation', NULL, 70, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1222, 'DZA', '阿尔及利亚', 'pos_nation', NULL, 71, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1223, 'LBY', '利比亚', 'pos_nation', NULL, 72, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1224, 'SEN', '塞内加尔', 'pos_nation', NULL, 73, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1225, 'MLI', '马里', 'pos_nation', NULL, 74, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1226, 'CIV', '科特迪瓦', 'pos_nation', NULL, 75, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1227, 'NER', '尼日尔', 'pos_nation', NULL, 76, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1228, 'BEN', '贝宁', 'pos_nation', NULL, 77, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1229, 'LBR', '利比里亚', 'pos_nation', NULL, 78, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1230, 'GHA', '加纳', 'pos_nation', NULL, 79, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1231, 'TCD', '乍得', 'pos_nation', NULL, 80, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1232, 'CMR', '喀麦隆', 'pos_nation', NULL, 81, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1233, 'STp', '圣多美', 'pos_nation', NULL, 82, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1234, 'GNQ', '赤道几内亚', 'pos_nation', NULL, 83, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1235, 'COD', '刚果', 'pos_nation', NULL, 84, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1236, 'AGO', '安哥拉', 'pos_nation', NULL, 85, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1237, '', '阿森松', 'pos_nation', NULL, 86, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1238, 'SDN', '苏丹', 'pos_nation', NULL, 87, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1239, 'ETH', '埃塞俄比亚', 'pos_nation', NULL, 88, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1240, 'DJI', '吉布提', 'pos_nation', NULL, 89, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1241, 'TZA', '坦桑尼亚', 'pos_nation', NULL, 90, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1242, 'BDI', '布隆迪', 'pos_nation', NULL, 91, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1243, 'ZMB', '赞比亚', 'pos_nation', NULL, 92, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1244, '', '留尼旺岛', 'pos_nation', NULL, 93, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1245, 'NAM', '纳米比亚', 'pos_nation', NULL, 94, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1246, 'LSO', '莱索托', 'pos_nation', NULL, 95, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1247, 'SWZ', '斯威士兰', 'pos_nation', NULL, 96, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1248, 'ZAF', '南非', 'pos_nation', NULL, 97, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1249, 'ABW', '阿鲁巴岛', 'pos_nation', NULL, 98, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1250, 'MAR', '摩洛哥', 'pos_nation', NULL, 99, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1251, 'TUN', '突尼斯', 'pos_nation', NULL, 100, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1252, 'GMB', '冈比亚', 'pos_nation', NULL, 101, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1253, 'MRT', '毛里塔尼亚', 'pos_nation', NULL, 102, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1254, 'GIN', '几内亚', 'pos_nation', NULL, 103, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1255, '', '布基拉法索', 'pos_nation', NULL, 104, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1256, 'TGO', '多哥', 'pos_nation', NULL, 105, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1257, 'MUS', '毛里求斯', 'pos_nation', NULL, 106, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1258, 'SLE', '塞拉利昂', 'pos_nation', NULL, 107, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1259, 'NGA', '尼日利亚', 'pos_nation', NULL, 108, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1260, 'CAF', '中非', 'pos_nation', NULL, 109, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1261, 'CPV', '佛得角', 'pos_nation', NULL, 110, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1262, 'STp', '普林西比', 'pos_nation', NULL, 111, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1263, 'GAB', '加蓬', 'pos_nation', NULL, 112, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1264, '', '扎伊尔', 'pos_nation', NULL, 113, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1265, 'GNB', '几内亚比绍', 'pos_nation', NULL, 114, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1266, 'SYC', '塞舌尔', 'pos_nation', NULL, 115, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1267, 'RWA', '卢旺达', 'pos_nation', NULL, 116, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1268, 'SOM', '索马里', 'pos_nation', NULL, 117, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1269, 'KEN', '肯尼亚', 'pos_nation', NULL, 118, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1270, 'UGA', '乌干达', 'pos_nation', NULL, 119, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1271, 'MOZ', '莫桑比克', 'pos_nation', NULL, 120, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1272, 'MDG', '马达加斯加', 'pos_nation', NULL, 121, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1273, 'ZWE', '津巴布韦', 'pos_nation', NULL, 122, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1274, 'MWI', '马拉维', 'pos_nation', NULL, 123, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1275, 'BWA', '博茨瓦纳', 'pos_nation', NULL, 124, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1276, 'COM', '科摩罗', 'pos_nation', NULL, 125, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1277, 'SHN', '圣赫勒拿', 'pos_nation', NULL, 126, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1278, 'FRO', '法罗群岛', 'pos_nation', NULL, 127, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1279, 'USA', '美国', 'pos_nation', NULL, 128, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1280, 'MKD', '中途岛', 'pos_nation', NULL, 129, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1281, '', '威克岛', 'pos_nation', NULL, 130, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1282, 'VGB', '维尔京群岛', 'pos_nation', NULL, 131, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1283, 'PRI', '波多黎各', 'pos_nation', NULL, 132, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1284, 'BHS', '巴哈马', 'pos_nation', NULL, 133, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1285, '', '阿拉斯加', 'pos_nation', NULL, 134, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1286, 'CAN', '加拿大', 'pos_nation', NULL, 135, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1287, '', '夏威夷', 'pos_nation', NULL, 136, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1288, 'AIA', '安圭拉岛', 'pos_nation', NULL, 137, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1289, 'LCA', '圣卢西亚', 'pos_nation', NULL, 138, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1290, 'JAM', '牙买加', 'pos_nation', NULL, 139, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1291, 'BRB', '巴巴多斯', 'pos_nation', NULL, 140, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1292, '', '格陵兰岛', 'pos_nation', NULL, 141, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1293, 'FLK', '福克兰群岛', 'pos_nation', NULL, 142, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1294, 'GTM', '危地马拉', 'pos_nation', NULL, 143, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1295, 'HND', '洪都拉斯', 'pos_nation', NULL, 144, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1296, 'CR', '哥斯达黎加', 'pos_nation', NULL, 145, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1297, 'HTI', '海地', 'pos_nation', NULL, 146, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1298, 'MEX', '墨西哥', 'pos_nation', NULL, 147, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1299, 'ARG', '阿根廷', 'pos_nation', NULL, 148, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1300, 'CHL', '智利', 'pos_nation', NULL, 149, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1301, 'VEN', '委内瑞拉', 'pos_nation', NULL, 150, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1302, 'GUY', '圭亚那', 'pos_nation', NULL, 151, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1303, 'GUF', '法属圭亚那', 'pos_nation', NULL, 152, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1304, 'MTQ', '马提尼克', 'pos_nation', NULL, 153, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1305, 'URY', '乌拉圭', 'pos_nation', NULL, 154, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1306, 'BLZ', '伯利兹', 'pos_nation', NULL, 155, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1307, 'SLV', '萨尔瓦多', 'pos_nation', NULL, 156, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1308, 'NIC', '尼加拉瓜', 'pos_nation', NULL, 157, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1309, 'PAN', '巴拿马', 'pos_nation', NULL, 158, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1310, 'PER', '秘鲁', 'pos_nation', NULL, 159, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1311, 'CUB', '古巴', 'pos_nation', NULL, 160, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1312, 'BRA', '巴西', 'pos_nation', NULL, 161, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1313, 'COL', '哥伦比亚', 'pos_nation', NULL, 162, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1314, 'BOL', '玻利维亚', 'pos_nation', NULL, 163, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1315, 'ECU', '厄瓜多尔', 'pos_nation', NULL, 164, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1316, 'PRY', '巴拉圭', 'pos_nation', NULL, 165, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1317, 'SUR', '苏里南', 'pos_nation', NULL, 166, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1318, 'AUS', '澳大利亚', 'pos_nation', NULL, 167, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1319, 'GUM', '关岛', 'pos_nation', NULL, 168, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1320, 'NFK', '诺福克岛', 'pos_nation', NULL, 169, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1321, 'NRU', '瑙鲁', 'pos_nation', NULL, 170, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1322, 'SLB', '所罗门群岛', 'pos_nation', NULL, 171, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1323, 'FJI', '斐济', 'pos_nation', NULL, 172, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1324, 'NIU', '纽埃岛', 'pos_nation', NULL, 173, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1325, 'WSM', '西萨摩亚', 'pos_nation', NULL, 174, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1326, 'TUV', '图瓦卢', 'pos_nation', NULL, 175, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1327, 'NZL', '新西兰', 'pos_nation', NULL, 176, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1328, 'CCK', '科科斯岛', 'pos_nation', NULL, 177, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1329, 'CSR', '圣诞岛', 'pos_nation', NULL, 178, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1330, 'TON', '汤加', 'pos_nation', NULL, 179, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1331, 'VUT', '瓦努阿图', 'pos_nation', NULL, 180, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1332, '', '科克群岛', 'pos_nation', NULL, 181, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1333, 'ASA', '东萨摩亚', 'pos_nation', NULL, 182, '0', NULL, NULL, NULL, NULL, NULL, '0');
-- INSERT INTO `sys_dict` (`id`, `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag`) VALUES (1334, 'KIR', '基里巴斯', 'pos_nation', NULL, 183, '0', NULL, NULL, NULL, NULL, NULL, '0');
--
-- ALTER TABLE `pos_agent`
-- ADD COLUMN `sm2_pass` text NULL COMMENT '高速sm2 签名私钥' AFTER `employee_number`,
-- ADD COLUMN `mer_sm2_key_text` text NULL COMMENT '高速签名key' AFTER `sm2_pass`,
-- ADD COLUMN `mer_sm2_dec_key_file` text NULL COMMENT '高速商户解密私钥' AFTER `mer_sm2_key_text`,
-- ADD COLUMN `gm_trust_cert_base64` text NULL COMMENT '国密信任链证书Base64' AFTER `mer_sm2_dec_key_file`;
--
--
-- INSERT INTO `sys_menu` (
-- `name`,
-- `parent_id`,
-- `level`,
-- `parent_ids`,
-- `sort`,
-- `href`,
-- `target`,
-- `icon`,
-- `bg_color`,
-- `is_show`,
-- `permission`,
-- `create_by`,
-- `create_date`,
-- `update_by`,
-- `update_date`,
-- `remarks`,
-- `del_flag`
-- )
-- VALUES
-- (
-- '定时任务',
-- 888,
-- 2,
-- '888,891,',
-- 1,
-- '/packageTask/list',
-- NULL,
-- '',
-- NULL,
-- 1,
-- '',
-- 2,
-- '2019-02-26 16:01:03',
-- 2,
-- '2019-02-26 16:42:13',
-- NULL,
-- 0
-- );
-- INSERT INTO `sys_role_menu` (`role_id`, `menu_id`) VALUES (2, 891);
-- ALTER TABLE `pos_order_payment`
-- ADD COLUMN `mer_package_id` bigint NULL COMMENT '商户套餐包主键' AFTER `inform_url`;
-- DELETE from sys_user_role where role_id = '2' and user_id !='2'
--
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ('数据回传渠道商编号', 'hcChannelBusiness', 'C2023000009', '2024-01-23 15:55:15', 2, '2024-01-23 15:55:15', 2, NULL, 0, NULL);
--
-- INSERT INTO `sys_dict` ( `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag` )
-- VALUES
-- ( '0', '男', 'gender', '性别', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0' );
-- INSERT INTO `sys_dict` ( `value`, `label`, `type`, `description`, `sort`, `parent_id`, `create_by`, `create_date`, `update_by`, `update_date`, `remarks`, `del_flag` )
-- VALUES
-- ( '1', '女', 'gender', '性别', NULL, '0', NULL, NULL, NULL, NULL, NULL, '0' );
--
--
-- 1.角色字典pos_guide_user_type把业务员del_flag改成1
-- 2.交易状态字典“pos_order_payment_status”保留“待支付”“交易成功”“交易退款”“交易失败”其他del_flag改成1
-- INSERT INTO `pos_sys_config` (`config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id` )
-- VALUES
-- ('云闪付支付限额', 'ysfLimit', '400', '2024-03-11 16:28:27', 2, '2024-03-11 16:28:27', 2, NULL, 0, NULL );
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id` )
-- VALUES
-- ('支付宝支付限额', 'aliLimit', '600', '2024-03-11 16:27:59', 2, '2024-03-11 16:27:59', 2, NULL, 0, NULL );
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id` )
-- VALUES
-- ('微信支付限额', 'wxLimit', '500', '2024-03-11 16:27:38', 2, '2024-03-11 16:27:38', 2, NULL, 0, NULL );
-- INSERT INTO `pos_sys_config` ( `config_name`, `config_code`, `config_value`, `create_date`, `create_by`, `update_date`, `update_by`, `remarks`, `del_flag`, `app_id`) VALUES ( '商家收款码开关', 'skmOpenFlag', '1', '2024-03-22 15:35:23', 2, '2024-03-22 15:35:23', 2, NULL, 0, NULL);
-- ALTER TABLE `pos_merchant_extend`
-- ADD COLUMN `wx_rate_record` decimal(16, 3) NULL AFTER `rate_status`,
-- ADD COLUMN `ali_rate_record` decimal(16, 3) NULL AFTER `wx_rate_record`,
-- ADD COLUMN `union_rate_record` decimal(16, 3) NULL AFTER `ali_rate_record`;
CREATE TABLE `fee_plan_record` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`mer_id` bigint(20) NULL DEFAULT NULL COMMENT '商户主键',
`wx_rate` decimal(10, 2) NULL COMMENT '应该配置的费率',
`ali_rate` decimal(10, 2) NULL COMMENT '应该配置的费率',
`union_pay_rate` decimal(10, 2) NULL COMMENT '应该配置的费率',
`set_time` datetime NULL COMMENT '需要调用的时间',
`status` varchar(2) NULL DEFAULT 0 COMMENT '0未执行1已执行',
`return_info` text NULL COMMENT '返回的信息',
`create_date` datetime(0) NULL DEFAULT NULL COMMENT '创建时间',
`create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_date` datetime(0) NULL DEFAULT NULL COMMENT '修改时间',
`update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
`remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` tinyint(4) NULL DEFAULT NULL COMMENT '删除标记',
PRIMARY KEY (`id`)
);
CREATE TABLE `face_record` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`mer_id` int(11) NULL DEFAULT NULL COMMENT '商户主键',
`partner_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '商户系统唯一',
`request_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '商户的订单号',
`cert_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '身份证号',
`cus_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '姓名',
`redirect_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '客户传的回调地址',
`order_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '订单号',
`result` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '认证结果',
`create_date` datetime NULL DEFAULT NULL COMMENT '创建时间',
`create_by` bigint(20) NULL DEFAULT NULL COMMENT '创建人',
`update_date` datetime NULL DEFAULT NULL COMMENT '修改时间',
`update_by` bigint(20) NULL DEFAULT NULL COMMENT '修改人',
`remarks` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`del_flag` tinyint(4) NULL DEFAULT NULL COMMENT '删除标记',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 42 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
ALTER TABLE `pos_merchant_extend`
ADD COLUMN `shop_manage_photo` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '店铺经理合照' AFTER `union_rate_record`,
ADD COLUMN `shop_manage_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '店铺经理合照url' AFTER `shop_manage_photo`;
ALTER TABLE `pos_agent`
ADD COLUMN `agent_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT 'common' COMMENT '代理商类型默认common日常银行为rizhao' AFTER `gm_trust_cert_base64`;