| 123456789101112131415161718192021222324252627282930313233343536 |
- package com.cyksj.model.dto;
- import com.cyksj.model.entity.Coupon;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: CouponPopularizeDto
- *创建者: JavaZou
- *创建时间:2022/11/21 15:03
- */
- @Getter
- @Setter
- public class CouponPopularizeDto {
- /**
- * 优惠卷id
- */
- private Long couponId;
- private String goodsSkuIds;
- private Coupon.Type type;
- private Boolean isRenew;
- /**
- * 优惠卷推广者关联id
- */
- private Long popularizeId;
- /**
- * 优惠卷推广者关联优惠卷id
- */
- private Long popularizeCouponId;
- }
|