修改条款字段长度

This commit is contained in:
梁琦涛
2024-09-29 09:47:53 +08:00
parent c0e0d41f37
commit cb0420144a
6 changed files with 21 additions and 9 deletions
+12
View File
@@ -566,3 +566,15 @@ ALTER TABLE `laws_document_split`
MODIFY COLUMN `verification_report_template_checklist` longtext NULL COMMENT '校核报告模板/checklist';
ALTER TABLE `laws_document_split`
MODIFY COLUMN `dvp_template` longtext NULL COMMENT 'DVP模板';
-- 2024-09-29 修改条款字段长度
UPDATE `laws_tag` SET `db_length` = 2000 WHERE `id` = '1803335200571265026';
UPDATE `laws_tag` SET `db_length` = 2000 WHERE `id` = '1803335200567070720';
ALTER TABLE `laws_document_split`
MODIFY COLUMN `dfema` longtext NULL COMMENT 'DEFMA';
ALTER TABLE `laws_document_split`
MODIFY COLUMN `enterprise_standard` longtext NULL COMMENT '企业标准';
@@ -157,9 +157,9 @@ public class ProcessStandardInterpretClauseSublist extends BaseEntity {
@ApiModelProperty(value = "DVP模板")
@Excel(name = "DVP模板", width = 15)
private String dvpTemplate;
/**DFEMA*/
@ApiModelProperty(value = "DFEMA")
@Excel(name = "DFEMA", width = 15)
/**DEFMA*/
@ApiModelProperty(value = "DEFMA")
@Excel(name = "DEFMA", width = 15)
private String dfema;
/**关键技术分解表*/
@ApiModelProperty(value = "关键技术分解表")
@@ -1165,7 +1165,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe
textLenghtCheck(dvpTemplate, TEXT_AREA_LENGTH, errorList, "DVP模板");
String dfema = data.getDfema();
textLenghtCheck(dfema, TEXT_DICT_LENGTH, errorList, "DFEMA");
textLenghtCheck(dfema, TEXT_AREA_LENGTH, errorList, "DEFMA");
String keyTechnologyDecompositionTable = data.getKeyTechnologyDecompositionTable();
textLenghtCheck(keyTechnologyDecompositionTable, TEXT_DICT_LENGTH, errorList, "关键技术分解表");
@@ -128,8 +128,8 @@ public class FlowImportExcel {
@Excel(name = "DVP模板", width = 15)
private String dvpTemplate;
/**DFEMA*/
@ApiModelProperty(value = "DFEMA")
@Excel(name = "DFEMA", width = 15)
@ApiModelProperty(value = "DEFMA")
@Excel(name = "DEFMA", width = 15)
private String dfema;
/**关键技术分解表*/
@ApiModelProperty(value = "关键技术分解表")
@@ -109,7 +109,7 @@ public class LawsDocumentSplit extends BaseEntity {
@ApiModelProperty("DVP模板")
private String dvpTemplate;
// DFEMA
@ApiModelProperty("DFEMA")
@ApiModelProperty("DEFMA")
private String dfema;
// 关键技术分解表
@ApiModelProperty("关键技术分解表")
@@ -161,8 +161,8 @@ public class LawsHomeAdvancedSearchClauseExcelVO implements Serializable {
/**
* DFEMA
*/
@ApiModelProperty(value = "DFEMA")
@Excel(name = "DFEMA", width = 30)
@ApiModelProperty(value = "DEFMA")
@Excel(name = "DEFMA", width = 30)
private String dfema;
/**