OperationLogEnterPrise.java 12.1 KB
Newer Older
1
package pwc.taxtech.atms.entity;
eddie.woo's avatar
eddie.woo committed
2 3 4 5 6 7 8

import java.io.Serializable;
import java.util.Date;

/**
 *
 * This class was generated by MyBatis Generator.
gary's avatar
gary committed
9
 * This class corresponds to the database table operation_log_enter_prise
eddie.woo's avatar
eddie.woo committed
10 11 12
 *
 * @mbg.generated do_not_delete_during_merge
 */
gary's avatar
gary committed
13
public class OperationLogEnterPrise extends BaseEntity implements Serializable {
eddie.woo's avatar
eddie.woo committed
14 15 16
    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
17
     * This field corresponds to the database column operation_log_enter_prise.id
eddie.woo's avatar
eddie.woo committed
18 19 20
     *
     * @mbg.generated
     */
neo's avatar
neo committed
21
    private String id;
eddie.woo's avatar
eddie.woo committed
22 23 24 25

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
26
     * This field corresponds to the database column operation_log_enter_prise.operation_content
eddie.woo's avatar
eddie.woo committed
27 28 29 30 31 32 33 34
     *
     * @mbg.generated
     */
    private String operationContent;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
35
     * This field corresponds to the database column operation_log_enter_prise.module_name
eddie.woo's avatar
eddie.woo committed
36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    private String moduleName;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
44
     * This field corresponds to the database column operation_log_enter_prise.operation_object
eddie.woo's avatar
eddie.woo committed
45 46 47 48 49 50 51 52
     *
     * @mbg.generated
     */
    private String operationObject;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
53
     * This field corresponds to the database column operation_log_enter_prise.operation_action
eddie.woo's avatar
eddie.woo committed
54 55 56 57 58 59 60 61
     *
     * @mbg.generated
     */
    private String operationAction;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
62
     * This field corresponds to the database column operation_log_enter_prise.original_state
eddie.woo's avatar
eddie.woo committed
63 64 65 66 67 68 69 70
     *
     * @mbg.generated
     */
    private String originalState;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
71
     * This field corresponds to the database column operation_log_enter_prise.update_state
eddie.woo's avatar
eddie.woo committed
72 73 74 75 76 77 78 79
     *
     * @mbg.generated
     */
    private String updateState;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
80
     * This field corresponds to the database column operation_log_enter_prise.operation_user
eddie.woo's avatar
eddie.woo committed
81 82 83 84 85 86 87 88
     *
     * @mbg.generated
     */
    private String operationUser;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
89
     * This field corresponds to the database column operation_log_enter_prise.ip
eddie.woo's avatar
eddie.woo committed
90 91 92
     *
     * @mbg.generated
     */
neo's avatar
neo committed
93
    private String ip;
eddie.woo's avatar
eddie.woo committed
94 95 96 97

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
98
     * This field corresponds to the database column operation_log_enter_prise.comment
eddie.woo's avatar
eddie.woo committed
99 100 101 102 103 104 105 106
     *
     * @mbg.generated
     */
    private String comment;

    /**
     *
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
107
     * This field corresponds to the database column operation_log_enter_prise.create_time
eddie.woo's avatar
eddie.woo committed
108 109 110 111 112 113 114
     *
     * @mbg.generated
     */
    private Date createTime;

    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
115
     * This field corresponds to the database table operation_log_enter_prise
eddie.woo's avatar
eddie.woo committed
116 117 118 119 120 121 122
     *
     * @mbg.generated
     */
    private static final long serialVersionUID = 1L;

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
123
     * This method returns the value of the database column operation_log_enter_prise.id
eddie.woo's avatar
eddie.woo committed
124
     *
gary's avatar
gary committed
125
     * @return the value of operation_log_enter_prise.id
eddie.woo's avatar
eddie.woo committed
126 127 128
     *
     * @mbg.generated
     */
neo's avatar
neo committed
129 130
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
131 132 133 134
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
135
     * This method sets the value of the database column operation_log_enter_prise.id
eddie.woo's avatar
eddie.woo committed
136
     *
gary's avatar
gary committed
137
     * @param id the value for operation_log_enter_prise.id
eddie.woo's avatar
eddie.woo committed
138 139 140
     *
     * @mbg.generated
     */
neo's avatar
neo committed
141 142
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
eddie.woo's avatar
eddie.woo committed
143 144 145 146
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
147
     * This method returns the value of the database column operation_log_enter_prise.operation_content
eddie.woo's avatar
eddie.woo committed
148
     *
gary's avatar
gary committed
149
     * @return the value of operation_log_enter_prise.operation_content
eddie.woo's avatar
eddie.woo committed
150 151 152 153 154 155 156 157 158
     *
     * @mbg.generated
     */
    public String getOperationContent() {
        return operationContent;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
159
     * This method sets the value of the database column operation_log_enter_prise.operation_content
eddie.woo's avatar
eddie.woo committed
160
     *
gary's avatar
gary committed
161
     * @param operationContent the value for operation_log_enter_prise.operation_content
eddie.woo's avatar
eddie.woo committed
162 163 164 165 166 167 168 169 170
     *
     * @mbg.generated
     */
    public void setOperationContent(String operationContent) {
        this.operationContent = operationContent == null ? null : operationContent.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
171
     * This method returns the value of the database column operation_log_enter_prise.module_name
eddie.woo's avatar
eddie.woo committed
172
     *
gary's avatar
gary committed
173
     * @return the value of operation_log_enter_prise.module_name
eddie.woo's avatar
eddie.woo committed
174 175 176 177 178 179 180 181 182
     *
     * @mbg.generated
     */
    public String getModuleName() {
        return moduleName;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
183
     * This method sets the value of the database column operation_log_enter_prise.module_name
eddie.woo's avatar
eddie.woo committed
184
     *
gary's avatar
gary committed
185
     * @param moduleName the value for operation_log_enter_prise.module_name
eddie.woo's avatar
eddie.woo committed
186 187 188 189 190 191 192 193 194
     *
     * @mbg.generated
     */
    public void setModuleName(String moduleName) {
        this.moduleName = moduleName == null ? null : moduleName.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
195
     * This method returns the value of the database column operation_log_enter_prise.operation_object
eddie.woo's avatar
eddie.woo committed
196
     *
gary's avatar
gary committed
197
     * @return the value of operation_log_enter_prise.operation_object
eddie.woo's avatar
eddie.woo committed
198 199 200 201 202 203 204 205 206
     *
     * @mbg.generated
     */
    public String getOperationObject() {
        return operationObject;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
207
     * This method sets the value of the database column operation_log_enter_prise.operation_object
eddie.woo's avatar
eddie.woo committed
208
     *
gary's avatar
gary committed
209
     * @param operationObject the value for operation_log_enter_prise.operation_object
eddie.woo's avatar
eddie.woo committed
210 211 212 213 214 215 216 217 218
     *
     * @mbg.generated
     */
    public void setOperationObject(String operationObject) {
        this.operationObject = operationObject == null ? null : operationObject.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
219
     * This method returns the value of the database column operation_log_enter_prise.operation_action
eddie.woo's avatar
eddie.woo committed
220
     *
gary's avatar
gary committed
221
     * @return the value of operation_log_enter_prise.operation_action
eddie.woo's avatar
eddie.woo committed
222 223 224 225 226 227 228 229 230
     *
     * @mbg.generated
     */
    public String getOperationAction() {
        return operationAction;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
231
     * This method sets the value of the database column operation_log_enter_prise.operation_action
eddie.woo's avatar
eddie.woo committed
232
     *
gary's avatar
gary committed
233
     * @param operationAction the value for operation_log_enter_prise.operation_action
eddie.woo's avatar
eddie.woo committed
234 235 236 237 238 239 240 241 242
     *
     * @mbg.generated
     */
    public void setOperationAction(String operationAction) {
        this.operationAction = operationAction == null ? null : operationAction.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
243
     * This method returns the value of the database column operation_log_enter_prise.original_state
eddie.woo's avatar
eddie.woo committed
244
     *
gary's avatar
gary committed
245
     * @return the value of operation_log_enter_prise.original_state
eddie.woo's avatar
eddie.woo committed
246 247 248 249 250 251 252 253 254
     *
     * @mbg.generated
     */
    public String getOriginalState() {
        return originalState;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
255
     * This method sets the value of the database column operation_log_enter_prise.original_state
eddie.woo's avatar
eddie.woo committed
256
     *
gary's avatar
gary committed
257
     * @param originalState the value for operation_log_enter_prise.original_state
eddie.woo's avatar
eddie.woo committed
258 259 260 261 262 263 264 265 266
     *
     * @mbg.generated
     */
    public void setOriginalState(String originalState) {
        this.originalState = originalState == null ? null : originalState.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
267
     * This method returns the value of the database column operation_log_enter_prise.update_state
eddie.woo's avatar
eddie.woo committed
268
     *
gary's avatar
gary committed
269
     * @return the value of operation_log_enter_prise.update_state
eddie.woo's avatar
eddie.woo committed
270 271 272 273 274 275 276 277 278
     *
     * @mbg.generated
     */
    public String getUpdateState() {
        return updateState;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
279
     * This method sets the value of the database column operation_log_enter_prise.update_state
eddie.woo's avatar
eddie.woo committed
280
     *
gary's avatar
gary committed
281
     * @param updateState the value for operation_log_enter_prise.update_state
eddie.woo's avatar
eddie.woo committed
282 283 284 285 286 287 288 289 290
     *
     * @mbg.generated
     */
    public void setUpdateState(String updateState) {
        this.updateState = updateState == null ? null : updateState.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
291
     * This method returns the value of the database column operation_log_enter_prise.operation_user
eddie.woo's avatar
eddie.woo committed
292
     *
gary's avatar
gary committed
293
     * @return the value of operation_log_enter_prise.operation_user
eddie.woo's avatar
eddie.woo committed
294 295 296 297 298 299 300 301 302
     *
     * @mbg.generated
     */
    public String getOperationUser() {
        return operationUser;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
303
     * This method sets the value of the database column operation_log_enter_prise.operation_user
eddie.woo's avatar
eddie.woo committed
304
     *
gary's avatar
gary committed
305
     * @param operationUser the value for operation_log_enter_prise.operation_user
eddie.woo's avatar
eddie.woo committed
306 307 308 309 310 311 312 313 314
     *
     * @mbg.generated
     */
    public void setOperationUser(String operationUser) {
        this.operationUser = operationUser == null ? null : operationUser.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
315
     * This method returns the value of the database column operation_log_enter_prise.ip
eddie.woo's avatar
eddie.woo committed
316
     *
gary's avatar
gary committed
317
     * @return the value of operation_log_enter_prise.ip
eddie.woo's avatar
eddie.woo committed
318 319 320
     *
     * @mbg.generated
     */
neo's avatar
neo committed
321 322
    public String getIp() {
        return ip;
eddie.woo's avatar
eddie.woo committed
323 324 325 326
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
327
     * This method sets the value of the database column operation_log_enter_prise.ip
eddie.woo's avatar
eddie.woo committed
328
     *
gary's avatar
gary committed
329
     * @param ip the value for operation_log_enter_prise.ip
eddie.woo's avatar
eddie.woo committed
330 331 332
     *
     * @mbg.generated
     */
neo's avatar
neo committed
333 334
    public void setIp(String ip) {
        this.ip = ip == null ? null : ip.trim();
eddie.woo's avatar
eddie.woo committed
335 336 337 338
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
339
     * This method returns the value of the database column operation_log_enter_prise.comment
eddie.woo's avatar
eddie.woo committed
340
     *
gary's avatar
gary committed
341
     * @return the value of operation_log_enter_prise.comment
eddie.woo's avatar
eddie.woo committed
342 343 344 345 346 347 348 349 350
     *
     * @mbg.generated
     */
    public String getComment() {
        return comment;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
351
     * This method sets the value of the database column operation_log_enter_prise.comment
eddie.woo's avatar
eddie.woo committed
352
     *
gary's avatar
gary committed
353
     * @param comment the value for operation_log_enter_prise.comment
eddie.woo's avatar
eddie.woo committed
354 355 356 357 358 359 360 361 362
     *
     * @mbg.generated
     */
    public void setComment(String comment) {
        this.comment = comment == null ? null : comment.trim();
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
363
     * This method returns the value of the database column operation_log_enter_prise.create_time
eddie.woo's avatar
eddie.woo committed
364
     *
gary's avatar
gary committed
365
     * @return the value of operation_log_enter_prise.create_time
eddie.woo's avatar
eddie.woo committed
366 367 368 369 370 371 372 373 374
     *
     * @mbg.generated
     */
    public Date getCreateTime() {
        return createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
375
     * This method sets the value of the database column operation_log_enter_prise.create_time
eddie.woo's avatar
eddie.woo committed
376
     *
gary's avatar
gary committed
377
     * @param createTime the value for operation_log_enter_prise.create_time
eddie.woo's avatar
eddie.woo committed
378 379 380 381 382 383 384 385 386
     *
     * @mbg.generated
     */
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
387
     * This method corresponds to the database table operation_log_enter_prise
eddie.woo's avatar
eddie.woo committed
388 389 390 391 392 393 394 395 396
     *
     * @mbg.generated
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append(getClass().getSimpleName());
        sb.append(" [");
        sb.append("Hash = ").append(hashCode());
neo's avatar
neo committed
397
        sb.append(", id=").append(id);
eddie.woo's avatar
eddie.woo committed
398 399 400 401 402 403 404
        sb.append(", operationContent=").append(operationContent);
        sb.append(", moduleName=").append(moduleName);
        sb.append(", operationObject=").append(operationObject);
        sb.append(", operationAction=").append(operationAction);
        sb.append(", originalState=").append(originalState);
        sb.append(", updateState=").append(updateState);
        sb.append(", operationUser=").append(operationUser);
neo's avatar
neo committed
405
        sb.append(", ip=").append(ip);
eddie.woo's avatar
eddie.woo committed
406 407 408 409 410 411
        sb.append(", comment=").append(comment);
        sb.append(", createTime=").append(createTime);
        sb.append("]");
        return sb.toString();
    }
}