admin
2019-03-12 4714dbbf7ead9e24f18a295890bdf5e75da991da
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;
    }
    
}