MCPcopy Create free account
hub / github.com/Jarrettluo/all-docs / DocumentDTO

Class DocumentDTO

src/main/java/com/jiaruiblog/entity/dto/DocumentDTO.java:18–40  ·  view source on GitHub ↗

@ClassName documentDTO @Description 文档的dto @Author luojiarui @Date 2022/6/19 5:15 下午 @Version 1.0

Source from the content-addressed store, hash-verified

16 * @Version 1.0
17 **/
18@ApiModel("文档查询对象")
19@Data
20public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected