shiyj1101 4 vuotta sitten
vanhempi
commit
c24e6a67d4

+ 0 - 1
service-report/src/main/java/com/java110/report/api/ReportInfoSettingApi.java

@@ -37,7 +37,6 @@ public class ReportInfoSettingApi {
     @RequestMapping(value = "/saveReportInfoSetting", method = RequestMethod.POST)
     public ResponseEntity<String> saveReportInfoSetting(@RequestBody JSONObject reqJson) {
 
-        Assert.hasKeyAndValue(reqJson, "settingId", "请求报文中未包含settingId");
         Assert.hasKeyAndValue(reqJson, "reportType", "请求报文中未包含reportType");
         Assert.hasKeyAndValue(reqJson, "name", "请求报文中未包含name");
         Assert.hasKeyAndValue(reqJson, "startTime", "请求报文中未包含startTime");

+ 0 - 1
service-report/src/main/java/com/java110/report/api/ReportInfoSettingTitleApi.java

@@ -39,7 +39,6 @@ public class ReportInfoSettingTitleApi {
     @RequestMapping(value = "/saveReportInfoSettingTitle", method = RequestMethod.POST)
     public ResponseEntity<String> saveReportInfoSettingTitle(@RequestBody JSONObject reqJson) {
 
-        Assert.hasKeyAndValue(reqJson, "titleId", "请求报文中未包含titleId");
         Assert.hasKeyAndValue(reqJson, "settingId", "请求报文中未包含settingId");
         Assert.hasKeyAndValue(reqJson, "title", "请求报文中未包含title");
         Assert.hasKeyAndValue(reqJson, "titleType", "请求报文中未包含titleType");

+ 0 - 1
service-report/src/main/java/com/java110/report/api/ReportInfoSettingTitleValueApi.java

@@ -38,7 +38,6 @@ public class ReportInfoSettingTitleValueApi {
     public ResponseEntity<String> saveReportInfoSettingTitleValue(@RequestBody JSONObject reqJson) {
 
         Assert.hasKeyAndValue(reqJson, "valueId", "请求报文中未包含valueId");
-        Assert.hasKeyAndValue(reqJson, "titleId", "请求报文中未包含titleId");
         Assert.hasKeyAndValue(reqJson, "communityId", "请求报文中未包含communityId");
         Assert.hasKeyAndValue(reqJson, "qaValue", "请求报文中未包含qaValue");
         Assert.hasKeyAndValue(reqJson, "seq", "请求报文中未包含seq");