package com.panzhihua.common.model.vos.community.reserve; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.util.Date; @Data public class ComActReserveDetailVO { private Long id; /** * 社区id */ private Long communityId; /** * 类型(1.预约 2.登记) */ private Integer type; /** * 主题 */ private String title; /** * 浏览量 */ private Integer viewNum; /** * 总参加人数 */ private Integer joinAllCount; /** * 参加人数 */ private Integer joinCount; /** * 图标类型(1.预设1 2.预设2 3.预设3 4.预设4 5.用户自定义图片) */ private Integer imgType; /** * 图标url(当img_type为5时,此字段的值为图标url地址) */ private String imgUrl; /** * 状态(1.待发布 2.进行中 3.已停止) */ private Integer status; /** * 发布时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date publishTime; /** * 是否可重复提交(1.是 2.否) */ private Integer isRepeat; /** * 备注 */ private String remark; /** * 组件json数据 */ private String jsonObject; /** * 是否是首页顶部(1.是 2.否) */ private Integer adverPositionTop; /** * 是否是首页应用(1.是 2.否) */ private Integer adverPositionApplication; /** * 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date createAt; /** * 创建人 */ private Long createBy; /** * 修改时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date updateAt; /** * 修改人 */ private Long updateBy; /** * 结束时间 */ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date endTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date reserveTime; private Integer recordStatus; /** * 是否已删除(1.是 2.否) */ private Integer isDel; private Integer isOk; /** * 是否重复(1.是 2.否) */ public interface isOk{ int y=1; int n=2; } }