2a2f09ae99f64d000e4cfabcf3caebf03946e9cf.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. @Generated(hash = 1976015523)
  18. public NRCReportEntity(Long id, String vnDetailBean, int type) {
  19. this.id = id;
  20. this.vnDetailBean = vnDetailBean;
  21. this.type = type;
  22. }
  23. @Generated(hash = 1722448085)
  24. public NRCReportEntity() {
  25. }
  26. public Long getId() {
  27. return this.id;
  28. }
  29. public void setId(Long id) {
  30. this.id = id;
  31. }
  32. public String getVnDetailBean() {
  33. return this.vnDetailBean;
  34. }
  35. public void setVnDetailBean(String vnDetailBean) {
  36. this.vnDetailBean = vnDetailBean;
  37. }
  38. public int getType() {
  39. return this.type;
  40. }
  41. public void setType(int type) {
  42. this.type = type;
  43. }
  44. }