Browse Source

积分管理

v-qinpengfei 5 years ago
parent
commit
dbd1ee19bc

+ 1 - 1
src/main/java/com/poteviohealth/cgp/integration/controller/feign/IntegrationFeignController.java

@@ -61,7 +61,7 @@ public class IntegrationFeignController {
     @ApiImplicitParam(name = "customerIntegration", value = "运营商ID", required = true)
     @ResponseBody
     @OperationLog(type = OperateType.FEIGN,description = "新增积分详情数据")
-    public VaultsResponse saveDetail(List<CustomerIntegration> customerIntegration){
+    public VaultsResponse saveDetail(@RequestBody List<CustomerIntegration> customerIntegration){
         return iIntegralDetailService.saveDetail(customerIntegration);
     }
 }

+ 0 - 1
src/main/java/com/poteviohealth/cgp/integration/service/impl/IntegralDetailServiceImpl.java

@@ -116,7 +116,6 @@ public class IntegralDetailServiceImpl extends BaseServiceImpl<IntegralDetailMap
             detail.setIntegralDetailId(CgpTool.generateKey());
             super.save(detail);
         }
-        log.info("--------------"+JSON.toJSONString(list));
         return VaultsResponse.success();
     }