package com.panzhihua.common.model.vos.grid.admin.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 小区列表Excel导出
|
*/
|
@Data
|
@ApiModel("小区列表Excel导出")
|
@EncryptDecryptClass
|
public class ComMngVillageExportExcelVO implements Serializable {
|
|
@ExcelProperty(value = "小区名字" ,index = 0)
|
private String userName;
|
|
@ExcelProperty(value = "街路巷" ,index = 1)
|
private String alley;
|
|
@ExcelProperty(value = "门牌号" ,index = 2)
|
private String doorNum;
|
|
@ExcelProperty(value = "小区地址" ,index = 3)
|
private String address;
|
|
@ExcelProperty(value = "小区楼栋数" ,index = 4)
|
private Integer buildSum;
|
|
@ExcelProperty(value = "小区户数" ,index = 5)
|
private Integer houseNum;
|
|
@ExcelProperty(value = "小区居民人数" ,index = 6)
|
private Integer userSum;
|
|
|
|
}
|