|
@@ -154,10 +154,10 @@ public class PayBaseAccountController {
|
|
|
return new AjaxMessage(1,"未查询到有效数据","");
|
|
|
}
|
|
|
}
|
|
|
- @GetMapping("/getAccountInfoByMetercode")
|
|
|
+ @PostMapping("/getAccountInfoByMetercode")
|
|
|
@ApiOperation("根据水表编码获取客户信息")
|
|
|
public AjaxMessage<List<AccountInfo>> getAccountInfoByMetercode(
|
|
|
- @ApiParam(value = "水表编码") Map<String,Object> args){
|
|
|
+ @ApiParam(value = "水表编码") @RequestBody Map<String,Object> args){
|
|
|
if(args.containsKey("metercodes")){
|
|
|
List<String> metercodes = (List<String>)args.get("metercodes");
|
|
|
if(metercodes.size() > 0){
|