package com.vci.model;
|
|
import com.vci.constant.BtmIdConstant;
|
import com.vci.starter.web.annotation.VciBtmType;
|
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
|
import com.vci.starter.web.model.BaseModel;
|
|
/**
|
* @Description 首页配置功能
|
* @Author dangsn
|
* @Date 2024/12/24 15:05
|
*/
|
@VciBtmType(name = BtmIdConstant.BD_HOME_CONFIG,text = "首页配置功能",lifeCycle = FrameWorkLcStatusConstant.EMTYPE_LIFE_CYCLE)
|
public class BdHomeConfigDO extends BaseModel {
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = -6291865953564163287L;
|
|
/**
|
* 组件
|
*/
|
private String module;
|
|
/**
|
* 标题
|
*/
|
private String title;
|
|
/**
|
* 图标
|
*/
|
private String icon;
|
|
/**
|
* 列数
|
*/
|
private Integer num;
|
|
/**
|
* 占比
|
*/
|
private Double ratio;
|
|
/**
|
* 排序号
|
*/
|
private Integer orderNum;
|
|
/**
|
* 人员账号
|
*/
|
private String userId;
|
|
/**
|
* 人员姓名
|
*/
|
private String userName;
|
|
public String getModule() {
|
return module;
|
}
|
|
public void setModule(String module) {
|
this.module = module;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getIcon() {
|
return icon;
|
}
|
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Double getRatio() {
|
return ratio;
|
}
|
|
public void setRatio(Double ratio) {
|
this.ratio = ratio;
|
}
|
|
public Integer getOrderNum() {
|
return orderNum;
|
}
|
|
public void setOrderNum(Integer orderNum) {
|
this.orderNum = orderNum;
|
}
|
|
public String getUserId() {
|
return userId;
|
}
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
}
|