Commit df07299c authored by shiyu's avatar shiyu

成交价格

parent 0d917d5f
......@@ -28,13 +28,11 @@ public class BidRecordServiceImpl implements BidRecordService {
@Override
public void add(BidRecord record) {
record.setPrice(record.getPrice() * 100);
bidRecordDao.add(record);
}
@Override
public int updateById(BidRecord record) {
record.setPrice(record.getPrice() * 100);
return bidRecordDao.updateById(record);
}
......
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