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
| package cn.iocoder.yudao.module.promotion.api.combination.dto;
|
| import lombok.Data;
|
| /**
| * 校验参与拼团 Response DTO
| *
| * @author HUIHUI
| */
| @Data
| public class CombinationValidateJoinRespDTO {
|
| /**
| * 砍价活动编号
| */
| private Long activityId;
| /**
| * 砍价活动名称
| */
| private String name;
|
| /**
| * 拼团金额
| */
| private Integer combinationPrice;
|
| }
|
|