报价结构化-增加中标中选分配比例备注
This commit is contained in:
@ -385,5 +385,8 @@ public class ProjBaseInfoVO{
|
||||
@ApiModelProperty(value = "中标/中选人数量")
|
||||
private Integer bidDefiniteNumber;
|
||||
|
||||
@ApiModelProperty(value = "中标中选分配比例备注")
|
||||
private String structureNote;
|
||||
|
||||
|
||||
}
|
||||
|
@ -812,6 +812,8 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
|
||||
section.setBidNumberIsDefinite(projBaseInfoVO.getBidNumberIsDefinite());
|
||||
//中标/中选人数量
|
||||
section.setBidDefiniteNumber(projBaseInfoVO.getBidDefiniteNumber());
|
||||
//中标中选分配比例备注
|
||||
section.setStructureNote(projBaseInfoVO.getStructureNote());
|
||||
|
||||
//中标/中选分配比例
|
||||
bidRatioList.addAll(assembleBidRatio(record.getId(),section.getId(),projBaseInfoVO.getProjBidRatioInfoVOList()));
|
||||
|
@ -270,6 +270,9 @@ public class ProjectSection extends BaseEntity implements Serializable {
|
||||
@ApiModelProperty(value = "中标/中选人数量")
|
||||
private Integer bidDefiniteNumber;
|
||||
|
||||
@ApiModelProperty(value = "中标中选分配比例备注")
|
||||
private String structureNote;
|
||||
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value = "物料信息")
|
||||
private List<SectionMaterial> materialList = new ArrayList<>();
|
||||
|
Reference in New Issue
Block a user