40875c01e0e30a8b60865097f9c5b1a1d4c035f5.svn-base 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 String inoculator;//受种者邮箱信息
  17. private int type;
  18. private boolean isWarning;
  19. @Generated(hash = 1283745167)
  20. public NRCReportEntity(Long id, String vnDetailBean, String inoculator,
  21. int type, boolean isWarning) {
  22. this.id = id;
  23. this.vnDetailBean = vnDetailBean;
  24. this.inoculator = inoculator;
  25. this.type = type;
  26. this.isWarning = isWarning;
  27. }
  28. @Generated(hash = 1722448085)
  29. public NRCReportEntity() {
  30. }
  31. public Long getId() {
  32. return this.id;
  33. }
  34. public void setId(Long id) {
  35. this.id = id;
  36. }
  37. public String getVnDetailBean() {
  38. return this.vnDetailBean;
  39. }
  40. public void setVnDetailBean(String vnDetailBean) {
  41. this.vnDetailBean = vnDetailBean;
  42. }
  43. public String getInoculator() {
  44. return this.inoculator;
  45. }
  46. public void setInoculator(String inoculator) {
  47. this.inoculator = inoculator;
  48. }
  49. public int getType() {
  50. return this.type;
  51. }
  52. public void setType(int type) {
  53. this.type = type;
  54. }
  55. public boolean getIsWarning() {
  56. return this.isWarning;
  57. }
  58. public void setIsWarning(boolean isWarning) {
  59. this.isWarning = isWarning;
  60. }
  61. }