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

com.weisiliang.formui.response.FormuiTableCell Maven / Gradle / Ivy

The newest version!
package com.weisiliang.formui.response;


//import com.weisiliang.response.BasePageResponse;
//import com.weisiliang.response.BaseResponse;

public class FormuiTableCell {
    String fieldName;
    Object value;//格式化后的值
    String formatValue;//数据原始值,可能是int或string

    public Object getValue() {
        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }

    public String getFormatValue() {
        return formatValue;
    }

    public void setFormatValue(String formatValue) {
        this.formatValue = formatValue;
    }

    public String getFieldName() {
        return fieldName;
    }

    public void setFieldName(String fieldName) {
        this.fieldName = fieldName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy