InsurancePost.java 859 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.sagacloud.pojos;
  2. /*
  3. * Author: Jxing
  4. * Create Time: 2018/7/12
  5. */
  6. public class InsurancePost {
  7. private String venderId;
  8. private String projectId;
  9. private String insuranceNo;
  10. private boolean expire;
  11. public String getVenderId() {
  12. return venderId;
  13. }
  14. public void setVenderId(String venderId) {
  15. this.venderId = venderId;
  16. }
  17. public String getProjectId() {
  18. return projectId;
  19. }
  20. public void setProjectId(String projectId) {
  21. this.projectId = projectId;
  22. }
  23. public String getInsuranceNo() {
  24. return insuranceNo;
  25. }
  26. public void setInsuranceNo(String insuranceNo) {
  27. this.insuranceNo = insuranceNo;
  28. }
  29. public boolean isExpire() {
  30. return expire;
  31. }
  32. public void setExpire(boolean expire) {
  33. this.expire = expire;
  34. }
  35. }