VenderStatistics.java 931 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package com.sagacloud.pojos;
  2. /*
  3. * Author: Jxing
  4. * Create Time: 2018/7/13
  5. */
  6. public class VenderStatistics {
  7. private String venderId;
  8. private int contractCount;
  9. private int totalCount;
  10. private int nearlyExpireCount;
  11. public String getVenderId() {
  12. return venderId;
  13. }
  14. public void setVenderId(String venderId) {
  15. this.venderId = venderId;
  16. }
  17. public int getContractCount() {
  18. return contractCount;
  19. }
  20. public void setContractCount(int contractCount) {
  21. this.contractCount = contractCount;
  22. }
  23. public int getTotalCount() {
  24. return totalCount;
  25. }
  26. public void setTotalCount(int totalCount) {
  27. this.totalCount = totalCount;
  28. }
  29. public int getNearlyExpireCount() {
  30. return nearlyExpireCount;
  31. }
  32. public void setNearlyExpireCount(int nearlyExpireCount) {
  33. this.nearlyExpireCount = nearlyExpireCount;
  34. }
  35. }