| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- 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;
- private boolean isWarning;
- @Generated(hash = 1421402677)
- public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl,
- String jsonmap, int type, boolean isWarning) {
- this.id = id;
- this.interfaceName = interfaceName;
- this.interfaceUrl = interfaceUrl;
- this.jsonmap = jsonmap;
- 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 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;
- }
- public boolean getIsWarning() {
- return this.isWarning;
- }
- public void setIsWarning(boolean isWarning) {
- this.isWarning = isWarning;
- }
- @Override
- public String toString() {
- return "NetReConnectEntity{" +
- "id=" + id +
- ", interfaceName='" + interfaceName + '\'' +
- ", interfaceUrl='" + interfaceUrl + '\'' +
- ", jsonmap='" + jsonmap + '\'' +
- ", type=" + type +
- ", isWarning=" + isWarning +
- '}';
- }
- }
|