From 28fcf2cf3dc723abbc5ae553af1d0dda89abdc72 Mon Sep 17 00:00:00 2001 From: litao Date: Sat, 10 Jun 2023 10:36:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E4=BD=93=E7=B1=BB=E5=88=9B=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../appeal/controller/AppealController.java | 38 +++++++ .../controller/AppealMediationController.java | 39 +++++++ .../AppealMediationFileController.java | 39 +++++++ .../controller/AppealRegController.java | 39 +++++++ .../controller/AppealVisitorController.java | 39 +++++++ .../controller/LargeScreenController.java | 105 ++++++++++++++++++ .../ServerWindowsDisputeController.java | 39 +++++++ .../org/springblade/appeal/entity/Appeal.java | 79 +++++++++++++ .../appeal/entity/AppealMediation.java | 87 +++++++++++++++ .../appeal/entity/AppealMediationFile.java | 55 +++++++++ .../springblade/appeal/entity/AppealReg.java | 75 +++++++++++++ .../appeal/entity/AppealVisitor.java | 75 +++++++++++++ .../appeal/entity/ServerWindowsDispute.java | 45 ++++++++ .../appeal/mapper/AppealMapper.java | 30 +++++ .../appeal/mapper/AppealMapper.xml | 5 + .../mapper/AppealMediationFileMapper.java | 30 +++++ .../mapper/AppealMediationFileMapper.xml | 5 + .../appeal/mapper/AppealMediationMapper.java | 30 +++++ .../appeal/mapper/AppealMediationMapper.xml | 5 + .../appeal/mapper/AppealRegMapper.java | 30 +++++ .../appeal/mapper/AppealRegMapper.xml | 5 + .../appeal/mapper/AppealVisitorMapper.java | 31 ++++++ .../appeal/mapper/AppealVisitorMapper.xml | 5 + .../mapper/ServerWindowsDisputeMapper.java | 30 +++++ .../mapper/ServerWindowsDisputeMapper.xml | 5 + .../service/IAppealMediationFileService.java | 29 +++++ .../service/IAppealMediationService.java | 29 +++++ .../appeal/service/IAppealRegService.java | 29 +++++ .../appeal/service/IAppealService.java | 29 +++++ .../appeal/service/IAppealVisitorService.java | 29 +++++ .../service/IServerWindowsDisputeService.java | 29 +++++ .../impl/AppealMediationFileServiceImpl.java | 33 ++++++ .../impl/AppealMediationServiceImpl.java | 33 ++++++ .../service/impl/AppealRegServiceImpl.java | 33 ++++++ .../service/impl/AppealServiceImpl.java | 33 ++++++ .../impl/AppealVisitorServiceImpl.java | 33 ++++++ .../impl/ServerWindowsDisputeServiceImpl.java | 33 ++++++ 37 files changed, 1337 insertions(+) create mode 100644 src/main/java/org/springblade/appeal/controller/AppealController.java create mode 100644 src/main/java/org/springblade/appeal/controller/AppealMediationController.java create mode 100644 src/main/java/org/springblade/appeal/controller/AppealMediationFileController.java create mode 100644 src/main/java/org/springblade/appeal/controller/AppealRegController.java create mode 100644 src/main/java/org/springblade/appeal/controller/AppealVisitorController.java create mode 100644 src/main/java/org/springblade/appeal/controller/LargeScreenController.java create mode 100644 src/main/java/org/springblade/appeal/controller/ServerWindowsDisputeController.java create mode 100644 src/main/java/org/springblade/appeal/entity/Appeal.java create mode 100644 src/main/java/org/springblade/appeal/entity/AppealMediation.java create mode 100644 src/main/java/org/springblade/appeal/entity/AppealMediationFile.java create mode 100644 src/main/java/org/springblade/appeal/entity/AppealReg.java create mode 100644 src/main/java/org/springblade/appeal/entity/AppealVisitor.java create mode 100644 src/main/java/org/springblade/appeal/entity/ServerWindowsDispute.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMapper.xml create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.xml create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.xml create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealRegMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealRegMapper.xml create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.xml create mode 100644 src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.java create mode 100644 src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.xml create mode 100644 src/main/java/org/springblade/appeal/service/IAppealMediationFileService.java create mode 100644 src/main/java/org/springblade/appeal/service/IAppealMediationService.java create mode 100644 src/main/java/org/springblade/appeal/service/IAppealRegService.java create mode 100644 src/main/java/org/springblade/appeal/service/IAppealService.java create mode 100644 src/main/java/org/springblade/appeal/service/IAppealVisitorService.java create mode 100644 src/main/java/org/springblade/appeal/service/IServerWindowsDisputeService.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/AppealMediationFileServiceImpl.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/AppealMediationServiceImpl.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/AppealRegServiceImpl.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/AppealServiceImpl.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/AppealVisitorServiceImpl.java create mode 100644 src/main/java/org/springblade/appeal/service/impl/ServerWindowsDisputeServiceImpl.java diff --git a/src/main/java/org/springblade/appeal/controller/AppealController.java b/src/main/java/org/springblade/appeal/controller/AppealController.java new file mode 100644 index 0000000..6e09e95 --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/AppealController.java @@ -0,0 +1,38 @@ +/* + * 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.*; + +/** + * 接口权限控制器 + * + * @author BladeX + */ +@NonDS +@RestController +@AllArgsConstructor +@RequestMapping("") +@Api(value = "", tags = "") +public class AppealController extends BladeController { + + +} diff --git a/src/main/java/org/springblade/appeal/controller/AppealMediationController.java b/src/main/java/org/springblade/appeal/controller/AppealMediationController.java new file mode 100644 index 0000000..648b682 --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/AppealMediationController.java @@ -0,0 +1,39 @@ +/* + * 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 AppealMediationController extends BladeController { + + +} diff --git a/src/main/java/org/springblade/appeal/controller/AppealMediationFileController.java b/src/main/java/org/springblade/appeal/controller/AppealMediationFileController.java new file mode 100644 index 0000000..24961bc --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/AppealMediationFileController.java @@ -0,0 +1,39 @@ +/* + * 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 { + + +} diff --git a/src/main/java/org/springblade/appeal/controller/AppealRegController.java b/src/main/java/org/springblade/appeal/controller/AppealRegController.java new file mode 100644 index 0000000..966a9fc --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/AppealRegController.java @@ -0,0 +1,39 @@ +/* + * 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 AppealRegController extends BladeController { + + +} diff --git a/src/main/java/org/springblade/appeal/controller/AppealVisitorController.java b/src/main/java/org/springblade/appeal/controller/AppealVisitorController.java new file mode 100644 index 0000000..54c0ae4 --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/AppealVisitorController.java @@ -0,0 +1,39 @@ +/* + * 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 AppealVisitorController extends BladeController { + + +} diff --git a/src/main/java/org/springblade/appeal/controller/LargeScreenController.java b/src/main/java/org/springblade/appeal/controller/LargeScreenController.java new file mode 100644 index 0000000..bf83121 --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/LargeScreenController.java @@ -0,0 +1,105 @@ +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); + } + +} diff --git a/src/main/java/org/springblade/appeal/controller/ServerWindowsDisputeController.java b/src/main/java/org/springblade/appeal/controller/ServerWindowsDisputeController.java new file mode 100644 index 0000000..e1b637b --- /dev/null +++ b/src/main/java/org/springblade/appeal/controller/ServerWindowsDisputeController.java @@ -0,0 +1,39 @@ +/* + * 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 { + + +} diff --git a/src/main/java/org/springblade/appeal/entity/Appeal.java b/src/main/java/org/springblade/appeal/entity/Appeal.java new file mode 100644 index 0000000..6f012b9 --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/Appeal.java @@ -0,0 +1,79 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import java.util.Date; + +/** + * 诉求表 + * @author Chill + */ + +@Data +@TableName("mp_appeal") +@EqualsAndHashCode(callSuper = true) +public class Appeal extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 所属街道字典id + */ + private Long streetId; + /** + * 纠纷字典id + */ + private Long disputeId; + /** + * 纠纷名称 + */ + private String disputeName; + /** + * 纠纷等级(事件等级), 0:简单, 1:一般, 2:重大, 3:疑难 + */ + private Integer disputeLevel; + /** + * 首次登记时间 + */ + private Date firstRegTime; + /** + * 办结时间 + */ + private Date finishTime; + /** + * 反应问题 + */ + private String problemDesc; + /** + * 是否越级上报, 0:否, 1:是 + */ + private Integer skipGrant; + /** + * 数据来源 0:系统添加, 1:数据导入 + */ + private Integer sourceType; + /** + * 数据录入时, 处理部门 + */ + private Long handleDept; + +} diff --git a/src/main/java/org/springblade/appeal/entity/AppealMediation.java b/src/main/java/org/springblade/appeal/entity/AppealMediation.java new file mode 100644 index 0000000..fe6434d --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/AppealMediation.java @@ -0,0 +1,87 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import java.util.Date; + +/** + * 诉求调解表 + * @author Chill + */ + +@Data +@TableName("mp_appeal_mediation") +@EqualsAndHashCode(callSuper = true) +public class AppealMediation extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 诉求id + */ + private Long appealId; + /** + * 诉求登记Id + */ + private Long appealRegId; + /** + * 接谈时间 + */ + private Date talkingTime; + /** + * 接谈记录 + */ + private String talkingHis; + /** + * 上访人意见和态度 + */ + private String attitude; + /** + * 接谈意见 + */ + private String talkingAdvice; + /** + * 责任单位id列表, 以逗号分割 + */ + private String dutyDeptIds; + /** + * 抄送单位id列表, 以逗号分割 + */ + private String copyDeptIds; + /** + * 反馈时限 + */ + private Date feedbackDeadline; + /** + * 办结时限 + */ + private Date finishDeadline; + /** + * 备注 + */ + private String remark; + /** + * 提交时间 + */ + private Date submitTime; + +} diff --git a/src/main/java/org/springblade/appeal/entity/AppealMediationFile.java b/src/main/java/org/springblade/appeal/entity/AppealMediationFile.java new file mode 100644 index 0000000..a369e62 --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/AppealMediationFile.java @@ -0,0 +1,55 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import java.util.Date; + +/** + * 调解附件表 + * @author Chill + */ + +@Data +@TableName("mp_appeal_mediation_file") +@EqualsAndHashCode(callSuper = true) +public class AppealMediationFile extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 诉求id + */ + private Long appealId; + /** + * 诉求登记Id + */ + private Long appealRegId; + /** + * 调解记录id + */ + private Long mediationId; + /** + * 文件地址 + */ + private String fileAddr; + +} diff --git a/src/main/java/org/springblade/appeal/entity/AppealReg.java b/src/main/java/org/springblade/appeal/entity/AppealReg.java new file mode 100644 index 0000000..0a87cd7 --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/AppealReg.java @@ -0,0 +1,75 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import java.util.Date; + +/** + * 诉求登记表 + * @author Chill + */ + +@Data +@TableName("mp_appeal_reg") +@EqualsAndHashCode(callSuper = true) +public class AppealReg extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 诉求id + */ + private Long appealId; + /** + * 来访人数 + */ + private Integer personNum; + /** + * 何单位处理过-单位id + */ + private String disposeDept; + /** + * 何单位处理过-单位名称 + */ + private String disposeDeptName; + /** + * 基层协议 + */ + private String protocol; + /** + * 基层处理意见 + */ + private String opinion; + /** + * 部门复查意见 + */ + private String reviewOpinion; + /** + * 法律文书 + */ + private String legalPaper; + /** + * 登记时间(来访时间) + */ + private Date regTime; + +} diff --git a/src/main/java/org/springblade/appeal/entity/AppealVisitor.java b/src/main/java/org/springblade/appeal/entity/AppealVisitor.java new file mode 100644 index 0000000..5885508 --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/AppealVisitor.java @@ -0,0 +1,75 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +import java.util.Date; + +/** + * 诉求调解表 + * @author Chill + */ + +@Data +@TableName("mp_appeal_visitor") +@EqualsAndHashCode(callSuper = true) +public class AppealVisitor extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 诉求id + */ + private Long appealId; + /** + * 诉求登记Id + */ + private Long appealRegId; + /** + * 姓名 + */ + private String username; + /** + * 性别 + */ + private String gender; + /** + * 年龄 + */ + private Integer age; + /** + * 身份证号 + */ + private String cardno; + /** + * 住址 + */ + private String address; + /** + * 现住址 + */ + private String addressNow; + /** + * 联系电话 + */ + private String phone; + +} diff --git a/src/main/java/org/springblade/appeal/entity/ServerWindowsDispute.java b/src/main/java/org/springblade/appeal/entity/ServerWindowsDispute.java new file mode 100644 index 0000000..ebe42bd --- /dev/null +++ b/src/main/java/org/springblade/appeal/entity/ServerWindowsDispute.java @@ -0,0 +1,45 @@ +/* + * 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.entity; + +import com.baomidou.mybatisplus.annotation.TableName; +import lombok.Data; +import lombok.EqualsAndHashCode; +import org.springblade.core.tenant.mp.TenantEntity; + +/** + * 服务窗口-纠纷关联表 + * @author Chill + */ + +@Data +@TableName("mp_server_windows_dispute") +@EqualsAndHashCode(callSuper = true) +public class ServerWindowsDispute extends TenantEntity { + + private static final long serialVersionUID = 1L; + + /** + * 诉求id + */ + private Long swId; + /** + * 诉求登记Id + */ + private Long disputeId; + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMapper.java b/src/main/java/org/springblade/appeal/mapper/AppealMapper.java new file mode 100644 index 0000000..ae2f8a3 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMapper.java @@ -0,0 +1,30 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.Appeal; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface AppealMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMapper.xml b/src/main/java/org/springblade/appeal/mapper/AppealMapper.xml new file mode 100644 index 0000000..43f1c51 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.java b/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.java new file mode 100644 index 0000000..61e8aa7 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.java @@ -0,0 +1,30 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.AppealMediationFile; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface AppealMediationFileMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.xml b/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.xml new file mode 100644 index 0000000..85c1bfb --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.java b/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.java new file mode 100644 index 0000000..eab4762 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.java @@ -0,0 +1,30 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.AppealMediation; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface AppealMediationMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.xml b/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.xml new file mode 100644 index 0000000..768e20d --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.java b/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.java new file mode 100644 index 0000000..8fa6d3d --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.java @@ -0,0 +1,30 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.AppealReg; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface AppealRegMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.xml b/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.xml new file mode 100644 index 0000000..e13ebbc --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealRegMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.java b/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.java new file mode 100644 index 0000000..2fff151 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.java @@ -0,0 +1,31 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.Appeal; +import org.springblade.appeal.entity.AppealVisitor; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface AppealVisitorMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.xml b/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.xml new file mode 100644 index 0000000..cee6b51 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.java b/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.java new file mode 100644 index 0000000..52ca059 --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.java @@ -0,0 +1,30 @@ +/* + * 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.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.springblade.appeal.entity.ServerWindowsDispute; + +/** + * Mapper 接口 + * + * @author Chill + */ +public interface ServerWindowsDisputeMapper extends BaseMapper { + + +} diff --git a/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.xml b/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.xml new file mode 100644 index 0000000..a9d708f --- /dev/null +++ b/src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/java/org/springblade/appeal/service/IAppealMediationFileService.java b/src/main/java/org/springblade/appeal/service/IAppealMediationFileService.java new file mode 100644 index 0000000..1faa55b --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IAppealMediationFileService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.AppealMediationFile; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IAppealMediationFileService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/IAppealMediationService.java b/src/main/java/org/springblade/appeal/service/IAppealMediationService.java new file mode 100644 index 0000000..27a4bbc --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IAppealMediationService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.AppealMediation; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IAppealMediationService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/IAppealRegService.java b/src/main/java/org/springblade/appeal/service/IAppealRegService.java new file mode 100644 index 0000000..eef069f --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IAppealRegService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.AppealReg; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IAppealRegService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/IAppealService.java b/src/main/java/org/springblade/appeal/service/IAppealService.java new file mode 100644 index 0000000..c82b1f5 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IAppealService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.Appeal; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IAppealService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/IAppealVisitorService.java b/src/main/java/org/springblade/appeal/service/IAppealVisitorService.java new file mode 100644 index 0000000..1681706 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IAppealVisitorService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.AppealVisitor; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IAppealVisitorService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/IServerWindowsDisputeService.java b/src/main/java/org/springblade/appeal/service/IServerWindowsDisputeService.java new file mode 100644 index 0000000..4d29d94 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/IServerWindowsDisputeService.java @@ -0,0 +1,29 @@ +/* + * 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.service; + +import org.springblade.appeal.entity.ServerWindowsDispute; +import org.springblade.core.mp.base.BaseService; + +/** + * 服务类 + * + * @author BladeX + */ +public interface IServerWindowsDisputeService extends BaseService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/AppealMediationFileServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/AppealMediationFileServiceImpl.java new file mode 100644 index 0000000..740c909 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/AppealMediationFileServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.AppealMediationFile; +import org.springblade.appeal.mapper.AppealMediationFileMapper; +import org.springblade.appeal.service.IAppealMediationFileService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class AppealMediationFileServiceImpl extends BaseServiceImpl implements IAppealMediationFileService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/AppealMediationServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/AppealMediationServiceImpl.java new file mode 100644 index 0000000..4c33e95 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/AppealMediationServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.AppealMediation; +import org.springblade.appeal.mapper.AppealMediationMapper; +import org.springblade.appeal.service.IAppealMediationService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class AppealMediationServiceImpl extends BaseServiceImpl implements IAppealMediationService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/AppealRegServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/AppealRegServiceImpl.java new file mode 100644 index 0000000..16b1392 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/AppealRegServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.AppealReg; +import org.springblade.appeal.mapper.AppealRegMapper; +import org.springblade.appeal.service.IAppealRegService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class AppealRegServiceImpl extends BaseServiceImpl implements IAppealRegService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/AppealServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/AppealServiceImpl.java new file mode 100644 index 0000000..d23f486 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/AppealServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.Appeal; +import org.springblade.appeal.mapper.AppealMapper; +import org.springblade.appeal.service.IAppealService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class AppealServiceImpl extends BaseServiceImpl implements IAppealService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/AppealVisitorServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/AppealVisitorServiceImpl.java new file mode 100644 index 0000000..f032d08 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/AppealVisitorServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.AppealVisitor; +import org.springblade.appeal.mapper.AppealVisitorMapper; +import org.springblade.appeal.service.IAppealVisitorService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class AppealVisitorServiceImpl extends BaseServiceImpl implements IAppealVisitorService { + +} diff --git a/src/main/java/org/springblade/appeal/service/impl/ServerWindowsDisputeServiceImpl.java b/src/main/java/org/springblade/appeal/service/impl/ServerWindowsDisputeServiceImpl.java new file mode 100644 index 0000000..4256e72 --- /dev/null +++ b/src/main/java/org/springblade/appeal/service/impl/ServerWindowsDisputeServiceImpl.java @@ -0,0 +1,33 @@ +/* + * 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.service.impl; + +import org.springblade.appeal.entity.ServerWindowsDispute; +import org.springblade.appeal.mapper.ServerWindowsDisputeMapper; +import org.springblade.appeal.service.IServerWindowsDisputeService; +import org.springblade.core.mp.base.BaseServiceImpl; +import org.springframework.stereotype.Service; + +/** + * 服务实现类 + * + * @author BladeX + */ +@Service +public class ServerWindowsDisputeServiceImpl extends BaseServiceImpl implements IServerWindowsDisputeService { + +}