实体类创建

master
litao 3 years ago
parent 27a8589278
commit 28fcf2cf3d
  1. 38
      src/main/java/org/springblade/appeal/controller/AppealController.java
  2. 39
      src/main/java/org/springblade/appeal/controller/AppealMediationController.java
  3. 39
      src/main/java/org/springblade/appeal/controller/AppealMediationFileController.java
  4. 39
      src/main/java/org/springblade/appeal/controller/AppealRegController.java
  5. 39
      src/main/java/org/springblade/appeal/controller/AppealVisitorController.java
  6. 105
      src/main/java/org/springblade/appeal/controller/LargeScreenController.java
  7. 39
      src/main/java/org/springblade/appeal/controller/ServerWindowsDisputeController.java
  8. 79
      src/main/java/org/springblade/appeal/entity/Appeal.java
  9. 87
      src/main/java/org/springblade/appeal/entity/AppealMediation.java
  10. 55
      src/main/java/org/springblade/appeal/entity/AppealMediationFile.java
  11. 75
      src/main/java/org/springblade/appeal/entity/AppealReg.java
  12. 75
      src/main/java/org/springblade/appeal/entity/AppealVisitor.java
  13. 45
      src/main/java/org/springblade/appeal/entity/ServerWindowsDispute.java
  14. 30
      src/main/java/org/springblade/appeal/mapper/AppealMapper.java
  15. 5
      src/main/java/org/springblade/appeal/mapper/AppealMapper.xml
  16. 30
      src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.java
  17. 5
      src/main/java/org/springblade/appeal/mapper/AppealMediationFileMapper.xml
  18. 30
      src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.java
  19. 5
      src/main/java/org/springblade/appeal/mapper/AppealMediationMapper.xml
  20. 30
      src/main/java/org/springblade/appeal/mapper/AppealRegMapper.java
  21. 5
      src/main/java/org/springblade/appeal/mapper/AppealRegMapper.xml
  22. 31
      src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.java
  23. 5
      src/main/java/org/springblade/appeal/mapper/AppealVisitorMapper.xml
  24. 30
      src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.java
  25. 5
      src/main/java/org/springblade/appeal/mapper/ServerWindowsDisputeMapper.xml
  26. 29
      src/main/java/org/springblade/appeal/service/IAppealMediationFileService.java
  27. 29
      src/main/java/org/springblade/appeal/service/IAppealMediationService.java
  28. 29
      src/main/java/org/springblade/appeal/service/IAppealRegService.java
  29. 29
      src/main/java/org/springblade/appeal/service/IAppealService.java
  30. 29
      src/main/java/org/springblade/appeal/service/IAppealVisitorService.java
  31. 29
      src/main/java/org/springblade/appeal/service/IServerWindowsDisputeService.java
  32. 33
      src/main/java/org/springblade/appeal/service/impl/AppealMediationFileServiceImpl.java
  33. 33
      src/main/java/org/springblade/appeal/service/impl/AppealMediationServiceImpl.java
  34. 33
      src/main/java/org/springblade/appeal/service/impl/AppealRegServiceImpl.java
  35. 33
      src/main/java/org/springblade/appeal/service/impl/AppealServiceImpl.java
  36. 33
      src/main/java/org/springblade/appeal/service/impl/AppealVisitorServiceImpl.java
  37. 33
      src/main/java/org/springblade/appeal/service/impl/ServerWindowsDisputeServiceImpl.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 {
}

@ -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 {
}

@ -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 {
}

@ -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 {
}

@ -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 {
}

@ -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);
}
}

@ -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 {
}

@ -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;
}

@ -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;
}

@ -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;
}

@ -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;
}

@ -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;
}

@ -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;
}

@ -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<Appeal> {
}

@ -0,0 +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>

@ -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<AppealMediationFile> {
}

@ -0,0 +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>

@ -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<AppealMediation> {
}

@ -0,0 +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>

@ -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<AppealReg> {
}

@ -0,0 +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>

@ -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<AppealVisitor> {
}

@ -0,0 +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>

@ -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<ServerWindowsDispute> {
}

@ -0,0 +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>

@ -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<AppealMediationFile> {
}

@ -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<AppealMediation> {
}

@ -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<AppealReg> {
}

@ -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<Appeal> {
}

@ -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<AppealVisitor> {
}

@ -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<ServerWindowsDispute> {
}

@ -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<AppealMediationFileMapper, AppealMediationFile> implements IAppealMediationFileService {
}

@ -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<AppealMediationMapper, AppealMediation> implements IAppealMediationService {
}

@ -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<AppealRegMapper, AppealReg> implements IAppealRegService {
}

@ -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<AppealMapper, Appeal> implements IAppealService {
}

@ -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<AppealVisitorMapper, AppealVisitor> implements IAppealVisitorService {
}

@ -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<ServerWindowsDisputeMapper, ServerWindowsDispute> implements IServerWindowsDisputeService {
}
Loading…
Cancel
Save