13 changed files with 602 additions and 14 deletions
@ -0,0 +1,121 @@ |
|||
/** |
|||
* 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.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 人口信息表 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2020-08-19 |
|||
*/ |
|||
@Data |
|||
public class BasePopulationInformationExportDto { |
|||
|
|||
private String id; |
|||
|
|||
private String gridName; |
|||
|
|||
private String houseAddress; |
|||
|
|||
private String buyingTime; |
|||
|
|||
private BigDecimal houseArea; |
|||
|
|||
private String propertyOwner; |
|||
|
|||
private String propertyOwnerIdentityNo; |
|||
|
|||
private String propertyOwnerCard; |
|||
|
|||
private String propertyOwnerMobile; |
|||
|
|||
private String houseUse; |
|||
|
|||
private String tenantName; |
|||
|
|||
private String tenantPhone; |
|||
|
|||
private String tenantIdentityNo; |
|||
|
|||
private String enterpriseName; |
|||
|
|||
private String socialUniformCode; |
|||
|
|||
private String legalRepresentative; |
|||
|
|||
private String enterprisePhone; |
|||
|
|||
private String residentsName; |
|||
|
|||
private String residentsSex; |
|||
|
|||
private String residentsBirthday; |
|||
|
|||
private String residentsNation; |
|||
|
|||
private String educationLevel; |
|||
|
|||
private String politicsStatus; |
|||
|
|||
private String joinTime; |
|||
|
|||
private String organizationalRelationshipLocation; |
|||
|
|||
private String residentsIdentityNo; |
|||
|
|||
private String residentsPhone; |
|||
|
|||
private String bodyStatus; |
|||
|
|||
private String maritalStatus; |
|||
|
|||
private String accountType; |
|||
|
|||
private String militaryService; |
|||
|
|||
private String householdRegistrationPlace; |
|||
|
|||
private String employmentStatus; |
|||
|
|||
private String currentEmployer; |
|||
|
|||
private String currentEmployerAddress; |
|||
|
|||
private String unemploymentReason; |
|||
|
|||
private String reemploymentPermit; |
|||
|
|||
private String unemploymentRegister; |
|||
|
|||
private String unemploymentRegisterTime; |
|||
|
|||
private String familyCategory; |
|||
|
|||
private String helpStatus; |
|||
|
|||
private Integer motorVehicleNum; |
|||
|
|||
private String motorVehicleCategory; |
|||
|
|||
private String dogStatus; |
|||
|
|||
} |
@ -0,0 +1,47 @@ |
|||
/** |
|||
* 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.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 人口信息表 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2020-08-19 |
|||
*/ |
|||
@Data |
|||
public class BaseResidentInformationExportDto { |
|||
|
|||
private String houseHeadName; |
|||
|
|||
private String residentsIdentityNo; |
|||
|
|||
private String houseHeadRelation; |
|||
|
|||
private String residentsName; |
|||
|
|||
private String residentsSex; |
|||
|
|||
private String residentsNation; |
|||
|
|||
private String currentEmployer; |
|||
|
|||
private String currentAddress; |
|||
|
|||
} |
@ -0,0 +1,163 @@ |
|||
/** |
|||
* 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.elink.esua.epdc.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 人口信息表 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2020-08-19 |
|||
*/ |
|||
@Data |
|||
public class BasePopulationInformationExportExcel { |
|||
|
|||
@Excel(name = "所属网格") |
|||
private String gridName; |
|||
|
|||
@Excel(name = "房屋地址") |
|||
private String houseAddress; |
|||
|
|||
@Excel(name = "购房时间") |
|||
private String buyingTime; |
|||
|
|||
@Excel(name = "房屋面积") |
|||
private BigDecimal houseArea; |
|||
|
|||
@Excel(name = "产权人姓名") |
|||
private String propertyOwner; |
|||
|
|||
@Excel(name = "产权人身份证号") |
|||
private String propertyOwnerIdentityNo; |
|||
|
|||
@Excel(name = "产权证") |
|||
private String propertyOwnerCard; |
|||
|
|||
@Excel(name = "产权人联系电话") |
|||
private String propertyOwnerMobile; |
|||
|
|||
@Excel(name = "房屋用途",replace = {"自住_0","租赁_1","经营_2"}) |
|||
private String houseUse; |
|||
|
|||
@Excel(name = "承租人姓名") |
|||
private String tenantName; |
|||
|
|||
@Excel(name = "承租人电话") |
|||
private String tenantPhone; |
|||
|
|||
@Excel(name = "承租人身份证号") |
|||
private String tenantIdentityNo; |
|||
|
|||
@Excel(name = "企业名称") |
|||
private String enterpriseName; |
|||
|
|||
@Excel(name = "社会统一代码") |
|||
private String socialUniformCode; |
|||
|
|||
@Excel(name = "法人代表") |
|||
private String legalRepresentative; |
|||
|
|||
@Excel(name = "电话") |
|||
private String enterprisePhone; |
|||
|
|||
@Excel(name = "户主姓名") |
|||
private String residentsName; |
|||
|
|||
@Excel(name = "性别",replace = {"女_0","男_1"}) |
|||
private String residentsSex; |
|||
|
|||
@Excel(name = "出生年月") |
|||
private String residentsBirthday; |
|||
|
|||
@Excel(name = "民族") |
|||
private String residentsNation; |
|||
|
|||
@Excel(name = "文化程度") |
|||
private String educationLevel; |
|||
|
|||
@Excel(name = "政治面貌",replace = {"群众_0","党员_1"}) |
|||
private String politicsStatus; |
|||
|
|||
@Excel(name = "入党时间") |
|||
private String joinTime; |
|||
|
|||
@Excel(name = "组织关系所在地") |
|||
private String organizationalRelationshipLocation; |
|||
|
|||
@Excel(name = "身份证号码") |
|||
private String residentsIdentityNo; |
|||
|
|||
@Excel(name = "户主联系电话") |
|||
private String residentsPhone; |
|||
|
|||
@Excel(name = "身体状况",replace = {"病残_0","健康_1"}) |
|||
private String bodyStatus; |
|||
|
|||
@Excel(name = "婚姻状况",replace = {"未婚_0","已婚_1"}) |
|||
private String maritalStatus; |
|||
|
|||
@Excel(name = "户口类型",replace = {"城镇_0","农业_1"}) |
|||
private String accountType; |
|||
|
|||
@Excel(name = "服兵役",replace = {"否_0","是_1"}) |
|||
private String militaryService; |
|||
|
|||
@Excel(name = "户籍地") |
|||
private String householdRegistrationPlace; |
|||
|
|||
@Excel(name = "就业情况",replace = {"在岗_0","失业_1"}) |
|||
private String employmentStatus; |
|||
|
|||
@Excel(name = "现工作单位") |
|||
private String currentEmployer; |
|||
|
|||
@Excel(name = "现单位地址") |
|||
private String currentEmployerAddress; |
|||
|
|||
@Excel(name = "失业原因",replace = {"原单位破产_0","解除合同_1","效益不好_2","减员_3","其他_4"}) |
|||
private String unemploymentReason; |
|||
|
|||
@Excel(name = "再就业优惠证",replace = {"无_0","有_1"}) |
|||
private String reemploymentPermit; |
|||
|
|||
@Excel(name = "失业登记",replace = {"否_0","是_1"}) |
|||
private String unemploymentRegister; |
|||
|
|||
@Excel(name = "失业登记时间") |
|||
private String unemploymentRegisterTime; |
|||
|
|||
@Excel(name = "家庭类别",replace = {"普通家庭_0","军烈_2","优抚_3","困难家庭_6"}) |
|||
private String familyCategory; |
|||
|
|||
@Excel(name = "救助情况",replace = {"低保_0","大病_1","廉租_2","教育_3","临时_4","其他_5"}) |
|||
private String helpStatus; |
|||
|
|||
@Excel(name = "机动车数量") |
|||
private Integer motorVehicleNum; |
|||
|
|||
@Excel(name = "机动车类型",replace = {"轿车_0","摩托_1","其他_2"}) |
|||
private String motorVehicleCategory; |
|||
|
|||
@Excel(name = "宠物犬状况",replace = {"无_0","有_1"}) |
|||
private String dogStatus; |
|||
|
|||
} |
@ -0,0 +1,56 @@ |
|||
/** |
|||
* 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.elink.esua.epdc.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 人口信息表 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2020-08-19 |
|||
*/ |
|||
@Data |
|||
public class BaseResidentInformationExportExcel { |
|||
|
|||
@Excel(name = "户主身份证号码") |
|||
private String residentsIdentityNo; |
|||
|
|||
@Excel(name = "户主姓名") |
|||
private String houseHeadName; |
|||
|
|||
@Excel(name = "与户主关系",replace = {"子女_0","夫妻_1","其他_2","父母_3"}) |
|||
private String houseHeadRelation; |
|||
|
|||
@Excel(name = "居住人姓名") |
|||
private String residentsName; |
|||
|
|||
@Excel(name = "性别",replace = {"女_0","男_1"}) |
|||
private String residentsSex; |
|||
|
|||
@Excel(name = "民族") |
|||
private String residentsNation; |
|||
|
|||
@Excel(name = "现工作单位") |
|||
private String currentEmployer; |
|||
|
|||
@Excel(name = "现居住地") |
|||
private String currentAddress; |
|||
|
|||
} |
Loading…
Reference in new issue