7951b092d453c49bb849f7e692ecf48e2e56b888.svn-base 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package eVVM.apk.entity;
  2. import org.greenrobot.greendao.annotation.Entity;
  3. import org.greenrobot.greendao.annotation.Generated;
  4. import org.greenrobot.greendao.annotation.Id;
  5. /**
  6. * Created by Android Studio.
  7. * User: zbb
  8. * Date: 2019/8/8
  9. * Describe: NetReConnectEntity
  10. */
  11. @Entity
  12. public class NetReConnectEntity {
  13. @Id
  14. private Long id;
  15. private String interfaceName;
  16. private String interfaceUrl;
  17. private String jsonmap;
  18. private int type;
  19. private boolean isWarning;
  20. @Generated(hash = 1421402677)
  21. public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl,
  22. String jsonmap, int type, boolean isWarning) {
  23. this.id = id;
  24. this.interfaceName = interfaceName;
  25. this.interfaceUrl = interfaceUrl;
  26. this.jsonmap = jsonmap;
  27. this.type = type;
  28. this.isWarning = isWarning;
  29. }
  30. @Generated(hash = 586420465)
  31. public NetReConnectEntity() {
  32. }
  33. public Long getId() {
  34. return this.id;
  35. }
  36. public void setId(Long id) {
  37. this.id = id;
  38. }
  39. public String getInterfaceName() {
  40. return this.interfaceName;
  41. }
  42. public void setInterfaceName(String interfaceName) {
  43. this.interfaceName = interfaceName;
  44. }
  45. public String getJsonmap() {
  46. return this.jsonmap;
  47. }
  48. public void setJsonmap(String jsonmap) {
  49. this.jsonmap = jsonmap;
  50. }
  51. public int getType() {
  52. return this.type;
  53. }
  54. public void setType(int type) {
  55. this.type = type;
  56. }
  57. public String getInterfaceUrl() {
  58. return this.interfaceUrl;
  59. }
  60. public void setInterfaceUrl(String interfaceUrl) {
  61. this.interfaceUrl = interfaceUrl;
  62. }
  63. public boolean getIsWarning() {
  64. return this.isWarning;
  65. }
  66. public void setIsWarning(boolean isWarning) {
  67. this.isWarning = isWarning;
  68. }
  69. @Override
  70. public String toString() {
  71. return "NetReConnectEntity{" +
  72. "id=" + id +
  73. ", interfaceName='" + interfaceName + '\'' +
  74. ", interfaceUrl='" + interfaceUrl + '\'' +
  75. ", jsonmap='" + jsonmap + '\'' +
  76. ", type=" + type +
  77. ", isWarning=" + isWarning +
  78. '}';
  79. }
  80. }