update domain class

This commit is contained in:
linfeng 2023-12-20 13:02:39 +08:00
parent 7534b2e153
commit 847a4d23db
2 changed files with 4 additions and 13 deletions

View File

@ -41,7 +41,7 @@ public class CategoryEntity implements Serializable {
*/ */
private String cateName; private String cateName;
/** /**
* 是否推荐(1推荐) * 是否推荐
*/ */
private Integer isTop; private Integer isTop;
/** /**

View File

@ -31,22 +31,13 @@ import lombok.Data;
public class SystemEntity implements Serializable { public class SystemEntity implements Serializable {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/**
*
*/
@TableId @TableId
private String config; private String config;
/**
*
*/
private String value; private String value;
/**
*
*/
private String extend; private String extend;
/**
*
*/
private String intro; private String intro;
} }