添加字段
This commit is contained in:
+10
-3
@@ -62,12 +62,12 @@ public class OtaManageApplyEO implements Serializable {
|
||||
@ApiModelProperty(value = "所属部门")
|
||||
private java.lang.String sysOrgCode;
|
||||
|
||||
@ApiModelProperty(value = "VDR")
|
||||
@ApiModelProperty(value = "外键")
|
||||
private java.lang.String issueKey;
|
||||
|
||||
/**项目版本*/
|
||||
@Excel(name = "项目版本", width = 15)
|
||||
@ApiModelProperty(value = "项目版本")
|
||||
@ApiModelProperty(value = "项目版本-id")
|
||||
private java.lang.String projectVersion;
|
||||
|
||||
/**认证进度*/
|
||||
@@ -87,7 +87,10 @@ public class OtaManageApplyEO implements Serializable {
|
||||
|
||||
|
||||
//--------------------------------------------------------
|
||||
/**软件版本*/
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value = "VDR")
|
||||
private java.lang.String vdr;
|
||||
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value = "软件版本")
|
||||
private java.lang.String plannedBpLaunchBatch;
|
||||
@@ -168,6 +171,10 @@ public class OtaManageApplyEO implements Serializable {
|
||||
@ApiModelProperty(value = "项目版本下拉选项")
|
||||
private List<VersionVO> versionVOList;
|
||||
|
||||
@ApiModelProperty(value = "项目版本-中文")
|
||||
@TableField(exist = false)
|
||||
private java.lang.String projectVersionName;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
+1
@@ -134,6 +134,7 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
|
||||
if(!plannedBpLaunchBatchList.isEmpty()){
|
||||
List<OtaManageReceiveNsdpEO> manageReceiveNsdpEOList = otaManageApplyEOMapper.getReleaseDate(plannedBpLaunchBatchList);
|
||||
for (OtaManageApplyEO manageApplyEO : otaManageApplyEOList) {
|
||||
manageApplyEO.setVdr(manageApplyEO.getId());
|
||||
List<OtaManageReceiveNsdpEO> collect = manageReceiveNsdpEOList.stream()
|
||||
.filter(e -> StringUtils.isNotBlank(e.getReleaseName())
|
||||
&& e.getReleaseName().equals(manageApplyEO.getPlannedBpLaunchBatch())).collect(Collectors.toList());
|
||||
|
||||
Reference in New Issue
Block a user