cmg
2024-06-19 1a4b636cae41fdd15199beb1ea5df45b31de5b7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.hz.his.dto.refund;
 
import com.hz.his.dto.coupon.CouponNumberDto;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * 退款优惠dto
 * @USER: fhx
 * @DATE: 2024/5/15
 **/
@Data
public class RefundPreferentialDto {
 
    /** 要退款的复购活动赠送积分 */
    private BigDecimal refundRepoGiftIntegral;
    /** 要退款作废的复购活动赠送优惠券 */
    private List<CouponNumberDto> refundRepoGiftCouponList;
    /** 已使用优惠券提示 */
    private  List<String> couponTipsList;
 
}