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

cn.mapway.document.module.FieldCode Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.document.module;

import java.io.Serializable;

// TODO: Auto-generated Javadoc

/**
 * 字段代码值.
 *
 * @author zhangjianshe
 */
public class FieldCode implements Serializable {

    /**
     * Instantiates a new Field code.
     */
    public FieldCode() {
		this("","");
}

    /**
     * Gets the value.
     *
     * @return the value
     */
    public String getValue() {
		return value;
	}

    /**
     * Sets the value.
     *
     * @param value the new value
     */
    public void setValue(String value) {
		this.value = value;
	}

    /**
     * Gets the desc.
     *
     * @return the desc
     */
    public String getDesc() {
		return desc;
	}

    /**
     * Sets the desc.
     *
     * @param desc the new desc
     */
    public void setDesc(String desc) {
		this.desc = desc;
	}

    /**
     * The value.
     */
    public String value;

    /**
     * The desc.
     */
    public String desc;

    /**
     * Instantiates a new field code.
     *
     * @param v the v
     * @param d the d
     */
    public FieldCode(String v, String d) {
		setValue(v);
		setDesc(d);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy