2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
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.seckill.dto;
 
import lombok.Data;
 
/**
 * 校验参与秒杀 Response DTO
 */
@Data
public class SeckillValidateJoinRespDTO {
 
    /**
     * 秒杀活动名称
     */
    private String name;
    /**
     * 总限购数量
     *
     * 目的:目前只有 trade 有具体下单的数据,需要交给 trade 价格计算使用
     */
    private Integer totalLimitCount;
 
    /**
     * 秒杀金额
     */
    private Integer seckillPrice;
 
}