You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
380 B
Java
26 lines
380 B
Java
package com.bsd.cases.vo;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class CaseSearchVo {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String url;
|
|
/**
|
|
* type 是 0 就是category type 是 1 是content
|
|
*/
|
|
private Integer type;
|
|
|
|
private String parentName;
|
|
|
|
private Integer viewNum;
|
|
|
|
private Integer likeNum;
|
|
|
|
private Integer commentsNum;
|
|
}
|