|
|
|
@ -2,7 +2,8 @@
|
|
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_info` (
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_info`
|
|
|
|
|
(
|
|
|
|
|
`deviceCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设备编码',
|
|
|
|
|
`deptCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '部门编码',
|
|
|
|
|
`status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '1.正常,2变更归属中,3.维修申请中 4.维修中 6.销毁/报废',
|
|
|
|
@ -51,12 +52,12 @@ CREATE TABLE IF NOT EXISTS `device_info` (
|
|
|
|
|
`invCode` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '存储仓库',
|
|
|
|
|
`estimatedTotalHour` int(10) unsigned zerofill DEFAULT NULL COMMENT '预计总工时',
|
|
|
|
|
`dayHour` int(10) unsigned zerofill DEFAULT NULL COMMENT '单日工时',
|
|
|
|
|
`assetValue` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '单个资产价值',
|
|
|
|
|
`ownFund` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '自有资金',
|
|
|
|
|
`financialAppropriation` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '财政拨款',
|
|
|
|
|
`educationFund` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '科教基金',
|
|
|
|
|
`otherFund` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '其他资金',
|
|
|
|
|
`nonPeerFinancialAppropriation` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '非同级财政拨款',
|
|
|
|
|
`assetValue` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '单个资产价值',
|
|
|
|
|
`ownFund` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '自有资金',
|
|
|
|
|
`financialAppropriation` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '财政拨款',
|
|
|
|
|
`educationFund` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '科教基金',
|
|
|
|
|
`otherFund` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '其他资金',
|
|
|
|
|
`nonPeerFinancialAppropriation` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '非同级财政拨款',
|
|
|
|
|
`ybbm` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '医疗器械分类编码',
|
|
|
|
|
`catalogname1` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '一级分类名称(学科,品名)',
|
|
|
|
|
`catalogname2` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '二级分类名称(用途、品目)',
|
|
|
|
@ -67,7 +68,7 @@ CREATE TABLE IF NOT EXISTS `device_info` (
|
|
|
|
|
`catalogCode3` bigint DEFAULT NULL COMMENT '三级分类名称(部位、功能、品种)',
|
|
|
|
|
`managementCategory` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '管理类别',
|
|
|
|
|
`endUser` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '使用人',
|
|
|
|
|
`estimatedResidualValue` decimal(10,2) unsigned zerofill DEFAULT NULL COMMENT '预计残值',
|
|
|
|
|
`estimatedResidualValue` decimal(10, 2) unsigned zerofill DEFAULT NULL COMMENT '预计残值',
|
|
|
|
|
`currencyType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '币种',
|
|
|
|
|
`purType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '采购类型',
|
|
|
|
|
`purchaseDate` date DEFAULT NULL COMMENT '购置日期',
|
|
|
|
@ -99,10 +100,10 @@ CREATE TABLE IF NOT EXISTS `device_info` (
|
|
|
|
|
`assetReserveType` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '资产备用类型',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更改日期',
|
|
|
|
|
PRIMARY KEY (`deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备表'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备表'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE if not exists `device_check`
|
|
|
|
|
(
|
|
|
|
@ -126,14 +127,14 @@ CREATE TABLE if not exists `device_check`
|
|
|
|
|
`createUserName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '创建人姓名',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`taskId`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='巡检任务表'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='巡检任务表'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_check_detail`
|
|
|
|
|
(
|
|
|
|
|
(
|
|
|
|
|
`taskId` bigint NOT NULL COMMENT '任务id',
|
|
|
|
|
`deviceCode` varbinary(255) NOT NULL COMMENT '设备编码',
|
|
|
|
|
`deptCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '部门编码',
|
|
|
|
@ -163,11 +164,11 @@ CREATE TABLE IF NOT EXISTS `device_check_detail`
|
|
|
|
|
`suggestion` varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '巡检建议',
|
|
|
|
|
`applyId` bigint DEFAULT NULL COMMENT '报修单id',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更改时间',
|
|
|
|
|
PRIMARY KEY (`taskId`,`deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='巡检任务明细'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
PRIMARY KEY (`taskId`, `deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='巡检任务明细'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_check_detail_item`
|
|
|
|
|
(
|
|
|
|
@ -185,11 +186,11 @@ CREATE TABLE IF NOT EXISTS `device_check_detail_item`
|
|
|
|
|
`checkDeptCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '巡检部门',
|
|
|
|
|
`checkDeptName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '巡检部门名称',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL,
|
|
|
|
|
PRIMARY KEY (`taskId`,`deviceCode`,`itemCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备巡检项目'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
PRIMARY KEY (`taskId`, `deviceCode`, `itemCode`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备巡检项目'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_repair`
|
|
|
|
|
(
|
|
|
|
@ -234,10 +235,10 @@ CREATE TABLE IF NOT EXISTS `device_repair`
|
|
|
|
|
`repairDeptCode` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '维修部门',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备维修单'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备维修单'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_repair_apply`
|
|
|
|
|
(
|
|
|
|
@ -260,10 +261,10 @@ CREATE TABLE IF NOT EXISTS `device_repair_apply`
|
|
|
|
|
`finishTime` datetime DEFAULT NULL COMMENT '完成时间',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备报修单'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备报修单'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_repair_apply_detail`
|
|
|
|
@ -299,11 +300,11 @@ CREATE TABLE IF NOT EXISTS `device_repair_apply_detail`
|
|
|
|
|
`confirmDeptName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '确认部门名称',
|
|
|
|
|
`finishTime` datetime DEFAULT NULL COMMENT '完成时间',
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
PRIMARY KEY (`applyId`,`deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备报修单明细'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
PRIMARY KEY (`applyId`, `deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备报修单明细'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_plan`
|
|
|
|
|
(
|
|
|
|
@ -320,22 +321,22 @@ CREATE TABLE IF NOT EXISTS `device_plan`
|
|
|
|
|
`createTime` datetime NOT NULL COMMENT '创建时间',
|
|
|
|
|
`status` tinyint DEFAULT NULL COMMENT '设备巡检计划状态 :1:草稿;2.已提交',
|
|
|
|
|
PRIMARY KEY (`planId`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备巡检计划'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备巡检计划'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_plan_detail`
|
|
|
|
|
(
|
|
|
|
|
`planId` bigint NOT NULL COMMENT '计划id',
|
|
|
|
|
`deviceCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '设备编号',
|
|
|
|
|
`productId` bigint NOT NULL COMMENT '产品id',
|
|
|
|
|
PRIMARY KEY (`planId`,`deviceCode`) USING BTREE,
|
|
|
|
|
UNIQUE KEY `uk_planId_productId` (`planId`,`deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='巡检计划明细'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
PRIMARY KEY (`planId`, `deviceCode`) USING BTREE,
|
|
|
|
|
UNIQUE KEY `uk_planId_productId` (`planId`, `deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='巡检计划明细'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_plan_detail_item`
|
|
|
|
|
(
|
|
|
|
@ -345,12 +346,12 @@ CREATE TABLE IF NOT EXISTS `device_plan_detail_item`
|
|
|
|
|
`deviceCode` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT '',
|
|
|
|
|
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '项目名称',
|
|
|
|
|
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '项目内容',
|
|
|
|
|
PRIMARY KEY (`planId`,`productId`,`itemCode`) USING BTREE,
|
|
|
|
|
UNIQUE KEY `uk_planId_deviceCode_itemCode` (`planId`,`itemCode`,`deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='巡检设备的项目'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
PRIMARY KEY (`planId`, `productId`, `itemCode`) USING BTREE,
|
|
|
|
|
UNIQUE KEY `uk_planId_deviceCode_itemCode` (`planId`, `itemCode`, `deviceCode`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='巡检设备的项目'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_check_item_dict`
|
|
|
|
|
(
|
|
|
|
@ -361,10 +362,10 @@ CREATE TABLE IF NOT EXISTS `device_check_item_dict`
|
|
|
|
|
`createUserName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '创建人名称',
|
|
|
|
|
`createTime` datetime NOT NULL COMMENT '创建时间',
|
|
|
|
|
PRIMARY KEY (`code`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='巡检项目字典'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='巡检项目字典'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_change_log`
|
|
|
|
|
(
|
|
|
|
@ -385,12 +386,13 @@ CREATE TABLE IF NOT EXISTS `device_change_log`
|
|
|
|
|
`createUser` bigint NOT NULL COMMENT '操作人id',
|
|
|
|
|
`createTime` datetime NOT NULL COMMENT '操作时间',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备变更日志表'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备变更日志表'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_change_order` (
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `device_change_order`
|
|
|
|
|
(
|
|
|
|
|
`orderId` bigint NOT NULL COMMENT '编码',
|
|
|
|
|
`type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT 'add:新增入库,change:变更归属',
|
|
|
|
|
`status` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL COMMENT '1.待目标部门接收 ,2.完成(目标确认接收) ,3.目标部门拒收,4.取消',
|
|
|
|
@ -405,31 +407,30 @@ CREATE TABLE IF NOT EXISTS `device_change_order` (
|
|
|
|
|
`createUser` bigint DEFAULT NULL COMMENT '创建人id',
|
|
|
|
|
`createTime` datetime NOT NULL COMMENT '创建时间',
|
|
|
|
|
PRIMARY KEY (`orderId`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='设备变更单'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='设备变更单'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('sync_data_set', 'deviceInfo',
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''设备管理数据''',
|
|
|
|
|
1);
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''设备管理数据''',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('sync_data_set', 'deviceCheck',
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''巡检管理数据''',
|
|
|
|
|
1);
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''巡检管理数据''',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('sync_data_set', 'deviceRepairApply',
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''报修单数据''',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''报修单数据''',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('device_repair', 'repairDescription',
|
|
|
|
|
' varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT''维修内容''',
|
|
|
|
|
1);
|
|
|
|
|
' varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT''维修内容''',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `thr_manufacturer`
|
|
|
|
@ -449,14 +450,12 @@ CREATE TABLE IF NOT EXISTS `thr_manufacturer`
|
|
|
|
|
`updateTime` datetime DEFAULT NULL COMMENT '更新时间',
|
|
|
|
|
`remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT '' COMMENT '备注',
|
|
|
|
|
PRIMARY KEY (`id`) USING BTREE,
|
|
|
|
|
UNIQUE KEY `unique` (`unitId`,`thirdSysFk`) USING BTREE
|
|
|
|
|
) ENGINE=InnoDB
|
|
|
|
|
AUTO_INCREMENT=1001
|
|
|
|
|
DEFAULT CHARSET=utf8mb4
|
|
|
|
|
COLLATE=utf8mb4_0900_ai_ci COMMENT='第三方往来单位类型'
|
|
|
|
|
ROW_FORMAT=Dynamic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
UNIQUE KEY `unique` (`unitId`, `thirdSysFk`) USING BTREE
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
AUTO_INCREMENT = 1001
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='第三方往来单位类型'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -472,8 +471,8 @@ CALL Pro_Temp_ColumnWork('device_plan_detail_item', 'type',
|
|
|
|
|
1);
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('sync_data_set', 'produceBusiness',
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''生产企业信息''',
|
|
|
|
|
1);
|
|
|
|
|
' tinyint NULL DEFAULT NULL COMMENT ''生产企业信息''',
|
|
|
|
|
1);
|
|
|
|
|
CALL Pro_Temp_ColumnWork('device_repair_apply_detail', 'livePath',
|
|
|
|
|
'varchar(1024) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT''维修现场照片''',
|
|
|
|
|
1);
|
|
|
|
@ -590,7 +589,8 @@ CREATE TABLE IF NOT EXISTS `device_upkeep_detail_item`
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT = '设备保养项目'
|
|
|
|
|
ROW_FORMAT = Dynamic;
|
|
|
|
|
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `thr_medical_product_category` (
|
|
|
|
|
CREATE TABLE IF NOT EXISTS `thr_medical_product_category`
|
|
|
|
|
(
|
|
|
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
|
|
|
`materialId` int DEFAULT NULL COMMENT '物资分类编码',
|
|
|
|
|
`materialName` varchar(255) DEFAULT NULL COMMENT '物资分类的名称',
|
|
|
|
@ -601,7 +601,10 @@ CREATE TABLE IF NOT EXISTS `thr_medical_product_category` (
|
|
|
|
|
`managementType` int DEFAULT NULL COMMENT '管理类别 ',
|
|
|
|
|
`materialCode` varchar(255) DEFAULT NULL COMMENT '标识',
|
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=160 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='医疗产品分类标识';
|
|
|
|
|
) ENGINE = InnoDB
|
|
|
|
|
AUTO_INCREMENT = 160
|
|
|
|
|
DEFAULT CHARSET = utf8mb4
|
|
|
|
|
COLLATE = utf8mb4_0900_ai_ci COMMENT ='医疗产品分类标识';
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('basic_products', 'requireScanCode',
|
|
|
|
|
'bit(1) NOT NULL DEFAULT b''0'' COMMENT ''是否需要扫码 1是;0否''',
|
|
|
|
@ -668,23 +671,109 @@ INSERT ignore INTO auth_menu(`menu_id`, `menu_name`, `parent_id`, `order_num`, `
|
|
|
|
|
VALUES (2013, '新增入院产品', 1819, 3, 'supplier/products/supProductsAddDi', 'supplier/products/supProductsAddDi',
|
|
|
|
|
NULL, 1, 0, 'C', '0', '0', NULL, NULL, '超级用户', '2023-02-17 10:04:07', NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
UPDATE sys_custom_config SET `businessType` = 'supProductsAddDi', `remark` = '新增入院产品', `type` = '1', `handleChangeFuc` = NULL WHERE `id` = 22;
|
|
|
|
|
INSERT ignore INTO sys_custom_config(`id`, `businessType`, `remark`, `type`, `handleChangeFuc`) VALUES (84, 'supProductsOptinDi', '选入入院产品', '1', NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2105, 84, '2', 1, 'code', 'DI产品标识', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2106, 84, '2', 1, 'name', '物资名称', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2107, 84, '2', 1, 'spec', '规格型号', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2108, 84, '2', 1, 'registerNo', '注册证编号', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2109, 84, '2', 1, 'checkStatus', '审核状态', 'select', NULL, NULL, '{\"1\":\"未审核\",\"2\":\"已审核\",\"3\":\"未通过\",\"\":\"全部\"}', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2110, 84, '1', 1, 'index', '序号', 'id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2111, 84, '1', 1, 'code', '物资产品标识', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2112, 84, '1', 1, 'name', '物资名称', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2113, 84, '1', 1, 'spec', '规格型号', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2114, 84, '1', 1, 'ylqxzcrbarmc', '医疗器械注册人', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2115, 84, '1', 1, 'registerNo', '注册证编号', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2116, 84, '1', 1, 'status', '审核状态', 'laber', '', NULL, '{\"1\":\"未审核\",\"2\":\"已审核\",\"3\":\"未通过\"}', NULL, 1, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2117, 84, '1', 1, 'oper', '操作', 'button', '', NULL, '', 120, NULL, '[{\"type\":\"text\",\"size\":\"small\",\"style\":\"\",\"name\":\"详情\",\"clickFuc\":\"detail\",\"disabledFuc\":\"\",\"hasPermi\":\"\"},{\"type\":\"text\",\"size\":\"small\",\"style\":\"\",\"name\":\"删除\",\"clickFuc\":\"deleteProduct\",\"disabledFuc\":\"row.status == 2\",\"hasPermi\":\"\"}]', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
UPDATE sys_custom_config
|
|
|
|
|
SET `businessType` = 'supProductsAddDi',
|
|
|
|
|
`remark` = '新增入院产品',
|
|
|
|
|
`type` = '1',
|
|
|
|
|
`handleChangeFuc` = NULL
|
|
|
|
|
WHERE `id` = 22;
|
|
|
|
|
INSERT ignore INTO sys_custom_config(`id`, `businessType`, `remark`, `type`, `handleChangeFuc`)
|
|
|
|
|
VALUES (84, 'supProductsOptinDi', '选入入院产品', '1', NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2105, 84, '2', 1, 'code', 'DI产品标识', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2106, 84, '2', 1, 'name', '物资名称', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2107, 84, '2', 1, 'spec', '规格型号', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2108, 84, '2', 1, 'registerNo', '注册证编号', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2109, 84, '2', 1, 'checkStatus', '审核状态', 'select', NULL, NULL,
|
|
|
|
|
'{\"1\":\"未审核\",\"2\":\"已审核\",\"3\":\"未通过\",\"\":\"全部\"}', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2110, 84, '1', 1, 'index', '序号', 'id', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2111, 84, '1', 1, 'code', '物资产品标识', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2112, 84, '1', 1, 'name', '物资名称', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2113, 84, '1', 1, 'spec', '规格型号', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2114, 84, '1', 1, 'ylqxzcrbarmc', '医疗器械注册人', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2115, 84, '1', 1, 'registerNo', '注册证编号', 'text', NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2116, 84, '1', 1, 'status', '审核状态', 'laber', '', NULL, '{\"1\":\"未审核\",\"2\":\"已审核\",\"3\":\"未通过\"}', NULL, 1,
|
|
|
|
|
'', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2117, 84, '1', 1, 'oper', '操作', 'button', '', NULL, '', 120, NULL,
|
|
|
|
|
'[{\"type\":\"text\",\"size\":\"small\",\"style\":\"\",\"name\":\"详情\",\"clickFuc\":\"detail\",\"disabledFuc\":\"\",\"hasPermi\":\"\"},{\"type\":\"text\",\"size\":\"small\",\"style\":\"\",\"name\":\"删除\",\"clickFuc\":\"deleteProduct\",\"disabledFuc\":\"row.status == 2\",\"hasPermi\":\"\"}]',
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('thr_products_add_di', 'sourceType',
|
|
|
|
@ -695,15 +784,67 @@ CALL Pro_Temp_ColumnWork('thr_products_add_di', 'sourceType',
|
|
|
|
|
CALL Pro_Temp_ColumnWork('thr_products_add_di', 'internalMaterialCode',
|
|
|
|
|
'varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL COMMENT ''内部物资编码''',
|
|
|
|
|
1);
|
|
|
|
|
UPDATE sys_custom_config_detail SET `configId` = 22, `type` = '1', `isShow` = 1, `columnName` = 'internalMaterialCode', `columnDesc` = '内部物资编码', `columnType` = 'text', `colorRule` = NULL, `sort` = NULL, `lableRule` = NULL, `width` = NULL, `tooltip` = 1, `buttonRule` = NULL, `number` = NULL, `lineNumber` = NULL, `clickFuc` = NULL, `size` = NULL, `style` = NULL, `disabled` = NULL, `checkRules` = NULL, `inputType` = NULL, `disabledFuc` = NULL, `expression` = NULL, `dataFuc` = NULL, `isShowXx` = NULL WHERE `id` = 275;
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail (`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2118, 32, '1', 1, 'internalMaterialCode', '内部物资编码', 'text', NULL, NULL, NULL, NULL, 1, NULL, 99, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_param_config (`id`, `parentId`, `paramName`, `paramKey`, `paramValue`, `paramStatus`, `paramType`, `paramExplain`, `updateTime`) VALUES (1070, 0, '开启内部物资编码', 'internal_material_code', '1', 1, 0, '开启内部物资编码 0:否;1:是', NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2019, 18, '2', 1, 'mainId', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2020, 22, '2', 1, 'internalMaterialCode', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`, `columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`, `buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`, `disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`, `dataFuc`, `isShowXx`) VALUES (2021, 8, '2', 1, 'mainIdLike', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
UPDATE sys_custom_config_detail
|
|
|
|
|
SET `configId` = 22,
|
|
|
|
|
`type` = '1',
|
|
|
|
|
`isShow` = 1,
|
|
|
|
|
`columnName` = 'internalMaterialCode',
|
|
|
|
|
`columnDesc` = '内部物资编码',
|
|
|
|
|
`columnType` = 'text',
|
|
|
|
|
`colorRule` = NULL,
|
|
|
|
|
`sort` = NULL,
|
|
|
|
|
`lableRule` = NULL,
|
|
|
|
|
`width` = NULL,
|
|
|
|
|
`tooltip` = 1,
|
|
|
|
|
`buttonRule` = NULL,
|
|
|
|
|
`number` = NULL,
|
|
|
|
|
`lineNumber` = NULL,
|
|
|
|
|
`clickFuc` = NULL,
|
|
|
|
|
`size` = NULL,
|
|
|
|
|
`style` = NULL,
|
|
|
|
|
`disabled` = NULL,
|
|
|
|
|
`checkRules` = NULL,
|
|
|
|
|
`inputType` = NULL,
|
|
|
|
|
`disabledFuc` = NULL,
|
|
|
|
|
`expression` = NULL,
|
|
|
|
|
`dataFuc` = NULL,
|
|
|
|
|
`isShowXx` = NULL
|
|
|
|
|
WHERE `id` = 275;
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail (`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2118, 32, '1', 1, 'internalMaterialCode', '内部物资编码', 'text', NULL, NULL, NULL, NULL, 1, NULL, 99, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_param_config (`id`, `parentId`, `paramName`, `paramKey`, `paramValue`, `paramStatus`,
|
|
|
|
|
`paramType`, `paramExplain`, `updateTime`)
|
|
|
|
|
VALUES (1070, 0, '开启内部物资编码', 'internal_material_code', '1', 1, 0, '开启内部物资编码 0:否;1:是', NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2019, 18, '2', 1, 'mainId', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2020, 22, '2', 1, 'internalMaterialCode', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
INSERT ignore INTO sys_custom_config_detail(`id`, `configId`, `type`, `isShow`, `columnName`, `columnDesc`,
|
|
|
|
|
`columnType`, `colorRule`, `sort`, `lableRule`, `width`, `tooltip`,
|
|
|
|
|
`buttonRule`, `number`, `lineNumber`, `clickFuc`, `size`, `style`,
|
|
|
|
|
`disabled`, `checkRules`, `inputType`, `disabledFuc`, `expression`,
|
|
|
|
|
`dataFuc`, `isShowXx`)
|
|
|
|
|
VALUES (2021, 8, '2', 1, 'mainIdLike', '内部物资编码', 'input', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
|
|
|
|
|
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CALL Pro_Temp_ColumnWork('basic_bussiness_type', 'codeCheck',
|
|
|
|
|
'tinyint NULL DEFAULT NULL COMMENT '' 是否开启校验扫码 :0:不校验;1:只允许录入扫码产品;2:只允许录入不扫码产品''', 1);
|
|
|
|
|
CALL Pro_Temp_ColumnWork('basic_udirel', 'isStack', 'tinyint', 1);
|
|
|
|
|