|
@@ -514,9 +514,9 @@ public class SiMzService {
|
|
|
|
|
|
public Map<String, Object> modifyFundPayAmount(ModifyFundAmt amt) {
|
|
|
amt.fixNullVal();
|
|
|
- Integer res = dao.modifyFundAmt(amt);
|
|
|
+ int res = dao.modifyFundAmt(amt);
|
|
|
Map<String, Object> resultMap = new HashMap<>();
|
|
|
- if (null != res && res > 0) {
|
|
|
+ if (res > 0) {
|
|
|
resultMap.put("code", 0);
|
|
|
resultMap.put("msg", "更新成功,有" + res + "条数据受影响。");
|
|
|
} else {
|