Commit 0d917d5f authored by shiyu's avatar shiyu

成交价格

parent 58c1d676
......@@ -28,11 +28,13 @@ 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