#
18516761980
2021-08-16 f25c800bca726b67ea74e6ed576b038b1b9561a7
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
package com.slcf.pojo;
 
/**
 * PLC错误码实体类
 * @author admin
 * @date 2018年11月6日
 */
public class PlcErrorBean {
    private Long error_code;
    
    private String error_desc;
    
    private String modi_user;
    
    private String modi_time;
    
    private String appe_user;
    
    private String appe_time;
 
    /**
     * @return the error_code
     */
    public Long getError_code() {
        return error_code;
    }
 
    /**
     * @param error_code the error_code to set
     */
    public void setError_code(Long error_code) {
        this.error_code = error_code;
    }
 
    /**
     * @return the error_desc
     */
    public String getError_desc() {
        return error_desc;
    }
 
    /**
     * @param error_desc the error_desc to set
     */
    public void setError_desc(String error_desc) {
        this.error_desc = error_desc;
    }
 
    /**
     * @return the modi_user
     */
    public String getModi_user() {
        return modi_user;
    }
 
    /**
     * @param modi_user the modi_user to set
     */
    public void setModi_user(String modi_user) {
        this.modi_user = modi_user;
    }
 
    /**
     * @return the modi_time
     */
    public String getModi_time() {
        return modi_time;
    }
 
    /**
     * @param modi_time the modi_time to set
     */
    public void setModi_time(String modi_time) {
        this.modi_time = modi_time;
    }
 
    /**
     * @return the appe_user
     */
    public String getAppe_user() {
        return appe_user;
    }
 
    /**
     * @param appe_user the appe_user to set
     */
    public void setAppe_user(String appe_user) {
        this.appe_user = appe_user;
    }
 
    /**
     * @return the appe_time
     */
    public String getAppe_time() {
        return appe_time;
    }
 
    /**
     * @param appe_time the appe_time to set
     */
    public void setAppe_time(String appe_time) {
        this.appe_time = appe_time;
    }
 
    
}