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
package cn.flightfeather.thirdapp.bean;
 
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 Domaincatalog {
 
    @Id
    private String guid;
 
    @Property
    private String name;
    @Property
 
    private Integer capacity;
    @Property
 
    private Integer version;
    @Generated(hash = 1659056839)
    public Domaincatalog(String guid, String name, Integer capacity,
            Integer version) {
        this.guid = guid;
        this.name = name;
        this.capacity = capacity;
        this.version = version;
    }
    @Generated(hash = 688029232)
    public Domaincatalog() {
    }
    public String getGuid() {
        return this.guid;
    }
    public void setGuid(String guid) {
        this.guid = guid;
    }
    public String getName() {
        return this.name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Integer getCapacity() {
        return this.capacity;
    }
    public void setCapacity(Integer capacity) {
        this.capacity = capacity;
    }
    public Integer getVersion() {
        return this.version;
    }
    public void setVersion(Integer version) {
        this.version = version;
    }
}