huliguo
13 小时以前 3348eda2c33469e9935ae6afcf83ea5c52cea906
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;
 
}