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.

25 lines
435 B
Java

package com.bsd.cases.vo;
import com.bsd.cases.model.BaseEntity;
import com.bsd.cases.model.CaseCategory;
import com.bsd.cases.model.CaseContent;
import lombok.Data;
@Data
public class CaseContentBakVo extends BaseEntity {
private String contentTitle;
private String url;
private String content;
private Long categoryId;
private String categoryName;
private Long levelId2;
private Long levelId1;
}