yujian
2019-03-06 6d25430971ced96d9304f31d2e0bf75cc64c2626
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
    }
    
}