2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package com.landtool.lanbase.modules.res.entity.UserDefined;
 
import java.sql.Timestamp;
 
public class MainInfoJoinActionRecord {
 
    private Integer resourceid;
 
    private String title;
 
    private String abbreviation;
 
    private String resourceclass;
 
    private Integer pubunitid;
 
    private java.sql.Timestamp pubdate;
 
    private Long userid;
 
    private java.sql.Timestamp actiontime;
 
    private String actiontype;
 
    private String pubdateBegin;
 
    private String pubdatefinish;
 
    private String actiontimebegin;
 
    private String actiontimefinish;
 
    private String existpermission;//超级管理员字段
 
    private Integer actionid;
 
    private String sort;
 
    private String dir;
 
    private Integer appid;
 
    private String ip;
 
    public String getPubdatefinish() {
        return pubdatefinish;
    }
 
    public void setPubdatefinish(String pubdatefinish) {
        this.pubdatefinish = pubdatefinish;
    }
 
    public String getPubdateBegin() {
        return pubdateBegin;
    }
 
    public void setPubdateBegin(String pubdateBegin) {
        this.pubdateBegin = pubdateBegin;
    }
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getAbbreviation() {
        return abbreviation;
    }
 
    public void setAbbreviation(String abbreviation) {
        this.abbreviation = abbreviation;
    }
 
    public String getResourceclass() {
        return resourceclass;
    }
 
    public void setResourceclass(String resourceclass) {
        this.resourceclass = resourceclass;
    }
 
    public Integer getPubunitid() {
        return pubunitid;
    }
 
    public void setPubunitid(Integer pubunitid) {
        this.pubunitid = pubunitid;
    }
 
    public Timestamp getPubdate() {
        return pubdate;
    }
 
    public void setPubdate(Timestamp pubdate) {
        this.pubdate = pubdate;
    }
 
    public Long getUserid() {
        return userid;
    }
 
    public void setUserid(Long userid) {
        this.userid = userid;
    }
 
    public Timestamp getActiontime() {
        return actiontime;
    }
 
    public void setActiontime(Timestamp actiontime) {
        this.actiontime = actiontime;
    }
 
    public String getActiontype() {
        return actiontype;
    }
 
    public void setActiontype(String actiontype) {
        this.actiontype = actiontype;
    }
 
    public String getActiontimebegin() {
        return actiontimebegin;
    }
 
    public void setActiontimebegin(String actiontimebegin) {
        this.actiontimebegin = actiontimebegin;
    }
 
    public String getActiontimefinish() {
        return actiontimefinish;
    }
 
    public void setActiontimefinish(String actiontimefinish) {
        this.actiontimefinish = actiontimefinish;
    }
 
    public String getExistpermission() {
        return existpermission;
    }
 
    public void setExistpermission(String existpermission) {
        this.existpermission = existpermission;
    }
 
    public Integer getActionid() {
        return actionid;
    }
 
    public void setActionid(Integer actionid) {
        this.actionid = actionid;
    }
 
    public String getSort() {
        return sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    public String getDir() {
        return dir;
    }
 
    public void setDir(String dir) {
        this.dir = dir;
    }
 
    public Integer getAppid() {
        return appid;
    }
 
    public void setAppid(Integer appid) {
        this.appid = appid;
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    @Override
    public String toString() {
        return "MainInfoJoinActionRecord{" +
                "resourceid=" + resourceid +
                ", title=" + title +
                ", abbreviation=" + abbreviation +
                ", resourceclass=" + resourceclass +
                ", pubunitid=" + pubunitid +
                ", pubdate=" + pubdate +
                ", userid=" + userid +
                ", actiontime=" + actiontime +
                ", actiontype=" + actiontype +
                ", actiontimebegin=" + actiontimebegin +
                ", actiontimefinish=" + actiontimefinish +
                ", existpermission=" + existpermission +
                ", actionid=" + actionid +
                ", sort=" + sort +
                ", dir=" + dir +
                ", appid=" + appid +
                ", ip=" + ip +
                '}';
    }
}