Administrator
2025-05-19 9b51a95fa8bc9b3a86108c6900e17fc55f8db467
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
package cc.mrbird.febs.mall.dto.signActivity;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "ApiNewGiftSettingDto", description = "参数类")
public class ApiNewGiftSettingDto {
    /**
     * 是否开启新人礼
     */
    @ApiModelProperty(value = "是否开启新人礼 0-关闭 1-开启", example = "丽丽")
    private int state;
 
    /**
     * 积分
     */
    @ApiModelProperty(value = "赠送积分数量", example = "1")
    private String prizeScore;
    /**
     * 优惠券ID
     */
    @ApiModelProperty(value = "赠送优惠卷", example = "1")
    private Long couponId;
}