zoukankan      html  css  js  c++  java
  • 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;
        }
    }
  • 相关阅读:
    js中级-函数封装
    js中级-11.7
    js中级-11.5
    js中级-11.2
    js中级-this
    js中级-作用域链
    10.23
    10.22
    10.19js
    10.18
  • 原文地址:https://www.cnblogs.com/zrui-xyu/p/4942821.html
Copyright © 2011-2022 走看看