www.pudn.com > zhaobiao.rar > Type.java
/**
*
*/
package com.centralsoft.zhaobiao.qtdataguanli;
/**
* @author Administrator
*
*/
public class Type {
private long type_id;
private String type_name;
private String type_content;
public Type() {
}
public void setType_id(long type_id) {
this.type_id = type_id;
}
public long getType_id() {
return type_id;
}
public void setType_name(String type_name) {
this.type_name = type_name;
}
public String getType_name() {
return type_name;
}
public void setType_content(String type_content) {
this.type_content = type_content;
}
public String getType_content() {
return type_content;
}
}