临时提交
parent
8e81902cda
commit
8b30113565
@ -0,0 +1,40 @@
|
||||
package com.ruoyi.biemo.business.domain;
|
||||
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.TreeEntity;
|
||||
import org.springframework.data.mongodb.core.mapping.Document;
|
||||
|
||||
|
||||
@Document
|
||||
public class Category extends TreeEntity<Category> implements Cloneable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 本体主键
|
||||
*/
|
||||
private Long id;
|
||||
/**
|
||||
* 本体名称
|
||||
*/
|
||||
private String cateName;
|
||||
|
||||
|
||||
private Long type;
|
||||
|
||||
|
||||
private String typeName;
|
||||
|
||||
/**
|
||||
* 显示颜色
|
||||
*/
|
||||
private String color;
|
||||
|
||||
/**
|
||||
* 图标名称
|
||||
*/
|
||||
private String icon;
|
||||
|
||||
|
||||
private Integer isSync;
|
||||
|
||||
}
|
Loading…
Reference in New Issue