com.haoxuer.discover.web.data.entity.WebTheme Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of discover-website Show documentation
Show all versions of discover-website Show documentation
discover网站配置模块,主要管理网站主题,网站配置等功能
package com.haoxuer.discover.web.data.entity;
import com.haoxuer.discover.data.entity.UUIDEntity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "site_theme_config")
public class WebTheme extends UUIDEntity {
@Column(length = 20)
private String name;
@Column(length = 20)
private String path;
/**
* 图片路径
*/
private String screenShot;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getScreenShot() {
return screenShot;
}
public void setScreenShot(String screenShot) {
this.screenShot = screenShot;
}
}