yujian
2019-03-08 69ef1fc76ac57e8669cb7bd084c35b0ac447f703
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;
    }
    
}