fix
Hentua
2024-01-26 a496bd5c228c2a6c8cfad1f92a1ca9d38e3110d6
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;
}