forked from zhuyuchen/buliang
开启缓存,殷老师的本地启动数据库修改
This commit is contained in:
parent
a4108d591e
commit
3d9db587cd
File diff suppressed because it is too large
Load Diff
7
pom.xml
7
pom.xml
@ -91,6 +91,13 @@
|
|||||||
<classifier>all</classifier>
|
<classifier>all</classifier>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Mysql驱动包 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>mysql</groupId>
|
||||||
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
|
<version>8.0.28</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- JWT 工具库 -->
|
<!-- JWT 工具库 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.jsonwebtoken</groupId>
|
<groupId>io.jsonwebtoken</groupId>
|
||||||
|
@ -156,13 +156,13 @@ public class ShiroConfig {
|
|||||||
filterMap.put("/**/*.js", "anon");
|
filterMap.put("/**/*.js", "anon");
|
||||||
|
|
||||||
// 后端接口
|
// 后端接口
|
||||||
//todo 关闭jwt
|
|
||||||
// filterMap.put("/**", "jwt,authc");
|
// filterMap.put("/**", "jwt,authc");
|
||||||
// filterMap.put("/**", "login,authc");
|
// filterMap.put("/**", "login,authc");
|
||||||
// filterMap.put("/ZHZS/GetTitleScore*", "dapingCache");
|
// filterMap.put("/ZHZS/GetTitleScore*", "dapingCache");
|
||||||
// filterMap.put("/TongJi/zhutiqiyefugailv*", "dapingCache");
|
// filterMap.put("/TongJi/zhutiqiyefugailv*", "dapingCache");
|
||||||
// filterMap.put("/CCKH/GetKaoHeLv*", "dapingCache");
|
// filterMap.put("/CCKH/GetKaoHeLv*", "dapingCache");
|
||||||
filterMap.put("/**", "login");
|
// todo 关闭登录验证,发布的时候要打开
|
||||||
|
// filterMap.put("/**", "login");
|
||||||
// filterMap.put("/**", "jwt");
|
// filterMap.put("/**", "jwt");
|
||||||
|
|
||||||
// 授权过滤器
|
// 授权过滤器
|
||||||
|
@ -39,6 +39,7 @@ public class CCKHController {
|
|||||||
//统计模块-抽查考核
|
//统计模块-抽查考核
|
||||||
@GetMapping("/GetKaoHeLv")
|
@GetMapping("/GetKaoHeLv")
|
||||||
@ApiOperation(value = "抽查考核考核率")
|
@ApiOperation(value = "抽查考核考核率")
|
||||||
|
@DapingCache(isEnableCache = true)
|
||||||
@Log(title = "抽查考核考核率", businessType = BusinessType.SELECT)
|
@Log(title = "抽查考核考核率", businessType = BusinessType.SELECT)
|
||||||
public Object GetKaoHe(String wherestr) {
|
public Object GetKaoHe(String wherestr) {
|
||||||
AllQuery xinXiZhuiSuQuery = JSONUtil.toBean(wherestr, AllQuery.class);
|
AllQuery xinXiZhuiSuQuery = JSONUtil.toBean(wherestr, AllQuery.class);
|
||||||
@ -50,6 +51,7 @@ public class CCKHController {
|
|||||||
|
|
||||||
@GetMapping("/kaoHeLvExport")
|
@GetMapping("/kaoHeLvExport")
|
||||||
@ApiOperation(value = "抽查考核及相关结果导出")
|
@ApiOperation(value = "抽查考核及相关结果导出")
|
||||||
|
@DapingCache(isEnableCache = true)
|
||||||
@Log(title = "抽查考核及相关结果导出", businessType = BusinessType.EXPORT)
|
@Log(title = "抽查考核及相关结果导出", businessType = BusinessType.EXPORT)
|
||||||
public void kaoHeLvExport(String wherestr, HttpServletResponse response) {
|
public void kaoHeLvExport(String wherestr, HttpServletResponse response) {
|
||||||
AllQuery xinXiZhuiSuQuery = JSONUtil.toBean(wherestr, AllQuery.class);
|
AllQuery xinXiZhuiSuQuery = JSONUtil.toBean(wherestr, AllQuery.class);
|
||||||
@ -64,7 +66,7 @@ public class CCKHController {
|
|||||||
@GetMapping("/GetKaoHeDaPing")
|
@GetMapping("/GetKaoHeDaPing")
|
||||||
@ApiOperation(value = "抽查考核大屏主界面")
|
@ApiOperation(value = "抽查考核大屏主界面")
|
||||||
@Log(title = "抽查考核(大屏)", businessType = BusinessType.SELECT)
|
@Log(title = "抽查考核(大屏)", businessType = BusinessType.SELECT)
|
||||||
// @DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<CCKHVo>> GetKaoHeDaPing(String hj, String szqx, String month) {
|
public ZR<List<CCKHVo>> GetKaoHeDaPing(String hj, String szqx, String month) {
|
||||||
// szqx = Util.setSzqxFromUserName(szqx);
|
// szqx = Util.setSzqxFromUserName(szqx);
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
@ -75,10 +77,10 @@ public class CCKHController {
|
|||||||
return cckhDataService.getKaoHeDaPing(hj, szqx, start, end);
|
return cckhDataService.getKaoHeDaPing(hj, szqx, start, end);
|
||||||
}
|
}
|
||||||
|
|
||||||
//追溯信息
|
|
||||||
@GetMapping("/GetScoreByHuanJie")
|
@GetMapping("/GetScoreByHuanJie")
|
||||||
@Log(title = "追溯信息根据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "追溯信息根据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -139,7 +139,7 @@ public class TSJBController {
|
|||||||
@GetMapping("/GetTouSuLvDaPing")
|
@GetMapping("/GetTouSuLvDaPing")
|
||||||
@ApiOperation(value = "投诉举报(大屏演示)")
|
@ApiOperation(value = "投诉举报(大屏演示)")
|
||||||
@Log(title = "投诉举报(大屏演示)", businessType = BusinessType.SELECT)
|
@Log(title = "投诉举报(大屏演示)", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<TouSuJuBaoLv>> GetTouSuLvDaPing(String hj, String szqx, String month) {
|
public ZR<List<TouSuJuBaoLv>> GetTouSuLvDaPing(String hj, String szqx, String month) {
|
||||||
// String userName = BaseContext.getUserName();
|
// String userName = BaseContext.getUserName();
|
||||||
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
||||||
@ -156,7 +156,7 @@ public class TSJBController {
|
|||||||
@GetMapping("/GetTouSuLvDaPingStreet")
|
@GetMapping("/GetTouSuLvDaPingStreet")
|
||||||
@ApiOperation(value = "投诉举报(大屏演示)街道")
|
@ApiOperation(value = "投诉举报(大屏演示)街道")
|
||||||
@Log(title = "投诉举报(大屏)街道", businessType = BusinessType.SELECT)
|
@Log(title = "投诉举报(大屏)街道", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<TouSuJuBaoLv>> GetTouSuLvDaPingStreet(String hj, String szqx, String month,String street) {
|
public ZR<List<TouSuJuBaoLv>> GetTouSuLvDaPingStreet(String hj, String szqx, String month,String street) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -169,7 +169,7 @@ public class TSJBController {
|
|||||||
//投诉举报
|
//投诉举报
|
||||||
@GetMapping("/GetScoreByHuanJie")
|
@GetMapping("/GetScoreByHuanJie")
|
||||||
@Log(title = "投诉举报根据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "投诉举报根据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -334,7 +334,7 @@ public class TongJiController {
|
|||||||
/// 查询合格率统计信息20231021Add
|
/// 查询合格率统计信息20231021Add
|
||||||
@GetMapping("/TongJi/GetTongJiHeGeLvDaPing")
|
@GetMapping("/TongJi/GetTongJiHeGeLvDaPing")
|
||||||
@Log(title = "抽检监测(大屏)", businessType = BusinessType.SELECT)
|
@Log(title = "抽检监测(大屏)", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<TongJiHeGeLv>> GetTongJiHeGeLvDaPing(String hj, String szqx, String month) {
|
public ZR<List<TongJiHeGeLv>> GetTongJiHeGeLvDaPing(String hj, String szqx, String month) {
|
||||||
|
|
||||||
// String userName = BaseContext.getUserName();
|
// String userName = BaseContext.getUserName();
|
||||||
@ -353,7 +353,7 @@ public class TongJiController {
|
|||||||
/// 查询合格率统计信息20231021Add
|
/// 查询合格率统计信息20231021Add
|
||||||
@GetMapping("/TongJi/GetTongJiHeGeLvDaPingStreet")
|
@GetMapping("/TongJi/GetTongJiHeGeLvDaPingStreet")
|
||||||
@Log(title = "抽检监测(大屏)街道", businessType = BusinessType.SELECT)
|
@Log(title = "抽检监测(大屏)街道", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<TongJiHeGeLv>> GetTongJiHeGeLvDaPingStreet(String hj, String szqx, String month,String street) {
|
public ZR<List<TongJiHeGeLv>> GetTongJiHeGeLvDaPingStreet(String hj, String szqx, String month,String street) {
|
||||||
|
|
||||||
// String userName = BaseContext.getUserName();
|
// String userName = BaseContext.getUserName();
|
||||||
@ -453,7 +453,7 @@ public class TongJiController {
|
|||||||
|
|
||||||
@GetMapping("/CJJC/GetScoreByHuanJie")
|
@GetMapping("/CJJC/GetScoreByHuanJie")
|
||||||
@Log(title = "抽检监测根据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "抽检监测根据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -69,7 +69,7 @@ public class XXZSController {
|
|||||||
@GetMapping("/GetZhuiSuDaPing")
|
@GetMapping("/GetZhuiSuDaPing")
|
||||||
@ApiOperation(value = "信息追溯(大屏)")
|
@ApiOperation(value = "信息追溯(大屏)")
|
||||||
@Log(title = "信息追溯(大屏)", businessType = BusinessType.SELECT)
|
@Log(title = "信息追溯(大屏)", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetZhuiSuDaPing(String hj, String szqx, String month) {
|
public Object GetZhuiSuDaPing(String hj, String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -83,7 +83,7 @@ public class XXZSController {
|
|||||||
@GetMapping("/GetZhuiSuDaPingStreet")
|
@GetMapping("/GetZhuiSuDaPingStreet")
|
||||||
@ApiOperation(value = "信息追溯(大屏)街道")
|
@ApiOperation(value = "信息追溯(大屏)街道")
|
||||||
@Log(title = "信息追溯(大屏)街道", businessType = BusinessType.SELECT)
|
@Log(title = "信息追溯(大屏)街道", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetZhuiSuDaPingStreet(String hj, String szqx, String month,String street) {
|
public Object GetZhuiSuDaPingStreet(String hj, String szqx, String month,String street) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -95,7 +95,7 @@ public class XXZSController {
|
|||||||
|
|
||||||
@GetMapping("/GetScoreByHuanJie")
|
@GetMapping("/GetScoreByHuanJie")
|
||||||
@Log(title = "追溯信息根据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "追溯信息根据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -95,7 +95,7 @@ public class XZCFController {
|
|||||||
//统计模块-行政处罚
|
//统计模块-行政处罚
|
||||||
@GetMapping("/GetFaShengLvDaPing")
|
@GetMapping("/GetFaShengLvDaPing")
|
||||||
@Log(title = "行政处罚(大屏)", businessType = BusinessType.SELECT)
|
@Log(title = "行政处罚(大屏)", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Map<String, Object> GetFaShengLvDaPing(String hj, String szqx, String month) {
|
public Map<String, Object> GetFaShengLvDaPing(String hj, String szqx, String month) {
|
||||||
// String userName = BaseContext.getUserName();
|
// String userName = BaseContext.getUserName();
|
||||||
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
||||||
@ -114,7 +114,7 @@ public class XZCFController {
|
|||||||
//统计模块-行政处罚
|
//统计模块-行政处罚
|
||||||
@GetMapping("/GetFaShengLvDaPingStreet")
|
@GetMapping("/GetFaShengLvDaPingStreet")
|
||||||
@Log(title = "行政处罚(大屏)街道", businessType = BusinessType.SELECT)
|
@Log(title = "行政处罚(大屏)街道", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Map<String, Object> GetFaShengLvDaPingStreet(String hj, String szqx, String month,String street) {
|
public Map<String, Object> GetFaShengLvDaPingStreet(String hj, String szqx, String month,String street) {
|
||||||
// String userName = BaseContext.getUserName();
|
// String userName = BaseContext.getUserName();
|
||||||
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
// if (Tools.isNotEmpty(userName) && userName.contains("区")) {
|
||||||
@ -152,7 +152,7 @@ public class XZCFController {
|
|||||||
|
|
||||||
@GetMapping("/GetScoreByHuanJie")
|
@GetMapping("/GetScoreByHuanJie")
|
||||||
@Log(title = "行政处罚根据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "行政处罚根据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -59,7 +59,7 @@ public class ZFJCController {
|
|||||||
//统计模块-执法检查
|
//统计模块-执法检查
|
||||||
@GetMapping("/GetWenTiLvDaPing")
|
@GetMapping("/GetWenTiLvDaPing")
|
||||||
@Log(title = "执法检查(大屏)", businessType = BusinessType.SELECT)
|
@Log(title = "执法检查(大屏)", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetWenTiLvDaPing(String hj, String szqx, String month) {
|
public Object GetWenTiLvDaPing(String hj, String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -72,7 +72,7 @@ public class ZFJCController {
|
|||||||
//执法检查 大屏 街道
|
//执法检查 大屏 街道
|
||||||
@GetMapping("/GetWenTiLvDaPingStreet")
|
@GetMapping("/GetWenTiLvDaPingStreet")
|
||||||
@Log(title = "执法检查(大屏)街道", businessType = BusinessType.SELECT)
|
@Log(title = "执法检查(大屏)街道", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetWenTiLvDaPingStreet(String hj, String szqx, String month,String street) {
|
public Object GetWenTiLvDaPingStreet(String hj, String szqx, String month,String street) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -84,7 +84,7 @@ public class ZFJCController {
|
|||||||
|
|
||||||
@GetMapping("/GetScoreByHuanJie")
|
@GetMapping("/GetScoreByHuanJie")
|
||||||
@Log(title = "执法检查据环节获取成绩", businessType = BusinessType.SELECT)
|
@Log(title = "执法检查据环节获取成绩", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public Object GetScoreByHuanJie(String szqx, String month) {
|
public Object GetScoreByHuanJie(String szqx, String month) {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
@ -53,7 +53,7 @@ public class ZHZSController {
|
|||||||
@GetMapping("/GetScoreNew")
|
@GetMapping("/GetScoreNew")
|
||||||
@ApiOperation(value = "综合指数各区分数大屏,计算分数", notes = "返回各区的各个维度的分数,以及总分")
|
@ApiOperation(value = "综合指数各区分数大屏,计算分数", notes = "返回各区的各个维度的分数,以及总分")
|
||||||
@Log(title = "综合指数各区分数大屏,计算分数", businessType = BusinessType.SELECT)
|
@Log(title = "综合指数各区分数大屏,计算分数", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public R<List<DaPingScoreQX>> getCountyMapScore(String hj, String szqx, String month) throws ParseException {
|
public R<List<DaPingScoreQX>> getCountyMapScore(String hj, String szqx, String month) throws ParseException {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -71,7 +71,7 @@ public class ZHZSController {
|
|||||||
@GetMapping("/GetScoreNewStreet")
|
@GetMapping("/GetScoreNewStreet")
|
||||||
@ApiOperation(value = "综合指数各街道分数大屏,计算分数", notes = "返回各区的各个维度的分数,以及总分")
|
@ApiOperation(value = "综合指数各街道分数大屏,计算分数", notes = "返回各区的各个维度的分数,以及总分")
|
||||||
@Log(title = "综合指数各街道分数大屏,计算分数", businessType = BusinessType.SELECT)
|
@Log(title = "综合指数各街道分数大屏,计算分数", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public R<List<DaPingScoreQX>> getStreetMapScore(String hj, String szqx, String month) throws ParseException {
|
public R<List<DaPingScoreQX>> getStreetMapScore(String hj, String szqx, String month) throws ParseException {
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
@ -84,6 +84,28 @@ public class ZHZSController {
|
|||||||
return R.success(zhzsService.getStreetMapScore(hj, szqx, startTime, endTime));
|
return R.success(zhzsService.getStreetMapScore(hj, szqx, startTime, endTime));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//街道分数大屏
|
||||||
|
@GetMapping("/GetScoreNewStreetAndShanghai")
|
||||||
|
@ApiOperation(value = "综合指数各街道分数大屏,计算分数", notes = "返回各区的各个维度的分数,以及总分")
|
||||||
|
@Log(title = "综合指数各街道分数大屏,计算分数", businessType = BusinessType.SELECT)
|
||||||
|
@DapingCache(isEnableCache = true)
|
||||||
|
public R<List<DaPingScoreQX>> getScoreStreetAndShanghai(String hj, String szqx, String month) throws ParseException {
|
||||||
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
|
String endMonth = ObjectUtils.isEmpty(month) ? "12" : month;
|
||||||
|
//开始时间不用
|
||||||
|
String start = "2023/" + startMonth + "/1";
|
||||||
|
String end = "2023/" + endMonth + "/31";
|
||||||
|
DateTimeFormatter dateString = DateTimeFormatter.ofPattern("yyyy/M/d");
|
||||||
|
LocalDate startTime = !ObjectUtils.isEmpty(start) ? LocalDate.parse(start, dateString) : null;
|
||||||
|
LocalDate endTime = !ObjectUtils.isEmpty(end) ? LocalDate.parse(end, dateString) : null;
|
||||||
|
if (szqx.equals("上海市")) {
|
||||||
|
return R.success(zhzsService.getCountyMapScore(hj, szqx, startTime, endTime));
|
||||||
|
} else{
|
||||||
|
return R.success(zhzsService.getStreetMapScore(hj, szqx, startTime, endTime));
|
||||||
|
}
|
||||||
|
// return R.success(zhzsService.getStreetMapScore(hj, szqx, startTime, endTime));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//街道分数大屏
|
//街道分数大屏
|
||||||
@GetMapping("/getStreetMapScoreExport")
|
@GetMapping("/getStreetMapScoreExport")
|
||||||
@ -97,7 +119,7 @@ public class ZHZSController {
|
|||||||
@GetMapping("/GetTitleScore")
|
@GetMapping("/GetTitleScore")
|
||||||
@ApiOperation(value = "计算标题分数", notes = "计算当前条件下的总分(不受区县条件影响)")
|
@ApiOperation(value = "计算标题分数", notes = "计算当前条件下的总分(不受区县条件影响)")
|
||||||
@Log(title = "计算标题分数", businessType = BusinessType.SELECT)
|
@Log(title = "计算标题分数", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public R<BigDecimal> GetTitleScoreNew(String hj, String szqx, String month) {
|
public R<BigDecimal> GetTitleScoreNew(String hj, String szqx, String month) {
|
||||||
// szqx = Util.setSzqxFromUserName(szqx);
|
// szqx = Util.setSzqxFromUserName(szqx);
|
||||||
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
String startMonth = ObjectUtils.isEmpty(month) ? "1" : month;
|
||||||
@ -117,7 +139,7 @@ public class ZHZSController {
|
|||||||
//综合性指标 大屏,综合指数
|
//综合性指标 大屏,综合指数
|
||||||
@GetMapping("/GetZHScoreDaPing")
|
@GetMapping("/GetZHScoreDaPing")
|
||||||
@Log(title = "综合性指标 大屏", businessType = BusinessType.SELECT)
|
@Log(title = "综合性指标 大屏", businessType = BusinessType.SELECT)
|
||||||
@DapingCache(isEnableCache = false)
|
@DapingCache(isEnableCache = true)
|
||||||
public ZR<List<ZhData>> GetZHScoreDaPing(String szqx) {
|
public ZR<List<ZhData>> GetZHScoreDaPing(String szqx) {
|
||||||
// szqx = Util.setSzqxFromUserName(szqx);
|
// szqx = Util.setSzqxFromUserName(szqx);
|
||||||
String year = "2023";
|
String year = "2023";
|
||||||
|
@ -11,20 +11,22 @@ spring:
|
|||||||
strict: false
|
strict: false
|
||||||
datasource:
|
datasource:
|
||||||
db1:
|
db1:
|
||||||
url: jdbc:dm://localhost:5236?clobAsString=true
|
type: com.alibaba.druid.pool.DruidDataSource
|
||||||
username: BL
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
password: asd159159
|
url: jdbc:mysql://localhost:3306/buliang?characterEncoding=utf-8&useSSL=false
|
||||||
driver-class-name: dm.jdbc.driver.DmDriver
|
username: root
|
||||||
|
password: root
|
||||||
# db2:
|
# db2:
|
||||||
# url: jdbc:clickhouse://192.168.1.128:8123
|
# url: jdbc:clickhouse://192.168.1.128:8123
|
||||||
# username: default
|
# username: default
|
||||||
# password: ""
|
# password: ""
|
||||||
# driver-class-name: com.clickhouse.jdbc.ClickHouseDriver
|
# driver-class-name: com.clickhouse.jdbc.ClickHouseDriver
|
||||||
db2:
|
db2:
|
||||||
url: jdbc:clickhouse://192.168.1.128:8124
|
type: com.alibaba.druid.pool.DruidDataSource
|
||||||
username: default
|
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||||
password: default
|
url: jdbc:mysql://localhost:3306/buliang?characterEncoding=utf-8&useSSL=false
|
||||||
driver-class-name: com.clickhouse.jdbc.ClickHouseDriver
|
username: root
|
||||||
|
password: root
|
||||||
hikari:
|
hikari:
|
||||||
connection-timeout: 120000
|
connection-timeout: 120000
|
||||||
jackson:
|
jackson:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user