|
|
@@ -3,6 +3,7 @@ package com.ningdatech.pmapi.projectlib.model.vo; |
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
import com.alibaba.fastjson.annotation.JSONField; |
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
import com.ningdatech.basic.util.NdDateUtils; |
|
|
|
import com.ningdatech.pmapi.common.util.BizUtils; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.model.entity.Contract; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.model.vo.ContractVO; |
|
|
@@ -367,6 +368,18 @@ public class ProjectDetailVO { |
|
|
|
@ApiModelProperty("初审人员") |
|
|
|
private List<PreInsAcceptancePersonVO> acceptancePersons; |
|
|
|
|
|
|
|
@ApiModelProperty("版本号str") |
|
|
|
private String versionStr; |
|
|
|
|
|
|
|
public String getVersionStr() { |
|
|
|
if (Objects.nonNull(this.newest) && this.newest) { |
|
|
|
this.versionStr = "当前版本"; |
|
|
|
return this.versionStr; |
|
|
|
} |
|
|
|
this.versionStr = "v" + NdDateUtils.format(this.createOn,"yyyyMMddHHmmss"); |
|
|
|
return this.versionStr; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public String getProjectTypeName() { |
|
|
|
if (Objects.nonNull(this.projectType)) { |
|
|
|