puzhibing
2023-08-14 26e2592813b9263124d518d238262910e817d323
cloud-server-activity/src/main/java/com/dsh/activity/model/request/CouponDataVo.java
New file
@@ -0,0 +1,99 @@
package com.dsh.activity.model.request;
import lombok.Data;
import java.math.BigDecimal;
import java.util.List;
@Data
public class CouponDataVo {
    /**
     * 用户类型1=城市管理者 2=平台管理者
     */
    Integer userType;
    /**
     * 城市管理者id
     */
    Integer cityManagerId;
    /**
     * 券名称
     */
    String couponName;
    /**
     * 优惠券类型
     */
    Integer prescription;
    /**
     * 条件金额
     */
    BigDecimal condition;
    /**
     * 减去金额
     */
    BigDecimal subtraction;
    /**
     * 折扣金额
     */
    BigDecimal discount;
    /**
     * 体验券名称
     */
    String experience;
    /**
     * 说明
     */
    String illustrate;
    /**
     * 发放方式
     */
    Integer distributionMethod;
    /**
     * 所需积分
     */
    Integer requiredPoints;
    /**
     * 用户人群
     */
    Integer userGroup;
    /**
     * 发放数量
     */
    Integer quantityIssued;
    /**
     * 限领数量
     */
    Integer pickUpQuantity;
    /**
     * 有效期
     */
    String periodOfValidity;
    /**
     * 兑换方式
     */
    Integer exchangeMethod;
    /**
     * 所需现金
     */
    BigDecimal requiredCash;
    /**
     * 封面图
     */
    String goodImg;
    /**
     * 图片列表
     */
    List<String> goodImgs;
    /**
     * 适用范围
     */
    Integer company;
    /**
     * 城市code
     */
    List<Integer> cityIds;
    /**
     * 门店列表
     */
    List<Integer> storeIds;
}