package com.panzhihua.common.model.dtos.neighbor;
|
|
import javax.validation.constraints.NotNull;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @auther llming
|
* @describe
|
*/
|
@Data
|
@ApiModel("邻里圈查看详情的评论列表")
|
public class DetailNeighborAllCommentByAdminDTO {
|
@ApiModelProperty(value = "邻里圈id")
|
@NotNull(message = "邻里圈id不能为空!")
|
private Long id;
|
|
@ApiModelProperty(value = "分页-当前页数", example = "1")
|
private Long pageNum = 1L;
|
|
@ApiModelProperty(value = "分页-每页记录数", example = "10")
|
private Long pageSize = 10L;
|
}
|