/**
|
* @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 + "]";
|
}
|
|
}
|