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

5 years ago
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;
5 years ago
private String parentName;
private Integer viewNum;
private Integer likeNum;
private Integer commentsNum;
5 years ago
}