package com.mzl.flower.dto.response.coupon;
|
|
import com.mzl.flower.entity.coupon.CouponRecordDO;
|
import lombok.Data;
|
|
@Data
|
public class CouponRecordVO extends CouponRecordDO {
|
|
/**
|
* 优惠券类型名称 COUPON_TYPE)满减和无门槛
|
*/
|
private String couponDiscountTypeName;
|
|
/**
|
* 领取渠道(COUPON_GET_TYPE)首页弹窗、活动入口、领券中心
|
*/
|
private String getTypeName;
|
|
/**
|
* 领取用户类型(COUPON_GET_USER_TYPE)全部用户,指定用户
|
*/
|
private String getUserTypeName;
|
|
|
/**
|
* 状态名称
|
*/
|
private String statusName;
|
|
/**
|
* 商户名称
|
*/
|
private String customerName;
|
|
/**
|
* 电话
|
*/
|
private String tel;
|
|
|
}
|