New file |
| | |
| | | package com.panzhihua.common.model.dtos.community.reserve; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | @ApiModel("新增预约登记请求参数") |
| | | public class AddReserveAdminDTO { |
| | | |
| | | @ApiModelProperty(value = "类型(1.预约 2.登记)") |
| | | private Integer type; |
| | | |
| | | @ApiModelProperty(value = "主题") |
| | | private String title; |
| | | |
| | | @ApiModelProperty(value = "数量上限数量(如果不限制数量,这里传0)") |
| | | private Integer joinAllCount; |
| | | |
| | | @ApiModelProperty(value = "图标类型(1.预设1 2.预设2 3.预设3 4.预设4 5.用户自定义图片)") |
| | | private Integer imgType; |
| | | |
| | | @ApiModelProperty(value = "图标url(当img_type为5时,此字段的值为图标url地址)") |
| | | private String imgUrl; |
| | | |
| | | @ApiModelProperty("广告顶部(1.是 2.否)") |
| | | private Integer adverPositionTop; |
| | | |
| | | @ApiModelProperty("广告应用(1.是 2.否)") |
| | | private Integer adverPositionApplication; |
| | | |
| | | @ApiModelProperty(value = "社区id",hidden = true) |
| | | private Long communityId; |
| | | |
| | | @ApiModelProperty(value = "用户id",hidden = true) |
| | | private Long userId; |
| | | |
| | | @ApiModelProperty("是否可重复提交(1.是 2.否)") |
| | | private Integer isRepeat; |
| | | |
| | | @ApiModelProperty("组件json数据") |
| | | private String jsonObject; |
| | | |
| | | @ApiModelProperty("是否发布(1.是 2.否)") |
| | | private Integer isPublish = 2; |
| | | |
| | | } |