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

com.mofum.scope.common.model.Parameter Maven / Gradle / Ivy

There is a newer version: 2.0.0.RELEASE
Show newest version
package com.mofum.scope.common.model;

/**
 * 参数
 *
 * @author [email protected]
 * @since 2019-03-20
 **/
public class Parameter {

    /**
     * 索引
     */
    private int index;

    /**
     * 参数名
     */
    private String name;

    /**
     * 值
     */
    private Object value;

    public Parameter() {
    }

    public Parameter(int index, String name, Object value) {
        this.index = index;
        this.name = name;
        this.value = value;
    }

    public int getIndex() {
        return index;
    }

    public void setIndex(int index) {
        this.index = index;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Object getValue() {
        return value;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy