bug
jiangqs
2023-08-31 dbff53150cdc807faa56c0d1a947d24b69f372b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @ClassName BirthdayGiftSendDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/7 14:48
 * @Version 1.0
 */
@Data
public class BirthdayGiftSendDto {
 
    @ApiModelProperty(value = "用户id")
    private Long userId;
 
    @ApiModelProperty(value = "礼物类型1优惠券2商品3现金4实物")
    private Integer giftType;
 
    @ApiModelProperty(value = "礼物来源1平台2商户")
    private Integer giftFrom;
 
    @ApiModelProperty(value = "商户id")
    private Long shopId;
 
    @ApiModelProperty(value = "优惠券id")
    private String couponId;
 
    @ApiModelProperty(value = "优惠券数量")
    private Integer couponNumber;
 
    @ApiModelProperty(value = "商品id")
    private String goodsId;
 
    @ApiModelProperty(value = "商品数量")
    private Integer goodsNumber;
 
 
}