| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | |
| | | @ApiModelProperty(value = "主键") |
| | | private Integer id; |
| | | @ApiModelProperty(value = "是否已删除") |
| | | private Integer isdeleted; |
| | | |
| | | @ApiModelProperty(value = "会议名称") |
| | | private String meetingName; |
| | |
| | | @ApiModelProperty(value = "会议日期") |
| | | private String meetingDate; |
| | | |
| | | |
| | | @ApiModelProperty(value = "开始时间") |
| | | private Date startTime; |
| | | |
| | | @ApiModelProperty(value = "结束时间") |
| | | private Date endTime; |
| | | |
| | | |
| | | @ApiModelProperty(value = "会议时间 ( a ~ b)") |
| | | private String meetingTime; |
| | | |
| | | @ApiModelProperty(value = "是否是管理员 0=否;1=是") |
| | | private Integer isAdmin = 0 ; |
| | | |
| | | @ApiModelProperty(value = "参会人员") |
| | | private List<UserResponse> userResponseList; |
| | | |