admin
2019-03-19 2019c99e41c1d5a58afb00c4291f7e8451004ddd
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;
    }
    
}