master
parent
8c917291d0
commit
5e15ae3e93
@ -1,13 +1,24 @@
|
||||
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 CaseContent {
|
||||
public class CaseContentBakVo extends BaseEntity {
|
||||
|
||||
private Long level2Id;
|
||||
private String contentTitle;
|
||||
|
||||
private Long level1Id;
|
||||
private String url;
|
||||
|
||||
private String content;
|
||||
|
||||
private Long categoryId;
|
||||
|
||||
private String categoryName;
|
||||
|
||||
private Long levelId2;
|
||||
|
||||
private Long levelId1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue