package com.sandu.ximon.admin.dto.wxquery;
|
|
import lombok.Data;
|
|
/**
|
* @Author liuhaonan
|
* @Date 2022/3/29
|
* @Version 1.0
|
*/
|
@Data
|
public class promotion_detail {
|
private String coupon_id;//券ID
|
private String name;//优惠名称
|
private String scope;//优惠范围
|
private String type;//优惠类型 CASH:充值 NOCASH:预充值
|
private Integer amount; //优惠券面额
|
private String stock_id;//活动ID
|
private Integer wechatpay_contribute;//微信出资
|
private Integer merchant_contribute;//商户出资
|
private Integer other_contribute;//其他出资
|
private String currency;//优惠币种
|
|
}
|