|
@@ -988,6 +988,14 @@ public class PreparationServiceImpl extends BaseServiceImpl<PreparationMapper, P
|
|
|
mapper.updateByPrimaryKeySelective(updPre);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void updateActualFee(String id, BigDecimal actualFee) {
|
|
|
+ Preparation updInfo = new Preparation();
|
|
|
+ updInfo.setId(id);
|
|
|
+ updInfo.setActualFee(actualFee);
|
|
|
+ mapper.updateByPrimaryKeySelective(updInfo);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public AbstractPageResultBean<Preparation> selectPageInfo(PreparationDTO record, int pageNum, int pageSize) {
|
|
|
PageHelper.startPage(pageNum, pageSize);
|