1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ruoyi.goods.domain.dto;
|
| import com.ruoyi.system.api.domain.dto.MgtPageDto;
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data; /**
| * @author zhibing.pu
| * @Date 2025/6/5 9:23
| */
| @Data
| @ApiModel
| public class ShopLotteryDrawListDto extends MgtPageDto {
| @ApiModelProperty(value = "商户id")
| private Long shopId;
| }
|
|