1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.goods.domain.dto;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data; /**
| * @author zhibing.pu
| * @Date 2025/6/5 10:32
| */
| @ApiModel
| @Data
| public class DelShopLotteryDrawDto {
| @ApiModelProperty("门店id")
| private Integer shopId;
| @ApiModelProperty("抽奖活动id")
| private String id;
| }
|
|