Commit c67db62e authored by Data-王博's avatar Data-王博

湖北消金 - 上线代偿日改正回来,整理代码屏蔽工具类

parent bd2a7365
......@@ -26,7 +26,7 @@ public class SystemToolsController {
public @ResponseBody JsonResult saveMailInfo(@RequestBody MailInfo mailInfo){
Long mailId = null;
if(mailInfo !=null){
mailId = mailService.saveMailInfo(mailInfo);
// mailId = mailService.saveMailInfo(mailInfo);
}
return JsonResult.SUCCESS(mailId);
}
......@@ -35,14 +35,15 @@ public class SystemToolsController {
public @ResponseBody JsonResult paymentNotify(@RequestParam("mailId") Long mailId){
Integer row = null;
if(mailId!=null){
row = mailService.deleteMailInfo(mailId);
// row = mailService.deleteMailInfo(mailId);
}
return JsonResult.SUCCESS(row);
}
@RequestMapping(value = "/payment/update", method = {RequestMethod.GET,RequestMethod.POST,RequestMethod.DELETE})
public @ResponseBody JsonResult updateContractNo(@RequestParam("contractNo") String contractNo,@RequestParam("loanHistoryId") Long loanHistoryId){
Integer row = apiCommonService.updateMerchantContractNo(contractNo,loanHistoryId);
Integer row = null;
// row = apiCommonService.updateMerchantContractNo(contractNo,loanHistoryId);
return JsonResult.SUCCESS(row);
}
}
......@@ -9,7 +9,7 @@
"y2017": {
"year": "2017",
"compensationDays": [
"1-27", "2-24","3-27","4-27","5-27","6-27","7-27","8-27","9-27",
"1-27", "2-27","3-27","4-27","5-27","6-27","7-27","8-27","9-27",
"10-27","11-27","12-27"
]
},
......
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