1、二维导出优化
2、项目详情返回项目来源
This commit is contained in:
@@ -1,2 +1,3 @@
|
|||||||
ALTER TABLE simulation_demand ADD demandSource varchar(12) NULL COMMENT '需求来源:自建、同步';
|
ALTER TABLE simulation_demand ADD demandSource varchar(12) NULL COMMENT '需求来源:自建、同步';
|
||||||
ALTER TABLE simulation_demand ADD contentHash varchar(64) NULL COMMENT 'hash值,同步待办时判断是否需要更新';
|
ALTER TABLE simulation_demand ADD contentHash varchar(64) NULL COMMENT 'hash值,同步待办时判断是否需要更新';
|
||||||
|
ALTER TABLE simulation_demand MODIFY COLUMN demandSource varchar(16) DEFAULT 'DM';
|
||||||
@@ -1,2 +1,3 @@
|
|||||||
ALTER TABLE simulation_node ADD projectId INT NULL COMMENT '利元亨项目id';
|
ALTER TABLE simulation_node ADD projectId INT NULL COMMENT '利元亨项目id';
|
||||||
ALTER TABLE simulation_node ADD projectSource varchar(16) NULL COMMENT '项目来源:自建、同步';
|
ALTER TABLE simulation_node ADD projectSource varchar(16) NULL COMMENT '项目来源:自建、同步';
|
||||||
|
ALTER TABLE simulation_node MODIFY COLUMN projectSource varchar(16) DEFAULT 'DM';
|
||||||
@@ -687,6 +687,16 @@ public class ExcelUtil {
|
|||||||
for (int i = 0; i < 8; i++) {
|
for (int i = 0; i < 8; i++) {
|
||||||
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, i, i));
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, i, i));
|
||||||
}
|
}
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 21, 21));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 22, 22));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 23, 23));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 29, 29));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 30, 30));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 31, 31));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 32, 32));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 33, 33));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 34, 34));
|
||||||
|
sheet.addMergedRegion(new CellRangeAddress(startIndex, endIndex, 35, 35));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -99,4 +99,8 @@ public class SpdmNodeDetailVo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String currentPhase;
|
private String currentPhase;
|
||||||
|
|
||||||
|
private Integer projectId;
|
||||||
|
|
||||||
|
private String projectSource;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user