admin
2019-03-13 7e3d4837b8464c32c4c25f40eb01222a8759eeb9
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;
    }
    
}