fa9cb47e0074d74cf3f537ff371ae11c7eb3d826.svn-base 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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/12
  9. * Describe: NRCReportEntity
  10. */
  11. @Entity
  12. public class NRCReportEntity {
  13. @Id
  14. private Long id;
  15. private String vnDetailBean;
  16. private int type;
  17. private boolean isWarning;
  18. @Generated(hash = 807432003)
  19. public NRCReportEntity(Long id, String vnDetailBean, int type,
  20. boolean isWarning) {
  21. this.id = id;
  22. this.vnDetailBean = vnDetailBean;
  23. this.type = type;
  24. this.isWarning = isWarning;
  25. }
  26. @Generated(hash = 1722448085)
  27. public NRCReportEntity() {
  28. }
  29. public Long getId() {
  30. return this.id;
  31. }
  32. public void setId(Long id) {
  33. this.id = id;
  34. }
  35. public String getVnDetailBean() {
  36. return this.vnDetailBean;
  37. }
  38. public void setVnDetailBean(String vnDetailBean) {
  39. this.vnDetailBean = vnDetailBean;
  40. }
  41. public int getType() {
  42. return this.type;
  43. }
  44. public void setType(int type) {
  45. this.type = type;
  46. }
  47. public boolean getIsWarning() {
  48. return this.isWarning;
  49. }
  50. public void setIsWarning(boolean isWarning) {
  51. this.isWarning = isWarning;
  52. }
  53. @Override
  54. public String toString() {
  55. return "NRCReportEntity{" +
  56. "id=" + id +
  57. ", vnDetailBean='" + vnDetailBean + '\'' +
  58. ", type=" + type +
  59. ", isWarning=" + isWarning +
  60. '}';
  61. }
  62. }