询价接口修改

This commit is contained in:
dxc
2021-06-09 15:52:48 +08:00
parent 90b392bbb3
commit 5bdad6ad09
2 changed files with 6 additions and 1 deletions

View File

@ -36,11 +36,15 @@ public class DocumentXjVO implements Serializable {
@ApiModelProperty(value = "包id") @ApiModelProperty(value = "包id")
private String bsId; private String bsId;
/**
* 标包名称
*/
@ApiModelProperty(value = "标包名称")
private String bidSectName;
/** /**
* 附件数据 * 附件数据
*/ */
@ApiModelProperty(value = "附件数据") @ApiModelProperty(value = "附件数据")
private List<AttachmentVO> list; private List<AttachmentVO> list;
} }

View File

@ -80,6 +80,7 @@ public class ISeatatEntrustServiceImpl extends BaseServiceImpl<ProjectEntrustMap
DocumentXjVO xjVO = new DocumentXjVO(); DocumentXjVO xjVO = new DocumentXjVO();
xjVO.setTpId(recordVO.getId()); xjVO.setTpId(recordVO.getId());
xjVO.setBsId(sectionId); xjVO.setBsId(sectionId);
xjVO.setBidSectName(recordVO.getProjectName()+ "包件");
xjVO.setList(inquiryVO.getAttachmentList()); xjVO.setList(inquiryVO.getAttachmentList());
BaseResponse<Boolean> response = bidApi.insertTp(xjVO); BaseResponse<Boolean> response = bidApi.insertTp(xjVO);
if(!response.isSuccess()){ if(!response.isSuccess()){