ludc
2024-09-14 36c2449aec5b51e5ed4e5c6841154b746060e09a
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
 * @author xchao
 * @time 2012-4-26
 * @desc 
 * @version 
 * @since 
 */
package com.vci.client.ui.swing.components.table.test;
 
import java.io.Serializable;
 
public class TestPO implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 7762793212352601827L;
    private int id = 0;
    private String name = "";
    private String desc = "";
    private String other = "";
    public TestPO(){
        super();
    }
    public TestPO(int id, String name, String desc, String other) {
        super();
        this.id = id;
        this.name = name;
        this.desc = desc;
        this.other = other;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getDesc() {
        return desc;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    }
    public String getOther() {
        return other;
    }
    public void setOther(String other) {
        this.other = other;
    }
    @Override
    public String toString() {
        return "TestPO [id=" + id + ", name=" + name + ", desc=" + desc
                + ", other=" + other + "]";
    }
    
}