extjs,ComboReturn

package cn.edu.hbcf.common.vo;

import java.io.Serializable;

public class ComboReturn  implements Serializable {

    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private String value;
    private String text;

    public ComboReturn(){
        
    }
    public ComboReturn(String text,String value){
    
        this.value = value;
        this.text = text;
    }
    public String getValue() {
        return value;
    }

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

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }
}
原文地址:https://www.cnblogs.com/zrui-xyu/p/4942821.html