fix
Helius
2023-11-28 d17c81c97145eeae7e599f4e7e4de01955c4fad9
src/main/java/cc/mrbird/febs/mall/dto/ApiCreateOrderVerifyDto.java
@@ -5,15 +5,13 @@
import lombok.Data;
import javax.validation.constraints.NotNull;
import java.util.List;
@Data
@ApiModel(value = "ApiCreateOrderVerifyDto", description = "参数接收类")
public class ApiCreateOrderVerifyDto {
    @NotNull(message = "参数不能为空")
    @ApiModelProperty(value = "地址ID", example = "1")
    private Long addressId;
    @ApiModelProperty(value = "商品明细")
    private List<AddOrderItemDto> items;
    @ApiModelProperty(value = "提货团长特征码", example = "1")
    private String takeUniqueCode;
}