package com.yeshi.fanli.vo.push;
|
|
import com.yeshi.fanli.entity.push.PushCoupon;
|
|
public class PushCouponVO extends PushCoupon {
|
|
// 已领取券数量
|
private long receivedCount;
|
|
public long getReceivedCount() {
|
return receivedCount;
|
}
|
|
public void setReceivedCount(long receivedCount) {
|
this.receivedCount = receivedCount;
|
}
|
|
}
|