All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.zhengxiang.component.element.ElTable Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy