24 changed files with 1001 additions and 0 deletions
@ -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 { |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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; |
||||
|
|
||||
|
/** |
||||
|
* 是否办结,填写Y、N(Y 是 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; |
||||
|
|
||||
|
/** |
||||
|
* 重点场所是否变动,填写Y、N(Y 是 N 否) |
||||
|
*/ |
||||
|
private String isKeyareaState; |
||||
|
|
||||
|
/** |
||||
|
* 重点人员是否在当地,填写Y、N(Y 是 N 否) |
||||
|
*/ |
||||
|
private String isKeypeopleLocate; |
||||
|
|
||||
|
/** |
||||
|
* 重点人员现状描述 |
||||
|
*/ |
||||
|
private String keypeopleStatus; |
||||
|
|
||||
|
/** |
||||
|
* 例行工作编辑插入、更新时间,县市区填写 |
||||
|
*/ |
||||
|
private Date updateTime; |
||||
|
|
||||
|
/** |
||||
|
* 事件是否删除,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isDel; |
||||
|
|
||||
|
/** |
||||
|
* 入库时间,自动生成,请勿设置 |
||||
|
*/ |
||||
|
private Date recoredInsertTime; |
||||
|
|
||||
|
} |
@ -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; |
||||
|
|
||||
|
/** |
||||
|
* 是否成立网格党支部或网格党小组,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isPartyBranch; |
||||
|
|
||||
|
/** |
||||
|
* 网格党组织类型,是否成立党支部或党小组为是,此项必填。应符合10.37网格党组织类型。 |
||||
|
*/ |
||||
|
private String partyBranchType; |
||||
|
|
||||
|
/** |
||||
|
* 网格中心点的经度 |
||||
|
*/ |
||||
|
private BigDecimal lng; |
||||
|
|
||||
|
/** |
||||
|
* 网格中心点纬度 |
||||
|
*/ |
||||
|
private BigDecimal lat; |
||||
|
|
||||
|
/** |
||||
|
* 网格颜色,如 #000000 |
||||
|
*/ |
||||
|
private String gridColor; |
||||
|
|
||||
|
/** |
||||
|
* 网格信息编辑插入、更新时间,,县市区填写 |
||||
|
*/ |
||||
|
private Date updateTime; |
||||
|
|
||||
|
/** |
||||
|
* 此网格是否删除,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isDel; |
||||
|
|
||||
|
/** |
||||
|
* 入库时间,自动生成,请勿设置 |
||||
|
*/ |
||||
|
private Date recoredInsertTime; |
||||
|
|
||||
|
} |
@ -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; |
||||
|
|
||||
|
/** |
||||
|
* 是否离职,格式为Y:是、N:否 |
||||
|
*/ |
||||
|
private String isLeave; |
||||
|
|
||||
|
/** |
||||
|
* 离职时间,格式为“YYYY-MM-DD” |
||||
|
*/ |
||||
|
private Date leaveDate; |
||||
|
|
||||
|
/** |
||||
|
* 网格员年收入,含福利、补贴和保险等,应符合10.30中的网格员年收入,专职低于1w5、兼职大于3w会预警 |
||||
|
*/ |
||||
|
private String income; |
||||
|
|
||||
|
/** |
||||
|
* 是否社区(村)两委委员,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isCommittee; |
||||
|
|
||||
|
/** |
||||
|
* 是否社区工作者,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isCommunityWorkers; |
||||
|
|
||||
|
/** |
||||
|
* 是否社会工作者,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isSocialWorker; |
||||
|
|
||||
|
/** |
||||
|
* 是否村(居)民小组长,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isVillageLeader; |
||||
|
|
||||
|
/** |
||||
|
* 是否警务助理,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isPoliceAssistant; |
||||
|
|
||||
|
/** |
||||
|
* 是否人民调解员,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isMediator; |
||||
|
|
||||
|
/** |
||||
|
* 网格员信息编辑插入、更新时间,,县市区填写 |
||||
|
*/ |
||||
|
private Date updateTime; |
||||
|
|
||||
|
/** |
||||
|
* 入库时间,自动生成,请勿设置 |
||||
|
*/ |
||||
|
private Date recoredInsertTime; |
||||
|
|
||||
|
} |
@ -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; |
||||
|
|
||||
|
/** |
||||
|
* 有无变动(异常),Y:是、N:否 |
||||
|
*/ |
||||
|
private String workResult; |
||||
|
|
||||
|
/** |
||||
|
* 说明 |
||||
|
*/ |
||||
|
private String workContent; |
||||
|
|
||||
|
/** |
||||
|
* 例行工作编辑插入、更新时间,,县市区填写 |
||||
|
*/ |
||||
|
private Date updateTime; |
||||
|
|
||||
|
/** |
||||
|
* 例行工作是否删除,Y:是、N:否 |
||||
|
*/ |
||||
|
private String isDel; |
||||
|
|
||||
|
/** |
||||
|
* 入库时间,自动生成,请勿设置 |
||||
|
*/ |
||||
|
private Date recoredInsertTime; |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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> { |
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
} |
@ -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 { |
||||
|
|
||||
|
} |
@ -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 { |
||||
|
} |
@ -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> |
@ -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> |
@ -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> |
@ -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…
Reference in new issue