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