package com.panzhihua.common.model.vos.community.reserve;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 预约明细导出返回对象
|
*/
|
@Data
|
public class ComActReserveMakeDetailedExcelAdminVO {
|
|
@ExcelProperty(value = "用户昵称" ,index = 0)
|
private String nickName;
|
@ExcelProperty(value = "预约人" ,index = 1)
|
private String name;
|
@ExcelProperty(value = "联系电话" ,index = 2)
|
private String phone;
|
@ExcelProperty(value = "预约时间" ,index = 3)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date reserveTime;
|
@ExcelProperty(value = "预约内容" ,index = 4)
|
private String content;
|
@ExcelProperty(value = "备注人" ,index = 5)
|
private String handleName;
|
@ExcelProperty(value = "社区备注" ,index = 6)
|
private String actRemark;
|
@ExcelProperty(value = "提交时间" ,index = 7)
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createAt;
|
|
|
}
|