package com.yeshi.fanli.vo.push;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.push.PushCoupon;
|
|
public class PushCouponVO extends PushCoupon {
|
|
// 已领取券数量
|
private long receivedCount;
|
|
// ios推送版本
|
private List<String> listIOS;
|
// Android推送版本
|
private List<String> listAndroid;
|
|
public long getReceivedCount() {
|
return receivedCount;
|
}
|
|
public void setReceivedCount(long receivedCount) {
|
this.receivedCount = receivedCount;
|
}
|
|
public List<String> getListIOS() {
|
return listIOS;
|
}
|
|
public void setListIOS(List<String> listIOS) {
|
this.listIOS = listIOS;
|
}
|
|
public List<String> getListAndroid() {
|
return listAndroid;
|
}
|
|
public void setListAndroid(List<String> listAndroid) {
|
this.listAndroid = listAndroid;
|
}
|
|
}
|