@ClassName documentDTO @Description 文档的dto @Author luojiarui @Date 2022/6/19 5:15 下午 @Version 1.0
| 16 | * @Version 1.0 |
| 17 | **/ |
| 18 | @ApiModel("文档查询对象") |
| 19 | @Data |
| 20 | public class DocumentDTO extends BasePageDTO{ |
| 21 | |
| 22 | @ApiModelProperty(value = "过滤类型") |
| 23 | @NotNull(message = MessageConstant.PARAMS_IS_NOT_NULL) |
| 24 | private FilterTypeEnum type; |
| 25 | |
| 26 | @ApiModelProperty(value = "过滤词") |
| 27 | @NotNull(message = MessageConstant.PARAMS_IS_NOT_NULL) |
| 28 | private String filterWord; |
| 29 | |
| 30 | @ApiModelProperty(value = "分类id") |
| 31 | @NotNull(message = MessageConstant.PARAMS_IS_NOT_NULL) |
| 32 | private String categoryId; |
| 33 | |
| 34 | @ApiModelProperty(value = "标签id") |
| 35 | @NotNull(message = MessageConstant.PARAMS_IS_NOT_NULL) |
| 36 | private String tagId; |
| 37 | |
| 38 | @ApiModelProperty(value = "用户id") |
| 39 | private String userId; |
| 40 | } |
nothing calls this directly
no outgoing calls
no test coverage detected