riku
2025-10-27 0f58aa8ea118c3bd0b28396febc58fdbd94eef75
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
package cn.flightfeather.thirdappmodule.bean.entity;
 
import org.greenrobot.greendao.annotation.Entity;
import org.greenrobot.greendao.annotation.Id;
import org.greenrobot.greendao.annotation.Property;
import org.greenrobot.greendao.annotation.Generated;
 
/**
 * Created by note_ff_1602 on 2017/12/26.
 */
@Entity
public class Domainitem {
    
    @Id
    private String guid;
    
    @Property
    private String dcguid;
    
    @Property
    private String catelogname;
    
    @Property
    private String value;
    
    @Property
    private String text;
    
    @Property
    private Integer index;
    
    @Property
    private String parentguid;
    
    @Property
    private Boolean isenable;
    
    @Property
    private String code;
    
    @Property
    private String remark;
 
    @Generated(hash = 364078670)
    public Domainitem(String guid, String dcguid, String catelogname, String value,
            String text, Integer index, String parentguid, Boolean isenable,
            String code, String remark) {
        this.guid = guid;
        this.dcguid = dcguid;
        this.catelogname = catelogname;
        this.value = value;
        this.text = text;
        this.index = index;
        this.parentguid = parentguid;
        this.isenable = isenable;
        this.code = code;
        this.remark = remark;
    }
 
    @Generated(hash = 1359730206)
    public Domainitem() {
    }
 
    public String getGuid() {
        return this.guid;
    }
 
    public void setGuid(String guid) {
        this.guid = guid;
    }
 
    public String getDcguid() {
        return this.dcguid;
    }
 
    public void setDcguid(String dcguid) {
        this.dcguid = dcguid;
    }
 
    public String getCatelogname() {
        return this.catelogname;
    }
 
    public void setCatelogname(String catelogname) {
        this.catelogname = catelogname;
    }
 
    public String getValue() {
        return this.value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
    public String getText() {
        return this.text;
    }
 
    public void setText(String text) {
        this.text = text;
    }
 
    public Integer getIndex() {
        return this.index;
    }
 
    public void setIndex(Integer index) {
        this.index = index;
    }
 
    public String getParentguid() {
        return this.parentguid;
    }
 
    public void setParentguid(String parentguid) {
        this.parentguid = parentguid;
    }
 
    public Boolean getIsenable() {
        return this.isenable;
    }
 
    public void setIsenable(Boolean isenable) {
        this.isenable = isenable;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getRemark() {
        return this.remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
}