parent
28fcf2cf3d
commit
c08852989d
40 changed files with 113 additions and 285 deletions
@ -0,0 +1,2 @@ |
||||
alter table mp_appeal add column `source_type` int(4) default 0 COMMENT '数据来源 0:系统添加, 1:数据导入'; |
||||
alter table mp_appeal add column `handle_dept` bigint COMMENT '数据录入时, 处理部门'; |
||||
@ -1,39 +0,0 @@ |
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.appeal.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tenant.annotation.NonDS; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* 接口权限控制器 |
||||
* |
||||
* @author BladeX |
||||
*/ |
||||
@NonDS |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("") |
||||
@Api(value = "", tags = "") |
||||
public class AppealMediationFileController extends BladeController { |
||||
|
||||
|
||||
} |
||||
@ -1,105 +0,0 @@ |
||||
package org.springblade.appeal.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.tenant.annotation.NonDS; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
@NonDS |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/blade-business/report") |
||||
@Api(value = "大屏", tags = "大屏") |
||||
public class LargeScreenController { |
||||
|
||||
/** |
||||
* 矛盾纠纷化解统计(左1) |
||||
*/ |
||||
@GetMapping("/getMediateFinish") |
||||
public R getMediateFinish() { |
||||
// 总化解数
|
||||
// 本年化解数
|
||||
// 本季度化解数
|
||||
// 本月化解数
|
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾纠纷上报处理列表(左2) |
||||
*/ |
||||
@GetMapping("/getAppealList") |
||||
public R getAppealList() { |
||||
//
|
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾纠纷月份趋势统计(左3) |
||||
*/ |
||||
@GetMapping("/getAppealByMon") |
||||
public R getAppealByMon() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾纠纷类型占比统计(左4) |
||||
*/ |
||||
@GetMapping("/getAppealTypePercent") |
||||
public R getAppealTypePercent() { |
||||
// 先查所有
|
||||
// 根据纠纷类型分组(输入的纠纷类型算其他纠纷)
|
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾纠纷上报统计(中1) |
||||
*/ |
||||
@GetMapping("/getAppealSubmit") |
||||
public R getAppealSubmit() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 事件上报热力图(中2) |
||||
*/ |
||||
@GetMapping("/getAppealSubmitCountByLoc") |
||||
public R getAppealSubmitCountByLoc() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾化解热力图(中3) |
||||
*/ |
||||
@GetMapping("/getAppealFinishCountByLoc") |
||||
public R getAppealFinishCountByLoc() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 越级上报热力图(中4) |
||||
*/ |
||||
@GetMapping("/getImmediateCountByLoc") |
||||
public R getImmediateCountByLoc() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 越级上报事件列表(中5) |
||||
*/ |
||||
@GetMapping("/getImmediateList") |
||||
public R getImmediateList() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
/** |
||||
* 矛盾纠纷化解排行(街道/部门)统计(右1-2) |
||||
*/ |
||||
@GetMapping("/getAppealHot") |
||||
public R getAppealHot() { |
||||
return R.data(null); |
||||
} |
||||
|
||||
} |
||||
@ -1,39 +0,0 @@ |
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package org.springblade.appeal.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.boot.ctrl.BladeController; |
||||
import org.springblade.core.tenant.annotation.NonDS; |
||||
import org.springframework.web.bind.annotation.RequestMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* 接口权限控制器 |
||||
* |
||||
* @author BladeX |
||||
*/ |
||||
@NonDS |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("") |
||||
@Api(value = "", tags = "") |
||||
public class ServerWindowsDisputeController extends BladeController { |
||||
|
||||
|
||||
} |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.AppealMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.AppealMapper"> |
||||
|
||||
</mapper> |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.AppealMediationFileMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.AppealMediationFileMapper"> |
||||
|
||||
</mapper> |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.AppealMediationMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.AppealMediationMapper"> |
||||
|
||||
</mapper> |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.AppealRegMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.AppealRegMapper"> |
||||
|
||||
</mapper> |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.AppealVisitorMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.AppealVisitorMapper"> |
||||
|
||||
</mapper> |
||||
@ -1,5 +1,5 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="org.springblade.appeal.mapper.ServerWindowsDisputeMapper"> |
||||
<mapper namespace="org.springblade.modules.business.mapper.ServerWindowsDisputeMapper"> |
||||
|
||||
</mapper> |
||||
Loading…
Reference in new issue