package com.panzhihua.common.model.vos.community.reserve;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
@Data
|
public class ComOperationListVO {
|
private Long id;
|
|
/**
|
* 预约登记id
|
*/
|
private Long reserveId;
|
|
/**
|
* 预约登记记录id
|
*/
|
private Long reserveRecordId;
|
|
/**
|
* 用户id
|
*/
|
private Long userId;
|
|
/**
|
* 类型(1.本人操作 2.社区操作)
|
*/
|
private Integer type;
|
|
/**
|
* 操作人手机号
|
*/
|
private String phone;
|
|
/**
|
* 操作时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date reserveTime;
|
|
/**
|
* 操作内容
|
*/
|
private String reserveContent;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 状态(1.提交 2.预约成功 3.预约失败 4.取消)
|
*/
|
private Integer status;
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
private Date createAt;
|
|
/**
|
* 创建人
|
*/
|
private Long createBy;
|
}
|