| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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 String inoculator;//受种者邮箱信息
- private int type;
- private boolean isWarning;
- @Generated(hash = 483727764)
- public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl,
- String jsonmap, String inoculator, int type, boolean isWarning) {
- this.id = id;
- this.interfaceName = interfaceName;
- this.interfaceUrl = interfaceUrl;
- this.jsonmap = jsonmap;
- this.inoculator = inoculator;
- this.type = type;
- this.isWarning = isWarning;
- }
- @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 getInterfaceUrl() {
- return this.interfaceUrl;
- }
- public void setInterfaceUrl(String interfaceUrl) {
- this.interfaceUrl = interfaceUrl;
- }
- public String getJsonmap() {
- return this.jsonmap;
- }
- public void setJsonmap(String jsonmap) {
- this.jsonmap = jsonmap;
- }
- public String getInoculator() {
- return this.inoculator;
- }
- public void setInoculator(String inoculator) {
- this.inoculator = inoculator;
- }
- public int getType() {
- return this.type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public boolean getIsWarning() {
- return this.isWarning;
- }
- public void setIsWarning(boolean isWarning) {
- this.isWarning = isWarning;
- }
- }
|