838e18d5a74e6f512ef23565e260054027d1de3f.svn-base 1.3 KB

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