package com.doumee.dao.web.request;
|
|
import com.doumee.dao.business.model.MemberCoupon;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotEmpty;
|
import java.io.Serializable;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2023/3/23 9:50
|
*/
|
@Data
|
@ApiModel("发送优惠券通知请求类")
|
public class CouponNoticeRequest{
|
|
|
@ApiModelProperty(value = "用户优惠券信息")
|
private MemberCoupon memberCoupon;
|
|
@ApiModelProperty(value = "优惠券数量")
|
private Integer num;
|
|
}
|