| package com.panzhihua.common.model.dtos.community.reserve; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * 继续预约登记请求参数 | 
|  */ | 
| @Data | 
| @ApiModel("继续预约登记请求参数") | 
| public class EditComActReserveInfoDTO { | 
|     @ApiModelProperty(value = "预约登记id") | 
|     private Long id; | 
|     @ApiModelProperty(value = "用户id",hidden = true) | 
|     private Long userId; | 
|     @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("是否可重复提交(1.是 2.否)") | 
|     private Integer isRepeat; | 
|   | 
|     @ApiModelProperty("是否发布(1.是 2.否)") | 
|     private Integer isPublish; | 
|   | 
|     /** | 
|      * 类型(1.继续 2.停止 3.发布) | 
|      */ | 
|     public interface type{ | 
|         int jx = 1; | 
|         int tz = 2; | 
|         int fb = 3; | 
|     } | 
| } |