f3634aed9cb163a60db8f1fb20dad0583ec41a19.svn-base 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. @Generated(hash = 1046614459)
  20. public NetReConnectEntity(Long id, String interfaceName, String interfaceUrl,
  21. String jsonmap, int type) {
  22. this.id = id;
  23. this.interfaceName = interfaceName;
  24. this.interfaceUrl = interfaceUrl;
  25. this.jsonmap = jsonmap;
  26. this.type = type;
  27. }
  28. @Generated(hash = 586420465)
  29. public NetReConnectEntity() {
  30. }
  31. public Long getId() {
  32. return this.id;
  33. }
  34. public void setId(Long id) {
  35. this.id = id;
  36. }
  37. public String getInterfaceName() {
  38. return this.interfaceName;
  39. }
  40. public void setInterfaceName(String interfaceName) {
  41. this.interfaceName = interfaceName;
  42. }
  43. public String getJsonmap() {
  44. return this.jsonmap;
  45. }
  46. public void setJsonmap(String jsonmap) {
  47. this.jsonmap = jsonmap;
  48. }
  49. public int getType() {
  50. return this.type;
  51. }
  52. public void setType(int type) {
  53. this.type = type;
  54. }
  55. public String getInterfaceUrl() {
  56. return this.interfaceUrl;
  57. }
  58. public void setInterfaceUrl(String interfaceUrl) {
  59. this.interfaceUrl = interfaceUrl;
  60. }
  61. }