55fdcb174ddf732b026b8a524d95d09a3cc2e14d.svn-base 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 String inoculator;//受种者邮箱信息
  19. private int type;
  20. private boolean isWarning;
  21. @Generated(hash = 483727764)
  22. public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl,
  23. String jsonmap, String inoculator, int type, boolean isWarning) {
  24. this.id = id;
  25. this.interfaceName = interfaceName;
  26. this.interfaceUrl = interfaceUrl;
  27. this.jsonmap = jsonmap;
  28. this.inoculator = inoculator;
  29. this.type = type;
  30. this.isWarning = isWarning;
  31. }
  32. @Generated(hash = 586420465)
  33. public NetReConnectEntity() {
  34. }
  35. public Long getId() {
  36. return this.id;
  37. }
  38. public void setId(Long id) {
  39. this.id = id;
  40. }
  41. public String getInterfaceName() {
  42. return this.interfaceName;
  43. }
  44. public void setInterfaceName(String interfaceName) {
  45. this.interfaceName = interfaceName;
  46. }
  47. public String getInterfaceUrl() {
  48. return this.interfaceUrl;
  49. }
  50. public void setInterfaceUrl(String interfaceUrl) {
  51. this.interfaceUrl = interfaceUrl;
  52. }
  53. public String getJsonmap() {
  54. return this.jsonmap;
  55. }
  56. public void setJsonmap(String jsonmap) {
  57. this.jsonmap = jsonmap;
  58. }
  59. public String getInoculator() {
  60. return this.inoculator;
  61. }
  62. public void setInoculator(String inoculator) {
  63. this.inoculator = inoculator;
  64. }
  65. public int getType() {
  66. return this.type;
  67. }
  68. public void setType(int type) {
  69. this.type = type;
  70. }
  71. public boolean getIsWarning() {
  72. return this.isWarning;
  73. }
  74. public void setIsWarning(boolean isWarning) {
  75. this.isWarning = isWarning;
  76. }
  77. }