市场认证、法规清单增加字段 版本号、升版说明
This commit is contained in:
@@ -622,3 +622,13 @@ INSERT INTO `sys_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `descrip
|
||||
-- 市场认证清单 增加字段 2023-04-17 未同步生产环境
|
||||
ALTER TABLE `auth_dummy_inventory_info`
|
||||
ADD COLUMN `attestation_type` varchar(2000) NULL COMMENT '认证类型' AFTER `deliverable_template`;
|
||||
|
||||
-- 市场法规清单 增加字段 2023-04-24 未同步生产环境
|
||||
ALTER TABLE `dummy_inventory_base`
|
||||
ADD COLUMN `version_num` varchar(2000) NULL COMMENT '版本号' AFTER `dummy_inventory_info_id`,
|
||||
ADD COLUMN `upgrade_explanation` varchar(2000) NULL COMMENT '升版说明' AFTER `version_num`;
|
||||
|
||||
-- 市场认证清单 增加字段 2023-04-24 未同步生产环境
|
||||
ALTER TABLE `auth_dummy_inventory_base`
|
||||
ADD COLUMN `version_num` varchar(2000) NULL COMMENT '版本号' AFTER `state`,
|
||||
ADD COLUMN `upgrade_explanation` varchar(2000) NULL COMMENT '升版说明' AFTER `version_num`;
|
||||
+8
@@ -84,4 +84,12 @@ public class AuthDummyInventoryBaseEO implements Serializable {
|
||||
/**订阅标识*/
|
||||
@TableField(exist = false)
|
||||
private String readFlag;
|
||||
|
||||
/**版本号*/
|
||||
@ApiModelProperty(value = "版本号")
|
||||
private String versionNum;
|
||||
|
||||
/**升版说明*/
|
||||
@ApiModelProperty(value = "升版说明")
|
||||
private String upgradeExplanation;
|
||||
}
|
||||
|
||||
+7
@@ -95,4 +95,11 @@ public class DummyInventoryBaseEO implements Serializable {
|
||||
@TableField(exist = false)
|
||||
private String orderByField;
|
||||
|
||||
/**版本号*/
|
||||
@ApiModelProperty(value = "版本号")
|
||||
private String versionNum;
|
||||
|
||||
/**升版说明*/
|
||||
@ApiModelProperty(value = "升版说明")
|
||||
private String upgradeExplanation;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user