13 changed files with 210 additions and 35 deletions
@ -0,0 +1,44 @@ |
|||
package com.elink.esua.epdc.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @author songyunpeng |
|||
* @Description 大屏以人找人结果 |
|||
* @create 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenResidentInfoByCurrentAddressExcel { |
|||
|
|||
/** |
|||
* 居住人姓名 |
|||
*/ |
|||
@Excel(name = "姓名") |
|||
private String residentName; |
|||
|
|||
/** |
|||
* 当前居住地址 |
|||
*/ |
|||
@Excel(name = "现居住地") |
|||
private String currentAddress; |
|||
/** |
|||
* 户主姓名 |
|||
*/ |
|||
@Excel(name = "户主姓名") |
|||
private String houseHeadName; |
|||
/** |
|||
* 户主电话 |
|||
*/ |
|||
@Excel(name = "户主电话") |
|||
private String houseHeadPhone; |
|||
/** |
|||
* 户主居住地址 |
|||
*/ |
|||
@Excel(name = "户主居住地址") |
|||
private String houseHeadAddress; |
|||
|
|||
|
|||
|
|||
|
|||
} |
Loading…
Reference in new issue