Commit a12e064f by liulianglang

数据资源统计

parent 0ea683e3
......@@ -162,6 +162,7 @@ public class GjController {
return R.error(e.getMessage());
}
}
//车辆电子违章
@PostMapping("/getClwzgjCount")
public R getClwzgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
......@@ -174,6 +175,151 @@ public class GjController {
return R.error(e.getMessage());
}
}
//交警违法记录
@PostMapping("/getJqwfjlgjCount")
public R getJqwfjlgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJqwfjlgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//滴滴司机
@PostMapping("/getDdsjgjCount")
public R getDdsjgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getDdsjgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//强制隔离戒毒
@PostMapping("/getQzgljdgjCount")
public R getQzgljdgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getQzgljdgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//机动车
@PostMapping("/getJdcgjCount")
public R getJdcgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJdcgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//出入境证件信息
@PostMapping("/getCrjzjxxgjCount")
public R getCrjzjxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getCrjzjxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//驾驶证信息
@PostMapping("/getJszxxgjCount")
public R getJszxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJszxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//企业信息基本信息
@PostMapping("/getQyxxgjCount")
public R getQyxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getQyxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//从业人员基本信息基本信息
@PostMapping("/getCyryjbxxgjCount")
public R getCyryjbxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getCyryjbxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//教育厅毕业生基本信息
@PostMapping("/getJytbysjbxxgjCount")
public R getJytbysjbxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJytbysjbxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//监管戒毒所人员基本信息
@PostMapping("/getJgjdsxxgjCount")
public R getJgjdsxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJgjdsxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
//拘留所人员基本信息
@PostMapping("/getJlsxxgjCount")
public R getJlsxxgjCount(@RequestBody ZyfwQueryParam zyfwQueryParam) {
try {
HttpServletRequest request = IpADdress.getRequest();
Long total = gjService.getJlsxxgjCount(request,zyfwQueryParam.getIsZl());
System.out.println("ldzs="+total);
return R.ok().data("total", total);
} catch (Exception e) {
return R.error(e.getMessage());
}
}
/**
* 车牌号获取车主信息
* @param xyrParam
......
......@@ -22,10 +22,29 @@ public interface GjService {
Long getThdjgjCount(HttpServletRequest request,String isZl);
Long getClwzgjCount(HttpServletRequest request,String isZl);
Long getJqwfjlgjCount(HttpServletRequest request,String isZl);
Long getDdsjgjCount(HttpServletRequest request,String isZl);
Long getQzgljdgjCount(HttpServletRequest request,String isZl);
Long getJdcgjCount(HttpServletRequest request,String isZl);
Long getCrjzjxxgjCount(HttpServletRequest request,String isZl);
Long getJszxxgjCount(HttpServletRequest request,String isZl);
Long getQyxxgjCount(HttpServletRequest request,String isZl);
Long getCyryjbxxgjCount(HttpServletRequest request,String isZl);
Long getJytbysjbxxgjCount(HttpServletRequest request,String isZl);
Long getJgjdsxxgjCount(HttpServletRequest request,String isZl);
Long getJlsxxgjCount(HttpServletRequest request,String isZl);
Map<String, Object> getBlzz(HttpServletRequest request) throws Exception;
Map<String, Object> getWbxx(HttpServletRequest request, XyrParam xyrParam) throws Exception;
......
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