9.1
15832144755
2021-09-01 c6d9be2aac4965e847fd958288170e26e79b219d
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
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;
    }
 
}