zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.shlanbao.tzsc.base.model;
/**
 * Easyui combobox组件model
 * <li>@author Leejean
 * <li>@create 2014-6-24 下午04:16:05
 */
public class Combobox implements java.io.Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private String id;
    private String name;
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Combobox() {
        // TODO Auto-generated constructor stub
    }
    public Combobox(String id, String name) {
        super();
        this.id = id;
        this.name = name;
    }
    
    
    
}