package com.hxzkoa.json;
|
|
import java.sql.Time;
|
|
public class tb_offtag {
|
private int id;
|
private Time TIMESTAMP;
|
private int RCDNUM;
|
private int TOTALNUM;
|
private String tagid;
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public Time getTIMESTAMP() {
|
return TIMESTAMP;
|
}
|
|
public void setTIMESTAMP(Time tIMESTAMP) {
|
TIMESTAMP = tIMESTAMP;
|
}
|
|
public int getRCDNUM() {
|
return RCDNUM;
|
}
|
|
public void setRCDNUM(int rCDNUM) {
|
RCDNUM = rCDNUM;
|
}
|
|
public int getTOTALNUM() {
|
return TOTALNUM;
|
}
|
|
public void setTOTALNUM(int tOTALNUM) {
|
TOTALNUM = tOTALNUM;
|
}
|
|
public String getTagid() {
|
return tagid;
|
}
|
|
public void setTagid(String tagid) {
|
this.tagid = tagid;
|
}
|
|
}
|