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.

18 lines
254 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;
}