1234567891011121314151617181920212223242526272829303132333435363738394041 |
- package com.caimei.modules.activity.model;
- /**
- * 使用情况统计
- * @author LG
- * @date 2016年5月31日
- * @version 1.0
- */
- public class FreeShippingCount {
-
- private Long total; //总数
- private Long unused;//未使用
- private Long used; //已使用
- private Long unpay; //未付款
-
- public Long getTotal() {
- return total;
- }
- public void setTotal(Long total) {
- this.total = total;
- }
- public Long getUnused() {
- return unused;
- }
- public void setUnused(Long unused) {
- this.unused = unused;
- }
- public Long getUsed() {
- return used;
- }
- public void setUsed(Long used) {
- this.used = used;
- }
- public Long getUnpay() {
- return unpay;
- }
- public void setUnpay(Long unpay) {
- this.unpay = unpay;
- }
- }
|