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

com.ecfront.easybi.dbutils.exchange.Meta Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package com.ecfront.easybi.dbutils.exchange;


public class Meta {

    public int type;
    public String code;
    public String label;

    public Meta(int type, String code, String label) {
        this.type = type;
        this.code = code;
        this.label = label;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy