zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
package com.shlanbao.tzsc.base.mapping;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
 
import java.util.Date;
 
 
public class EqmTroubleInfo extends BaseEntity {
 
    private String id;
    private String code;//代码,用作标识故障信息
    private String description;//故障描述
    private String type;//标题,用于树状结构区分多级标题
    private Date create_date;//故障创建时间
    private String parent_id;//父节点id
    public EqmTroubleInfo() {
        super();
    }
    public EqmTroubleInfo(String id, String code, String description,
            String type, Date create_date, String parent_id) {
        super();
        this.id = id;
        this.code = code;
        this.description = description;
        this.type = type;
        this.create_date = create_date;
        this.parent_id = parent_id;
    }
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }
    public Date getCreate_date() {
        return create_date;
    }
    public void setCreate_date(Date create_date) {
        this.create_date = create_date;
    }
    public String getParent_id() {
        return parent_id;
    }
    public void setParent_id(String parent_id) {
        this.parent_id = parent_id;
    }
 
    
    
}