FreeShippingCount.java 723 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package com.caimei.modules.activity.model;
  2. /**
  3. * 使用情况统计
  4. * @author LG
  5. * @date 2016年5月31日
  6. * @version 1.0
  7. */
  8. public class FreeShippingCount {
  9. private Long total; //总数
  10. private Long unused;//未使用
  11. private Long used; //已使用
  12. private Long unpay; //未付款
  13. public Long getTotal() {
  14. return total;
  15. }
  16. public void setTotal(Long total) {
  17. this.total = total;
  18. }
  19. public Long getUnused() {
  20. return unused;
  21. }
  22. public void setUnused(Long unused) {
  23. this.unused = unused;
  24. }
  25. public Long getUsed() {
  26. return used;
  27. }
  28. public void setUsed(Long used) {
  29. this.used = used;
  30. }
  31. public Long getUnpay() {
  32. return unpay;
  33. }
  34. public void setUnpay(Long unpay) {
  35. this.unpay = unpay;
  36. }
  37. }