|
@@ -84,7 +84,7 @@ public class MarkMtFeesController {
|
|
|
|
|
|
private Map<String, Object> getStringObjectMap(SiMzBusinessParams param, ResultVo<FundDetail> result, String logText) {
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
- if (result.getCode() != ExceptionEnum.SUCCESS.getCode()) {
|
|
|
+ if (!Objects.equals(result.getCode(), ExceptionEnum.SUCCESS.getCode())) {
|
|
|
map.put("code", -2);
|
|
|
map.put("msg", result.getMessage());
|
|
|
log.info("{}:参数:{},结果:{}", logText, param, map);
|