Commit c9856f56 authored by shiyu's avatar shiyu

版本3.5,拍卖保证金兼容上一版本2

parent 1c56ec2c
...@@ -146,6 +146,10 @@ public class AuctionRecordServiceImpl implements AuctionRecordService { ...@@ -146,6 +146,10 @@ public class AuctionRecordServiceImpl implements AuctionRecordService {
} }
} }
} }
//反复出价不付款用户
if (368815L == dto.getUserId()) {
return Result.failed("被风控系统识别不能出价");
}
Date now = new Date(); Date now = new Date();
//查询竞拍配置信息 //查询竞拍配置信息
AuctionConfig auctionConfig = auctionConfigDao.findByItemId(itemId); AuctionConfig auctionConfig = auctionConfigDao.findByItemId(itemId);
...@@ -281,6 +285,7 @@ public class AuctionRecordServiceImpl implements AuctionRecordService { ...@@ -281,6 +285,7 @@ public class AuctionRecordServiceImpl implements AuctionRecordService {
@Override @Override
public Result refreshOffer(AuctionRecordRequestDto dto) { public Result refreshOffer(AuctionRecordRequestDto dto) {
try { try {
userAccountService.initAccount(dto.getUserId());
AuctionRecordVo auctionRecordVo = new AuctionRecordVo(); AuctionRecordVo auctionRecordVo = new AuctionRecordVo();
AuctionRecordRequestDto searchDto = new AuctionRecordRequestDto(); AuctionRecordRequestDto searchDto = new AuctionRecordRequestDto();
searchDto.setItemId(dto.getItemId()); searchDto.setItemId(dto.getItemId());
......
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