4 changed files with 110 additions and 3 deletions
@ -0,0 +1,44 @@ |
|||||
|
package com.epmet.dto; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 死亡名单表 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2022-05-05 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ChangeDeathExportDTO { |
||||
|
|
||||
|
|
||||
|
@Excel(name = "姓名") |
||||
|
private String name; |
||||
|
|
||||
|
@Excel(name = "身份证") |
||||
|
private String idCard; |
||||
|
|
||||
|
@Excel(name = "手机号") |
||||
|
private String mobile; |
||||
|
|
||||
|
@Excel(name = "性别",replace = { "男_1", "女_0"} ) |
||||
|
private String gender; |
||||
|
|
||||
|
@Excel(name = "类型",replace = { "房东_1", "租客_0"} ) |
||||
|
private String type; |
||||
|
|
||||
|
@Excel(name = "加入时间") |
||||
|
private String joinDate; |
||||
|
|
||||
|
@Excel(name = "加入原因") |
||||
|
private String joinReason; |
||||
|
|
||||
|
@Excel(name = "创建时间", format = "yyyy-MM-dd HH:mm:ss") |
||||
|
private Date createdTime; |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue