416dba7c0e750a87f744c77cddfb82ef5fc5ebb3.svn-base 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. }