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 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;
|
}
|
}
|