package eVVM.apk.entity; import org.greenrobot.greendao.annotation.Entity; import org.greenrobot.greendao.annotation.Generated; import org.greenrobot.greendao.annotation.Id; /** * Created by Android Studio. * User: zbb * Date: 2019/8/8 * Describe: NetReConnectEntity */ @Entity public class NetReConnectEntity { @Id private Long id; private String interfaceName; private String interfaceUrl; private String jsonmap; private int type; @Generated(hash = 1046614459) public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl, String jsonmap, int type) { this.id = id; this.interfaceName = interfaceName; this.interfaceUrl = interfaceUrl; this.jsonmap = jsonmap; this.type = type; } @Generated(hash = 586420465) public NetReConnectEntity() { } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getInterfaceName() { return this.interfaceName; } public void setInterfaceName(String interfaceName) { this.interfaceName = interfaceName; } public String getJsonmap() { return this.jsonmap; } public void setJsonmap(String jsonmap) { this.jsonmap = jsonmap; } public int getType() { return this.type; } public void setType(int type) { this.type = type; } public String getInterfaceUrl() { return this.interfaceUrl; } public void setInterfaceUrl(String interfaceUrl) { this.interfaceUrl = interfaceUrl; } }