王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package com.slcf.pojo;
 
/**
 * PLC命令日志实体类
 * @author admin
 * @date 2019年5月6日
 */
public class PlcCommandBean {
    private String track_time;
    private String io_time;
    private int wrk_no;
    private String wrk_type;
    private String s_station;
    private String o_location;
    private String s_location;
    private String o_station;
    private String modi_user;
    private String modi_time;
    private String appe_user;
    private String appe_time;
    private String dev_no;
    private int input_type;
    private String wrk_time;
    private int tag;
    private String err_name;
    private int pageNumber;
    private int pageSize;
    private String begin_date; //查询开始日期
    private String end_date;   //查询截止日期
    
    public String getTrack_time() {
        return track_time;
    }
    public void setTrack_time(String track_time) {
        this.track_time = track_time;
    }
    public String getIo_time() {
        return io_time;
    }
    public void setIo_time(String io_time) {
        this.io_time = io_time;
    }
    public int getWrk_no() {
        return wrk_no;
    }
    public void setWrk_no(int wrk_no) {
        this.wrk_no = wrk_no;
    }
    public String getWrk_type() {
        return wrk_type;
    }
    public void setWrk_type(String wrk_type) {
        this.wrk_type = wrk_type;
    }
    public String getS_station() {
        return s_station;
    }
    public void setS_station(String s_station) {
        this.s_station = s_station;
    }
    public String getO_location() {
        return o_location;
    }
    public void setO_location(String o_location) {
        this.o_location = o_location;
    }
    public String getS_location() {
        return s_location;
    }
    public void setS_location(String s_location) {
        this.s_location = s_location;
    }
    public String getO_station() {
        return o_station;
    }
    public void setO_station(String o_station) {
        this.o_station = o_station;
    }
    public String getModi_user() {
        return modi_user;
    }
    public void setModi_user(String modi_user) {
        this.modi_user = modi_user;
    }
    public String getModi_time() {
        return modi_time;
    }
    public void setModi_time(String modi_time) {
        this.modi_time = modi_time;
    }
    public String getAppe_user() {
        return appe_user;
    }
    public void setAppe_user(String appe_user) {
        this.appe_user = appe_user;
    }
    public String getAppe_time() {
        return appe_time;
    }
    public void setAppe_time(String appe_time) {
        this.appe_time = appe_time;
    }
    public String getDev_no() {
        return dev_no;
    }
    public void setDev_no(String dev_no) {
        this.dev_no = dev_no;
    }
    public int getInput_type() {
        return input_type;
    }
    public void setInput_type(int input_type) {
        this.input_type = input_type;
    }
    public String getWrk_time() {
        return wrk_time;
    }
    public void setWrk_time(String wrk_time) {
        this.wrk_time = wrk_time;
    }
    public int getTag() {
        return tag;
    }
    public void setTag(int tag) {
        this.tag = tag;
    }
    public String getErr_name() {
        return err_name;
    }
    public void setErr_name(String err_name) {
        this.err_name = err_name;
    }
    public int getPageNumber() {
        return pageNumber;
    }
    public void setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
    }
    public int getPageSize() {
        return pageSize;
    }
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
    public String getBegin_date() {
        return begin_date;
    }
    public void setBegin_date(String begin_date) {
        this.begin_date = begin_date;
    }
    public String getEnd_date() {
        return end_date;
    }
    public void setEnd_date(String end_date) {
        this.end_date = end_date;
    }
}