Browse Source

【对接库代码生成】

master
wangxianzhang 3 years ago
parent
commit
422b6b05ce
  1. 31
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/EventreportPingyinController.java
  2. 31
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridInfoPingyinController.java
  3. 30
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridstaffInfoPingyinController.java
  4. 32
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridstaffWorkInfoPingyinController.java
  5. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/EventreportPingyinDao.java
  6. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridInfoPingyinDao.java
  7. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridstaffInfoPingyinDao.java
  8. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridstaffWorkInfoPingyinDao.java
  9. 195
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/EventreportPingyinEntity.java
  10. 105
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridInfoPingyinEntity.java
  11. 159
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridstaffInfoPingyinEntity.java
  12. 89
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridstaffWorkInfoPingyinEntity.java
  13. 14
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/EventreportPingyinService.java
  14. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridInfoPingyinService.java
  15. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridstaffInfoPingyinService.java
  16. 16
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridstaffWorkInfoPingyinService.java
  17. 19
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/EventreportPingyinServiceImpl.java
  18. 19
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridInfoPingyinServiceImpl.java
  19. 18
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridstaffInfoPingyinServiceImpl.java
  20. 17
      epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridstaffWorkInfoPingyinServiceImpl.java
  21. 44
      epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/EventreportPingyinDao.xml
  22. 26
      epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridInfoPingyinDao.xml
  23. 37
      epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridstaffInfoPingyinDao.xml
  24. 23
      epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridstaffWorkInfoPingyinDao.xml

31
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/EventreportPingyinController.java

@ -0,0 +1,31 @@
package com.epmet.opendata.controller;
import com.epmet.commons.tools.aop.NoRepeatSubmit;
import com.epmet.commons.tools.utils.ExcelUtils;
import com.epmet.commons.tools.utils.Result;
import com.epmet.commons.tools.validator.AssertUtils;
import com.epmet.commons.tools.validator.ValidatorUtils;
import com.epmet.commons.tools.validator.group.AddGroup;
import com.epmet.commons.tools.validator.group.UpdateGroup;
import com.epmet.commons.tools.validator.group.DefaultGroup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.Map;
/**
* 平阴区事件上报中间表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@RestController
@RequestMapping("eventreportPingyin")
public class EventreportPingyinController {
}

31
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridInfoPingyinController.java

@ -0,0 +1,31 @@
package com.epmet.opendata.controller;
import com.epmet.commons.tools.aop.NoRepeatSubmit;
import com.epmet.commons.tools.page.PageData;
import com.epmet.commons.tools.utils.ExcelUtils;
import com.epmet.commons.tools.utils.Result;
import com.epmet.commons.tools.validator.AssertUtils;
import com.epmet.commons.tools.validator.ValidatorUtils;
import com.epmet.commons.tools.validator.group.AddGroup;
import com.epmet.commons.tools.validator.group.UpdateGroup;
import com.epmet.commons.tools.validator.group.DefaultGroup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.Map;
/**
* 平阴区网格表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@RestController
@RequestMapping("gridInfoPingyin")
public class GridInfoPingyinController {
}

30
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridstaffInfoPingyinController.java

@ -0,0 +1,30 @@
package com.epmet.opendata.controller;
import com.epmet.commons.tools.aop.NoRepeatSubmit;
import com.epmet.commons.tools.utils.ExcelUtils;
import com.epmet.commons.tools.utils.Result;
import com.epmet.commons.tools.validator.AssertUtils;
import com.epmet.commons.tools.validator.ValidatorUtils;
import com.epmet.commons.tools.validator.group.AddGroup;
import com.epmet.commons.tools.validator.group.UpdateGroup;
import com.epmet.commons.tools.validator.group.DefaultGroup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.Map;
/**
* 平阴区网格员基础信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@RestController
@RequestMapping("gridstaffInfoPingyin")
public class GridstaffInfoPingyinController {
}

32
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/controller/GridstaffWorkInfoPingyinController.java

@ -0,0 +1,32 @@
package com.epmet.opendata.controller;
import com.epmet.commons.tools.aop.NoRepeatSubmit;
import com.epmet.commons.tools.page.PageData;
import com.epmet.commons.tools.utils.ExcelUtils;
import com.epmet.commons.tools.utils.Result;
import com.epmet.commons.tools.validator.AssertUtils;
import com.epmet.commons.tools.validator.ValidatorUtils;
import com.epmet.commons.tools.validator.group.AddGroup;
import com.epmet.commons.tools.validator.group.UpdateGroup;
import com.epmet.commons.tools.validator.group.DefaultGroup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.List;
import java.util.Map;
/**
* 平阴区网格员例行工作信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@RestController
@RequestMapping("gridstaffWorkInfoPingyin")
public class GridstaffWorkInfoPingyinController {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/EventreportPingyinDao.java

@ -0,0 +1,16 @@
package com.epmet.opendata.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.opendata.entity.EventreportPingyinEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 平阴区事件上报中间表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Mapper
public interface EventreportPingyinDao extends BaseDao<EventreportPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridInfoPingyinDao.java

@ -0,0 +1,16 @@
package com.epmet.opendata.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.opendata.entity.GridInfoPingyinEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 平阴区网格表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Mapper
public interface GridInfoPingyinDao extends BaseDao<GridInfoPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridstaffInfoPingyinDao.java

@ -0,0 +1,16 @@
package com.epmet.opendata.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.opendata.entity.GridstaffInfoPingyinEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 平阴区网格员基础信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Mapper
public interface GridstaffInfoPingyinDao extends BaseDao<GridstaffInfoPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/dao/GridstaffWorkInfoPingyinDao.java

@ -0,0 +1,16 @@
package com.epmet.opendata.dao;
import com.epmet.commons.mybatis.dao.BaseDao;
import com.epmet.opendata.entity.GridstaffWorkInfoPingyinEntity;
import org.apache.ibatis.annotations.Mapper;
/**
* 平阴区网格员例行工作信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Mapper
public interface GridstaffWorkInfoPingyinDao extends BaseDao<GridstaffWorkInfoPingyinEntity> {
}

195
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/EventreportPingyinEntity.java

@ -0,0 +1,195 @@
package com.epmet.opendata.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
import java.util.Date;
/**
* 平阴区事件上报中间表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("eventreport_pingyin")
public class EventreportPingyinEntity {
private static final long serialVersionUID = 1L;
/**
* 数据库主键自增字段请勿指定
*/
private Long id;
/**
* 上报区县代码参照6位行政区划代码
*/
private String qxBm;
/**
* 上报区县名称
*/
private String qxMc;
/**
* 网格编码,参照山东省社会治理网格化智能工作平台数据标准
*/
private String gridCode;
/**
* 网格名称
*/
private String gridName;
/**
* 事件编号可以使用区县系统中的事件唯一识别码
*/
private String eventCode;
/**
* 事件名称
*/
private String eventName;
/**
* 事件类别,参照山东省社会治理网格化智能工作平台数据标准10.19
*/
private String eventCategory;
/**
* 上报网格员姓名
*/
private String gridUserName;
/**
* 上报网格员的身份证号码
*/
private String gridUserCardid;
/**
* 事件上报时间
*/
private Date reportTime;
/**
* 事件发生时间
*/
private Date happenTime;
/**
* 事件发生地点描述
*/
private String happenPlace;
/**
* 事件简述详细一些文字数量不少于10字
*/
private String eventDescription;
/**
* 事件办结方式符合标准10.20
*/
private String waysOfResolving;
/**
* 是否办结填写YNY N
*/
private String successfulOrNo;
/**
* 办结层级符合标准10.21
*/
private String completeLevel;
/**
* 办结时间办结后填写
*/
private Date completeTime;
/**
* 事件发生位置经度wgs84坐标系请勿用火星坐标系不得跑出辖区
*/
private BigDecimal lng;
/**
* 事件发生位置纬度wgs84坐标系请勿用火星坐标系不得跑出辖区
*/
private BigDecimal lat;
/**
* 事件主要当事人姓名
*/
private String name;
/**
* 事件涉及人数
*/
private Integer numberInvolved;
/**
* 事件涉及单位名称
*/
private String relatedUnites;
/**
* 出租人姓名
*/
private String lessorName;
/**
* 出租屋巡查结果符合标准10.24
*/
private String rentingResult;
/**
* 重点场所类别符合标准10.25
*/
private String keyAreaType;
/**
* 宗教活动规模符合标准10.26
*/
private String religionScale;
/**
* 宗教类别符合标准10.27
*/
private String religionType;
/**
* 重点场所是否变动填写YNY N
*/
private String isKeyareaState;
/**
* 重点人员是否在当地填写YNY N
*/
private String isKeypeopleLocate;
/**
* 重点人员现状描述
*/
private String keypeopleStatus;
/**
* 例行工作编辑插入更新时间,县市区填写
*/
private Date updateTime;
/**
* 事件是否删除YN
*/
private String isDel;
/**
* 入库时间自动生成请勿设置
*/
private Date recoredInsertTime;
}

105
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridInfoPingyinEntity.java

@ -0,0 +1,105 @@
package com.epmet.opendata.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.math.BigDecimal;
import java.util.Date;
/**
* 平阴区网格表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("grid_info_pingyin")
public class GridInfoPingyinEntity {
private static final long serialVersionUID = 1L;
/**
* 数据库主键自增字段请勿指定
*/
private Long id;
/**
* 上报区县代码参照6位行政区划代码
*/
private String qxBm;
/**
* 上报区县名称
*/
private String qxMc;
/**
* 网格编码参照标准
*/
private String gridCode;
/**
* 网格名称
*/
private String gridName;
/**
* 网格层级应符合10.1组织层级所有层级上报
*/
private Integer gridLevel;
/**
* 专属网格类型应符合10.28专属网格类型
*/
private String gridType;
/**
* 网格内人口规模如果为农村和城市网格字段必填应符合10.29.网格内人口规模
*/
private String populationSize;
/**
* 是否成立网格党支部或网格党小组YN
*/
private String isPartyBranch;
/**
* 网格党组织类型是否成立党支部或党小组为是此项必填应符合10.37网格党组织类型
*/
private String partyBranchType;
/**
* 网格中心点的经度
*/
private BigDecimal lng;
/**
* 网格中心点纬度
*/
private BigDecimal lat;
/**
* 网格颜色 #000000
*/
private String gridColor;
/**
* 网格信息编辑插入更新时间,县市区填写
*/
private Date updateTime;
/**
* 此网格是否删除YN
*/
private String isDel;
/**
* 入库时间自动生成请勿设置
*/
private Date recoredInsertTime;
}

159
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridstaffInfoPingyinEntity.java

@ -0,0 +1,159 @@
package com.epmet.opendata.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
/**
* 平阴区网格员基础信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("gridstaff_info_pingyin")
public class GridstaffInfoPingyinEntity {
private static final long serialVersionUID = 1L;
/**
* 数据库主键自增字段请勿指定
*/
private Long id;
/**
* 上报区县代码参照6位行政区划代码
*/
private String qxBm;
/**
* 上报区县名称
*/
private String qxMc;
/**
* 区县系统中的网格员唯一编码
*/
private String gridUserId;
/**
* 网格编码
*/
private String gridCode;
/**
* 网格名称
*/
private String gridName;
/**
* 网格员姓名
*/
private String nickName;
/**
* 网格员身份证号码
*/
private String cardNum;
/**
* 网格员类型符合标准10.3
*/
private String userType;
/**
* 网格员手机号
*/
private String phonenumber;
/**
* 网格员性别应符合10.31中性别,不要有 其他
*/
private String sex;
/**
* 网格员民族应符合10.32中民族
*/
private String nation;
/**
* 网格员政治面貌符合GB/T 4762
*/
private String paerty;
/**
* 网格员出生日期
*/
private Date birthday;
/**
* 网格员学历符合GB/T4658博士研究生会进行预警
*/
private String education;
/**
* 入职时间格式为YYYY-MM-DD
*/
private Date entryDate;
/**
* 是否离职格式为YN
*/
private String isLeave;
/**
* 离职时间格式为YYYY-MM-DD
*/
private Date leaveDate;
/**
* 网格员年收入含福利补贴和保险等应符合10.30中的网格员年收入专职低于1w5兼职大于3w会预警
*/
private String income;
/**
* 是否社区两委委员,YN
*/
private String isCommittee;
/**
* 是否社区工作者,YN
*/
private String isCommunityWorkers;
/**
* 是否社会工作者,YN
*/
private String isSocialWorker;
/**
* 是否村民小组长,YN
*/
private String isVillageLeader;
/**
* 是否警务助理,YN
*/
private String isPoliceAssistant;
/**
* 是否人民调解员,YN
*/
private String isMediator;
/**
* 网格员信息编辑插入更新时间,县市区填写
*/
private Date updateTime;
/**
* 入库时间自动生成请勿设置
*/
private Date recoredInsertTime;
}

89
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/entity/GridstaffWorkInfoPingyinEntity.java

@ -0,0 +1,89 @@
package com.epmet.opendata.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import com.epmet.commons.mybatis.entity.BaseEpmetEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
/**
* 平阴区网格员例行工作信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Data
@EqualsAndHashCode(callSuper=false)
@TableName("gridstaff_work_info_pingyin")
public class GridstaffWorkInfoPingyinEntity {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 上报区县代码参照6位行政区划代码
*/
private String qxBm;
/**
* 上报区县名称
*/
private String qxMc;
/**
* 网格编码
*/
private String gridCode;
/**
* 网格名称
*/
private String gridName;
/**
* 例行工作类型,应符合10.27中的例行工作类型
*/
private String workType;
/**
* 发生日期,格式为YYYY-MM-DD
*/
private Date happenTime;
/**
* 基础信息主键,出租房巡查重点场所巡查刑满释放人员社区矫正吸毒人员信访人员重点青少年和精神障碍者必填
*/
private Integer baseInfoId;
/**
* 有无变动异常,YN
*/
private String workResult;
/**
* 说明
*/
private String workContent;
/**
* 例行工作编辑插入更新时间,县市区填写
*/
private Date updateTime;
/**
* 例行工作是否删除YN
*/
private String isDel;
/**
* 入库时间自动生成请勿设置
*/
private Date recoredInsertTime;
}

14
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/EventreportPingyinService.java

@ -0,0 +1,14 @@
package com.epmet.opendata.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.opendata.entity.EventreportPingyinEntity;
/**
* 平阴区事件上报中间表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
public interface EventreportPingyinService extends BaseService<EventreportPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridInfoPingyinService.java

@ -0,0 +1,16 @@
package com.epmet.opendata.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.opendata.entity.GridInfoPingyinEntity;
import java.util.Map;
/**
* 平阴区网格表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
public interface GridInfoPingyinService extends BaseService<GridInfoPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridstaffInfoPingyinService.java

@ -0,0 +1,16 @@
package com.epmet.opendata.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.opendata.entity.GridstaffInfoPingyinEntity;
import java.util.Map;
/**
* 平阴区网格员基础信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
public interface GridstaffInfoPingyinService extends BaseService<GridstaffInfoPingyinEntity> {
}

16
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/GridstaffWorkInfoPingyinService.java

@ -0,0 +1,16 @@
package com.epmet.opendata.service;
import com.epmet.commons.mybatis.service.BaseService;
import com.epmet.opendata.entity.GridstaffWorkInfoPingyinEntity;
import java.util.Map;
/**
* 平阴区网格员例行工作信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
public interface GridstaffWorkInfoPingyinService extends BaseService<GridstaffWorkInfoPingyinEntity> {
}

19
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/EventreportPingyinServiceImpl.java

@ -0,0 +1,19 @@
package com.epmet.opendata.service.impl;
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl;
import com.epmet.opendata.dao.EventreportPingyinDao;
import com.epmet.opendata.entity.EventreportPingyinEntity;
import com.epmet.opendata.service.EventreportPingyinService;
import org.springframework.stereotype.Service;
/**
* 平阴区事件上报中间表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Service
public class EventreportPingyinServiceImpl extends BaseServiceImpl<EventreportPingyinDao, EventreportPingyinEntity> implements EventreportPingyinService {
}

19
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridInfoPingyinServiceImpl.java

@ -0,0 +1,19 @@
package com.epmet.opendata.service.impl;
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl;
import com.epmet.opendata.dao.GridInfoPingyinDao;
import com.epmet.opendata.entity.GridInfoPingyinEntity;
import com.epmet.opendata.service.GridInfoPingyinService;
import org.springframework.stereotype.Service;
/**
* 平阴区网格表
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Service
public class GridInfoPingyinServiceImpl extends BaseServiceImpl<GridInfoPingyinDao, GridInfoPingyinEntity> implements GridInfoPingyinService {
}

18
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridstaffInfoPingyinServiceImpl.java

@ -0,0 +1,18 @@
package com.epmet.opendata.service.impl;
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl;
import com.epmet.opendata.dao.GridstaffInfoPingyinDao;
import com.epmet.opendata.entity.GridstaffInfoPingyinEntity;
import com.epmet.opendata.service.GridstaffInfoPingyinService;
import org.springframework.stereotype.Service;
/**
* 平阴区网格员基础信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Service
public class GridstaffInfoPingyinServiceImpl extends BaseServiceImpl<GridstaffInfoPingyinDao, GridstaffInfoPingyinEntity> implements GridstaffInfoPingyinService {
}

17
epmet-module/open-data-worker/open-data-worker-server/src/main/java/com/epmet/opendata/service/impl/GridstaffWorkInfoPingyinServiceImpl.java

@ -0,0 +1,17 @@
package com.epmet.opendata.service.impl;
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl;
import com.epmet.opendata.dao.GridstaffWorkInfoPingyinDao;
import com.epmet.opendata.entity.GridstaffWorkInfoPingyinEntity;
import com.epmet.opendata.service.GridstaffWorkInfoPingyinService;
import org.springframework.stereotype.Service;
/**
* 平阴区网格员例行工作信息
*
* @author generator generator@elink-cn.com
* @since v1.0.0 2022-07-22
*/
@Service
public class GridstaffWorkInfoPingyinServiceImpl extends BaseServiceImpl<GridstaffWorkInfoPingyinDao, GridstaffWorkInfoPingyinEntity> implements GridstaffWorkInfoPingyinService {
}

44
epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/EventreportPingyinDao.xml

@ -0,0 +1,44 @@
<?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="com.epmet.opendata.dao.EventreportPingyinDao">
<resultMap type="com.epmet.opendata.entity.EventreportPingyinEntity" id="eventreportPingyinMap">
<result property="id" column="id"/>
<result property="qxBm" column="qx_bm"/>
<result property="qxMc" column="qx_mc"/>
<result property="gridCode" column="grid_code"/>
<result property="gridName" column="grid_name"/>
<result property="eventCode" column="event_code"/>
<result property="eventName" column="event_name"/>
<result property="eventCategory" column="event_category"/>
<result property="gridUserName" column="grid_user_name"/>
<result property="gridUserCardid" column="grid_user_cardid"/>
<result property="reportTime" column="report_time"/>
<result property="happenTime" column="happen_time"/>
<result property="happenPlace" column="happen_place"/>
<result property="eventDescription" column="event_description"/>
<result property="waysOfResolving" column="ways_of_resolving"/>
<result property="successfulOrNo" column="successful_or_no"/>
<result property="completeLevel" column="complete_level"/>
<result property="completeTime" column="complete_time"/>
<result property="lng" column="lng"/>
<result property="lat" column="lat"/>
<result property="name" column="name"/>
<result property="numberInvolved" column="number_involved"/>
<result property="relatedUnites" column="related_unites"/>
<result property="lessorName" column="lessor_name"/>
<result property="rentingResult" column="renting_result"/>
<result property="keyAreaType" column="key_area_type"/>
<result property="religionScale" column="religion_scale"/>
<result property="religionType" column="religion_type"/>
<result property="isKeyareaState" column="is_keyarea_state"/>
<result property="isKeypeopleLocate" column="is_keypeople_locate"/>
<result property="keypeopleStatus" column="keypeople_status"/>
<result property="updateTime" column="update_time"/>
<result property="isDel" column="is_del"/>
<result property="recoredInsertTime" column="recored_insert_time"/>
</resultMap>
</mapper>

26
epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridInfoPingyinDao.xml

@ -0,0 +1,26 @@
<?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="com.epmet.opendata.dao.GridInfoPingyinDao">
<resultMap type="com.epmet.opendata.entity.GridInfoPingyinEntity" id="gridInfoPingyinMap">
<result property="id" column="id"/>
<result property="qxBm" column="qx_bm"/>
<result property="qxMc" column="qx_mc"/>
<result property="gridCode" column="grid_code"/>
<result property="gridName" column="grid_name"/>
<result property="gridLevel" column="grid_level"/>
<result property="gridType" column="GRID_TYPE"/>
<result property="populationSize" column="POPULATION_SIZE"/>
<result property="isPartyBranch" column="IS_PARTY_BRANCH"/>
<result property="partyBranchType" column="PARTY_BRANCH_TYPE"/>
<result property="lng" column="lng"/>
<result property="lat" column="lat"/>
<result property="gridColor" column="grid_color"/>
<result property="updateTime" column="update_time"/>
<result property="isDel" column="is_del"/>
<result property="recoredInsertTime" column="recored_insert_time"/>
</resultMap>
</mapper>

37
epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridstaffInfoPingyinDao.xml

@ -0,0 +1,37 @@
<?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="com.epmet.opendata.dao.GridstaffInfoPingyinDao">
<resultMap type="com.epmet.opendata.entity.GridstaffInfoPingyinEntity" id="gridstaffInfoPingyinMap">
<result property="id" column="id"/>
<result property="qxBm" column="qx_bm"/>
<result property="qxMc" column="qx_mc"/>
<result property="gridUserId" column="grid_user_id"/>
<result property="gridCode" column="grid_code"/>
<result property="gridName" column="grid_name"/>
<result property="nickName" column="nick_name"/>
<result property="cardNum" column="card_num"/>
<result property="userType" column="user_type"/>
<result property="phonenumber" column="phonenumber"/>
<result property="sex" column="sex"/>
<result property="nation" column="nation"/>
<result property="paerty" column="paerty"/>
<result property="birthday" column="birthday"/>
<result property="education" column="education"/>
<result property="entryDate" column="ENTRY_DATE"/>
<result property="isLeave" column="IS_LEAVE"/>
<result property="leaveDate" column="LEAVE_DATE"/>
<result property="income" column="INCOME"/>
<result property="isCommittee" column="IS_COMMITTEE"/>
<result property="isCommunityWorkers" column="IS_COMMUNITY_WORKERS"/>
<result property="isSocialWorker" column="IS_SOCIAL_WORKER"/>
<result property="isVillageLeader" column="IS_VILLAGE_LEADER"/>
<result property="isPoliceAssistant" column="IS_POLICE_ASSISTANT"/>
<result property="isMediator" column="IS_MEDIATOR"/>
<result property="updateTime" column="update_time"/>
<result property="recoredInsertTime" column="recored_insert_time"/>
</resultMap>
</mapper>

23
epmet-module/open-data-worker/open-data-worker-server/src/main/resources/mapper/GridstaffWorkInfoPingyinDao.xml

@ -0,0 +1,23 @@
<?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="com.epmet.opendata.dao.GridstaffWorkInfoPingyinDao">
<resultMap type="com.epmet.opendata.entity.GridstaffWorkInfoPingyinEntity" id="gridstaffWorkInfoPingyinMap">
<result property="id" column="id"/>
<result property="qxBm" column="qx_bm"/>
<result property="qxMc" column="qx_mc"/>
<result property="gridCode" column="GRID_CODE"/>
<result property="gridName" column="GRID_NAME"/>
<result property="workType" column="WORK_TYPE"/>
<result property="happenTime" column="HAPPEN_TIME"/>
<result property="baseInfoId" column="BASE_INFO_ID"/>
<result property="workResult" column="WORK_RESULT"/>
<result property="workContent" column="WORK_CONTENT"/>
<result property="updateTime" column="update_time"/>
<result property="isDel" column="is_del"/>
<result property="recoredInsertTime" column="recored_insert_time"/>
</resultMap>
</mapper>
Loading…
Cancel
Save