122 changed files with 1443 additions and 1970 deletions
@ -0,0 +1,96 @@ |
|||||
|
/** |
||||
|
* Copyright (c) 2018 人人开源 All rights reserved. |
||||
|
* <p> |
||||
|
* https://www.renren.io
|
||||
|
* <p> |
||||
|
* 版权所有,侵权必究! |
||||
|
*/ |
||||
|
|
||||
|
package com.epmet.commons.tools.exception; |
||||
|
|
||||
|
|
||||
|
import com.epmet.commons.tools.constant.StrConstant; |
||||
|
import com.epmet.commons.tools.utils.MessageUtils; |
||||
|
import org.apache.commons.lang3.StringUtils; |
||||
|
|
||||
|
/** |
||||
|
* Epmet产品 自定义异常 |
||||
|
* |
||||
|
* @author Mark sunlightcs@gmail.com |
||||
|
* @since 1.0.0 |
||||
|
*/ |
||||
|
public class EpmetException extends RuntimeException { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
/** |
||||
|
* desc:错误码 |
||||
|
*/ |
||||
|
protected int code; |
||||
|
/** |
||||
|
* 显示给客户的消息 |
||||
|
*/ |
||||
|
protected String msg; |
||||
|
/** |
||||
|
* 内部消息,用于服务之间传递错误信息,排错用 |
||||
|
*/ |
||||
|
protected String internalMsg; |
||||
|
|
||||
|
/** |
||||
|
* desc:指定错误码异常 外部异常内容为错误码对应的异常 |
||||
|
* @param code |
||||
|
*/ |
||||
|
public EpmetException(int code) { |
||||
|
this(code, StrConstant.EPMETY_STR); |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* desc:指定内部错误消息的异常 外部异常内容为错误码对应的异常 |
||||
|
* @param code |
||||
|
* @param internalMsg |
||||
|
*/ |
||||
|
public EpmetException(int code, String internalMsg) { |
||||
|
super(internalMsg); |
||||
|
this.code = code; |
||||
|
if (StringUtils.isBlank(internalMsg)) { |
||||
|
this.internalMsg = EpmetErrorCode.getMsg(code); |
||||
|
if (StringUtils.isBlank(this.internalMsg)) { |
||||
|
this.internalMsg = MessageUtils.getMessage(code, internalMsg); |
||||
|
} |
||||
|
} else { |
||||
|
this.internalMsg = internalMsg; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* desc:指定错误码 内外部错误消息异常 |
||||
|
* @param code |
||||
|
* @param internalMsg |
||||
|
* @param externalMsg |
||||
|
*/ |
||||
|
public EpmetException(int code, String internalMsg, String externalMsg) { |
||||
|
this(code, internalMsg); |
||||
|
this.msg = externalMsg; |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* desc:指定内部消息异常 外部错误码及消息为8000,服务器开小差 |
||||
|
* @param internalMsg |
||||
|
*/ |
||||
|
public EpmetException(String internalMsg) { |
||||
|
super(internalMsg); |
||||
|
this.code = EpmetErrorCode.SERVER_ERROR.getCode(); |
||||
|
this.internalMsg = internalMsg; |
||||
|
} |
||||
|
|
||||
|
public int getCode() { |
||||
|
return code; |
||||
|
} |
||||
|
|
||||
|
public String getMsg() { |
||||
|
return msg; |
||||
|
} |
||||
|
|
||||
|
public String getInternalMsg() { |
||||
|
return internalMsg; |
||||
|
} |
||||
|
} |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,136 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
package com.epmet.opendata.dto; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
import java.util.Date; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
|
|
||||
/** |
|
||||
* 网格基础信息表 |
|
||||
* |
|
||||
* @author generator generator@elink-cn.com |
|
||||
* @since v1.0.0 2021-10-15 |
|
||||
*/ |
|
||||
@Data |
|
||||
public class BaseGridInfoDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 1L; |
|
||||
|
|
||||
/** |
|
||||
* 主键 |
|
||||
*/ |
|
||||
private String id; |
|
||||
|
|
||||
/** |
|
||||
* 客户Id |
|
||||
*/ |
|
||||
private String customerId; |
|
||||
|
|
||||
/** |
|
||||
* 组织/网格Id |
|
||||
*/ |
|
||||
private String orgId; |
|
||||
|
|
||||
/** |
|
||||
* 网格编码 |
|
||||
*/ |
|
||||
private String code; |
|
||||
|
|
||||
/** |
|
||||
* 网格名称 |
|
||||
*/ |
|
||||
private String gridName; |
|
||||
|
|
||||
/** |
|
||||
* 网格层级[07:网格] |
|
||||
*/ |
|
||||
private String gridLevel; |
|
||||
|
|
||||
/** |
|
||||
* 专属网格类型[01:党政机关; 02:医院; 03:学校; 04:企业; 05:园区; 06:商圈; 07:市场; 08:景区; |
|
||||
*/ |
|
||||
private String gridType; |
|
||||
|
|
||||
/** |
|
||||
* 网格内人口规模[01:500人以下(含500人); 02:500-1000人(含1000人); 03:1000-1500人(含1500人); 04:1500人以上] |
|
||||
*/ |
|
||||
private String populationSize; |
|
||||
|
|
||||
/** |
|
||||
* 是否成立网格党支部或网格党小组[Y:是、N:否] |
|
||||
*/ |
|
||||
private String isPartyBranch; |
|
||||
|
|
||||
/** |
|
||||
* 网格党组织类型[01:网格党支部; 02:网格党小组] |
|
||||
*/ |
|
||||
private String partyBranchType; |
|
||||
|
|
||||
/** |
|
||||
* 中心点(质心)经度 |
|
||||
*/ |
|
||||
private String lng; |
|
||||
|
|
||||
/** |
|
||||
* 中心点(质心)纬度 |
|
||||
*/ |
|
||||
private String lat; |
|
||||
|
|
||||
/** |
|
||||
* 网格颜色 |
|
||||
*/ |
|
||||
private String gridColor; |
|
||||
|
|
||||
/** |
|
||||
* 空间范围 |
|
||||
*/ |
|
||||
private String shape; |
|
||||
|
|
||||
/** |
|
||||
* 删除标识 0.未删除 1.已删除 |
|
||||
*/ |
|
||||
private Long delFlag; |
|
||||
|
|
||||
/** |
|
||||
* 乐观锁 |
|
||||
*/ |
|
||||
private Integer revision; |
|
||||
|
|
||||
/** |
|
||||
* 创建人 |
|
||||
*/ |
|
||||
private String createdBy; |
|
||||
|
|
||||
/** |
|
||||
* 创建时间 |
|
||||
*/ |
|
||||
private Date createdTime; |
|
||||
|
|
||||
/** |
|
||||
* 更新人 |
|
||||
*/ |
|
||||
private String updatedBy; |
|
||||
|
|
||||
/** |
|
||||
* 更新时间 |
|
||||
*/ |
|
||||
private Date updatedTime; |
|
||||
|
|
||||
} |
|
||||
@ -1,191 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
package com.epmet.opendata.dto; |
|
||||
|
|
||||
import java.io.Serializable; |
|
||||
import java.util.Date; |
|
||||
import lombok.Data; |
|
||||
|
|
||||
|
|
||||
/** |
|
||||
* 网格员基础信息表 |
|
||||
* |
|
||||
* @author generator generator@elink-cn.com |
|
||||
* @since v1.0.0 2021-10-15 |
|
||||
*/ |
|
||||
@Data |
|
||||
public class BaseGridUserDTO implements Serializable { |
|
||||
|
|
||||
private static final long serialVersionUID = 1L; |
|
||||
|
|
||||
/** |
|
||||
* 主键 |
|
||||
*/ |
|
||||
private String id; |
|
||||
|
|
||||
/** |
|
||||
* 客户Id |
|
||||
*/ |
|
||||
private String customerId; |
|
||||
|
|
||||
/** |
|
||||
* 网格Id |
|
||||
*/ |
|
||||
private String gridId; |
|
||||
|
|
||||
/** |
|
||||
* 人员Id |
|
||||
*/ |
|
||||
private String staffId; |
|
||||
|
|
||||
/** |
|
||||
* 网格编码 |
|
||||
*/ |
|
||||
private String code; |
|
||||
|
|
||||
/** |
|
||||
* 网格名称 |
|
||||
*/ |
|
||||
private String gridName; |
|
||||
|
|
||||
/** |
|
||||
* 网格员姓名 |
|
||||
*/ |
|
||||
private String nickName; |
|
||||
|
|
||||
/** |
|
||||
* 专属网格类型[01:党政机关; 02:医院; 03:学校; 04:企业; 05:园区; 06:商圈; 07:市场; 08:景区; |
|
||||
*/ |
|
||||
private String cardNum; |
|
||||
|
|
||||
/** |
|
||||
* 网格员类型[01:专职网格员; 02:兼职网格员; 03:网格长; 04:综治机构人员; 05:职能部门人员] |
|
||||
*/ |
|
||||
private String userType; |
|
||||
|
|
||||
/** |
|
||||
* 手机号码 |
|
||||
*/ |
|
||||
private String phonenumber; |
|
||||
|
|
||||
/** |
|
||||
* 性别[1:男性; 2:女性; 9:未说明的性别] |
|
||||
*/ |
|
||||
private String sex; |
|
||||
|
|
||||
/** |
|
||||
* 民族[字典表主键] |
|
||||
*/ |
|
||||
private String nation; |
|
||||
|
|
||||
/** |
|
||||
* 政治面貌[字典表主键] |
|
||||
*/ |
|
||||
private String paerty; |
|
||||
|
|
||||
/** |
|
||||
* 出生日期[YYYY-MM-DD] |
|
||||
*/ |
|
||||
private Date birthday; |
|
||||
|
|
||||
/** |
|
||||
* 学历[字典表主键] |
|
||||
*/ |
|
||||
private String education; |
|
||||
|
|
||||
/** |
|
||||
* 入职时间 |
|
||||
*/ |
|
||||
private Date entryDate; |
|
||||
|
|
||||
/** |
|
||||
* 是否离职 |
|
||||
*/ |
|
||||
private String isLeave; |
|
||||
|
|
||||
/** |
|
||||
* 离职时间 |
|
||||
*/ |
|
||||
private Date leaveDate; |
|
||||
|
|
||||
/** |
|
||||
* 网格员年收入 |
|
||||
*/ |
|
||||
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; |
|
||||
|
|
||||
/** |
|
||||
* 删除标识 0.未删除 1.已删除 |
|
||||
*/ |
|
||||
private Long delFlag; |
|
||||
|
|
||||
/** |
|
||||
* 乐观锁 |
|
||||
*/ |
|
||||
private Integer revision; |
|
||||
|
|
||||
/** |
|
||||
* 创建人 |
|
||||
*/ |
|
||||
private String createdBy; |
|
||||
|
|
||||
/** |
|
||||
* 创建时间 |
|
||||
*/ |
|
||||
private Date createdTime; |
|
||||
|
|
||||
/** |
|
||||
* 更新人 |
|
||||
*/ |
|
||||
private String updatedBy; |
|
||||
|
|
||||
/** |
|
||||
* 更新时间 |
|
||||
*/ |
|
||||
private Date updatedTime; |
|
||||
|
|
||||
} |
|
||||
@ -1,41 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
package com.epmet.opendata.dao; |
|
||||
|
|
||||
import com.epmet.commons.mybatis.dao.BaseDao; |
|
||||
import com.epmet.opendata.entity.BaseGridInfoEntity; |
|
||||
import org.apache.ibatis.annotations.Mapper; |
|
||||
import org.apache.ibatis.annotations.Param; |
|
||||
|
|
||||
import java.util.List; |
|
||||
|
|
||||
/** |
|
||||
* 网格基础信息表 |
|
||||
* |
|
||||
* @author generator generator@elink-cn.com |
|
||||
* @since v1.0.0 2021-10-15 |
|
||||
*/ |
|
||||
@Mapper |
|
||||
public interface BaseGridInfoDao extends BaseDao<BaseGridInfoEntity> { |
|
||||
|
|
||||
/** |
|
||||
* @Author sun |
|
||||
* @Description 网格基础信息批量更新部分字段 |
|
||||
**/ |
|
||||
void updateBatch(@Param("list") List<BaseGridInfoEntity> entityList); |
|
||||
} |
|
||||
@ -1,41 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
package com.epmet.opendata.dao; |
|
||||
|
|
||||
import com.epmet.commons.mybatis.dao.BaseDao; |
|
||||
import com.epmet.opendata.entity.BaseGridUserEntity; |
|
||||
import org.apache.ibatis.annotations.Mapper; |
|
||||
import org.apache.ibatis.annotations.Param; |
|
||||
|
|
||||
import java.util.List; |
|
||||
|
|
||||
/** |
|
||||
* 网格员基础信息表 |
|
||||
* |
|
||||
* @author generator generator@elink-cn.com |
|
||||
* @since v1.0.0 2021-10-15 |
|
||||
*/ |
|
||||
@Mapper |
|
||||
public interface BaseGridUserDao extends BaseDao<BaseGridUserEntity> { |
|
||||
|
|
||||
/** |
|
||||
* @Author sun |
|
||||
* @Description 网格员基础信息批量更新部分字段 |
|
||||
**/ |
|
||||
void updateBatch(@Param("list") List<BaseGridUserEntity> entityList); |
|
||||
} |
|
||||
@ -1,106 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
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 2021-10-15 |
|
||||
*/ |
|
||||
@Data |
|
||||
@EqualsAndHashCode(callSuper=false) |
|
||||
@TableName("base_grid_info") |
|
||||
public class BaseGridInfoEntity extends BaseEpmetEntity { |
|
||||
|
|
||||
private static final long serialVersionUID = 1L; |
|
||||
|
|
||||
/** |
|
||||
* 客户Id |
|
||||
*/ |
|
||||
private String customerId; |
|
||||
|
|
||||
/** |
|
||||
* 组织/网格Id |
|
||||
*/ |
|
||||
private String orgId; |
|
||||
|
|
||||
/** |
|
||||
* 网格编码 |
|
||||
*/ |
|
||||
private String code; |
|
||||
|
|
||||
/** |
|
||||
* 网格名称 |
|
||||
*/ |
|
||||
private String gridName; |
|
||||
|
|
||||
/** |
|
||||
* 网格层级[07:网格] |
|
||||
*/ |
|
||||
private String gridLevel; |
|
||||
|
|
||||
/** |
|
||||
* 专属网格类型[01:党政机关; 02:医院; 03:学校; 04:企业; 05:园区; 06:商圈; 07:市场; 08:景区; |
|
||||
*/ |
|
||||
private String gridType; |
|
||||
|
|
||||
/** |
|
||||
* 网格内人口规模[01:500人以下(含500人); 02:500-1000人(含1000人); 03:1000-1500人(含1500人); 04:1500人以上] |
|
||||
*/ |
|
||||
private String populationSize; |
|
||||
|
|
||||
/** |
|
||||
* 是否成立网格党支部或网格党小组[Y:是、N:否] |
|
||||
*/ |
|
||||
private String isPartyBranch; |
|
||||
|
|
||||
/** |
|
||||
* 网格党组织类型[01:网格党支部; 02:网格党小组] |
|
||||
*/ |
|
||||
private String partyBranchType; |
|
||||
|
|
||||
/** |
|
||||
* 中心点(质心)经度 |
|
||||
*/ |
|
||||
private String lng; |
|
||||
|
|
||||
/** |
|
||||
* 中心点(质心)纬度 |
|
||||
*/ |
|
||||
private String lat; |
|
||||
|
|
||||
/** |
|
||||
* 网格颜色 |
|
||||
*/ |
|
||||
private String gridColor; |
|
||||
|
|
||||
/** |
|
||||
* 空间范围 |
|
||||
*/ |
|
||||
private String shape; |
|
||||
|
|
||||
} |
|
||||
@ -1,161 +0,0 @@ |
|||||
/** |
|
||||
* Copyright 2018 人人开源 https://www.renren.io
|
|
||||
* <p> |
|
||||
* This program is free software: you can redistribute it and/or modify |
|
||||
* it under the terms of the GNU General Public License as published by |
|
||||
* the Free Software Foundation, either version 3 of the License, or |
|
||||
* (at your option) any later version. |
|
||||
* <p> |
|
||||
* This program is distributed in the hope that it will be useful, |
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
* GNU General Public License for more details. |
|
||||
* <p> |
|
||||
* You should have received a copy of the GNU General Public License |
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||
*/ |
|
||||
|
|
||||
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 2021-10-15 |
|
||||
*/ |
|
||||
@Data |
|
||||
@EqualsAndHashCode(callSuper=false) |
|
||||
@TableName("base_grid_user") |
|
||||
public class BaseGridUserEntity extends BaseEpmetEntity { |
|
||||
|
|
||||
private static final long serialVersionUID = 1L; |
|
||||
|
|
||||
/** |
|
||||
* 客户Id |
|
||||
*/ |
|
||||
private String customerId; |
|
||||
|
|
||||
/** |
|
||||
* 网格Id |
|
||||
*/ |
|
||||
private String gridId; |
|
||||
|
|
||||
/** |
|
||||
* 人员Id |
|
||||
*/ |
|
||||
private String staffId; |
|
||||
|
|
||||
/** |
|
||||
* 网格编码 |
|
||||
*/ |
|
||||
private String code; |
|
||||
|
|
||||
/** |
|
||||
* 网格名称 |
|
||||
*/ |
|
||||
private String gridName; |
|
||||
|
|
||||
/** |
|
||||
* 网格员姓名 |
|
||||
*/ |
|
||||
private String nickName; |
|
||||
|
|
||||
/** |
|
||||
* 专属网格类型[01:党政机关; 02:医院; 03:学校; 04:企业; 05:园区; 06:商圈; 07:市场; 08:景区; |
|
||||
*/ |
|
||||
private String cardNum; |
|
||||
|
|
||||
/** |
|
||||
* 网格员类型[01:专职网格员; 02:兼职网格员; 03:网格长; 04:综治机构人员; 05:职能部门人员] |
|
||||
*/ |
|
||||
private String userType; |
|
||||
|
|
||||
/** |
|
||||
* 手机号码 |
|
||||
*/ |
|
||||
private String phonenumber; |
|
||||
|
|
||||
/** |
|
||||
* 性别[1:男性; 2:女性; 9:未说明的性别] |
|
||||
*/ |
|
||||
private String sex; |
|
||||
|
|
||||
/** |
|
||||
* 民族[字典表主键] |
|
||||
*/ |
|
||||
private String nation; |
|
||||
|
|
||||
/** |
|
||||
* 政治面貌[字典表主键] |
|
||||
*/ |
|
||||
private String paerty; |
|
||||
|
|
||||
/** |
|
||||
* 出生日期[YYYY-MM-DD] |
|
||||
*/ |
|
||||
private Date birthday; |
|
||||
|
|
||||
/** |
|
||||
* 学历[字典表主键] |
|
||||
*/ |
|
||||
private String education; |
|
||||
|
|
||||
/** |
|
||||
* 入职时间 |
|
||||
*/ |
|
||||
private Date entryDate; |
|
||||
|
|
||||
/** |
|
||||
* 是否离职 |
|
||||
*/ |
|
||||
private String isLeave; |
|
||||
|
|
||||
/** |
|
||||
* 离职时间 |
|
||||
*/ |
|
||||
private Date leaveDate; |
|
||||
|
|
||||
/** |
|
||||
* 网格员年收入 |
|
||||
*/ |
|
||||
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; |
|
||||
|
|
||||
} |
|
||||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue