报价结构化-修改中标中选分配比例字段

This commit is contained in:
yss
2023-12-12 10:44:07 +08:00
parent 3a9778b77d
commit 980cb771b8
3 changed files with 4 additions and 7 deletions

View File

@ -276,9 +276,6 @@ public class ProjBaseInfoVO{
@ApiModelProperty(value = "履约保证措施")
private String performanceGuaranteeMeasure;
@ApiModelProperty(value = "份额分配")
private String shareAllocation;
@ApiModelProperty(value = "份额落地")
private String shareLand;
@ -385,8 +382,8 @@ public class ProjBaseInfoVO{
@ApiModelProperty(value = "中标/中选人数量")
private Integer bidDefiniteNumber;
@ApiModelProperty(value = "中标中选分配比例备注")
private String structureNote;
@ApiModelProperty(value = "份额分配/(中标/中选分配原则)")
private String shareAllocation;
}

View File

@ -813,7 +813,7 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
//中标/中选人数量
section.setBidDefiniteNumber(projBaseInfoVO.getBidDefiniteNumber());
//中标中选分配比例备注
section.setStructureNote(projBaseInfoVO.getStructureNote());
section.setStructureNote(projBaseInfoVO.getShareAllocation());
//中标/中选分配比例
bidRatioList.addAll(assembleBidRatio(record.getId(),section.getId(),projBaseInfoVO.getProjBidRatioInfoVOList()));

View File

@ -270,7 +270,7 @@ public class ProjectSection extends BaseEntity implements Serializable {
@ApiModelProperty(value = "中标/中选人数量")
private Integer bidDefiniteNumber;
@ApiModelProperty(value = "中标中选分配比例备注")
@ApiModelProperty(value = "中标中选分配比例原则:中标/中选人数量是否明确为否时必填")
private String structureNote;
@TableField(exist = false)