huliguo
2025-06-06 2474cec7f04390c196c0f7c753d4b70f1d53fcac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.order.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
 
@Data
public class ConfirmOrderDTO {
    @ApiModelProperty("Integer goodId")
    @NotNull(message = "商品Id不能为空")
    private Integer goodId;
    @ApiModelProperty("支付类型(1-现金,2-积分)")
    @NotNull(message = "商品类型不能为空")
    private Integer type;
 
}