Commit 6a433de3 by 吴博

Merge branch 'fixbug/fix==' into 'master'

bug: [none] fix==

See merge request rays/pcloud-book!1157
parents d9c673ea 5d241e4d
......@@ -143,7 +143,7 @@ public class BuyBookRequestBizImpl implements BuyBookRequestBiz {
Long requestId = buyBookRequestDTO.getId();
List<BuyBookRequestReplyDTO> replyList = new ArrayList<>();
for (BuyBookRequestReplyDTO requestReplyDTO : requestReplyDTOS) {
if (requestReplyDTO.getRequestId() == requestId){
if (Objects.equals(requestReplyDTO.getRequestId(),requestId)){
replyList.add(requestReplyDTO);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment