首页 > Web开发 > 详细

extjs,ComboReturn

时间:2015-11-06 16:15:38      阅读:237      评论:0      收藏:0      [点我收藏+]
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;
    }
}

 

extjs,ComboReturn

原文:http://www.cnblogs.com/zrui-xyu/p/4942821.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!