dev.zhengxiang.component.element.ElTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of frontend Show documentation
Show all versions of frontend Show documentation
Frontend component object
The newest version!
package dev.zhengxiang.component.element;
/**
* element ui 表格
* https://element.eleme.cn/#/zh-CN/component/table
*/
public class ElTable {
/**
* 属性名称
*/
private String prop;
/**
* 表头标题
*/
private String label;
/**
* 列宽度
*/
private String width;
/* constructor */
public ElTable(String prop, String label) {
this.prop = prop;
this.label = label;
}
public ElTable() {
}
/* getter setter */
public String getProp() {
return prop;
}
public void setProp(String prop) {
this.prop = prop;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public String getWidth() {
return width;
}
public void setWidth(String width) {
this.width = width;
}
}