package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.beans.Transient;
|
|
/**
|
* 应用中的模块配置
|
*/
|
@Alias("ApplicationConfig")
|
@TableName( schema = "`db_app_sys`",value = "`tb_application_config`")
|
public class ApplicationConfig {
|
|
private Integer id;
|
/**应用id*/
|
private Integer appId;
|
private String name;
|
/**宽度*/
|
private Double w;
|
/**高度*/
|
private Double h;
|
/**X轴坐标*/
|
private Double x;
|
/**Y轴坐标*/
|
private Double y;
|
/**模块图表展示类型*/
|
private String type;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
@Transient
|
public Integer getAppId() {
|
return appId;
|
}
|
|
@Transient
|
public void setAppId(Integer appId) {
|
this.appId = appId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Double getW() {
|
return w;
|
}
|
|
public void setW(Double w) {
|
this.w = w;
|
}
|
|
public Double getH() {
|
return h;
|
}
|
|
public void setH(Double h) {
|
this.h = h;
|
}
|
|
public Double getX() {
|
return x;
|
}
|
|
public void setX(Double x) {
|
this.x = x;
|
}
|
|
public Double getY() {
|
return y;
|
}
|
|
public void setY(Double y) {
|
this.y = y;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
}
|