1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cc.mrbird.febs.mall.dto;
|
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import javax.validation.constraints.NotBlank;
|
| @Data
| public class ApiCheckTraceInfoDto {
|
|
| @NotBlank(message = "快递单号不能为空")
| @ApiModelProperty(value = "快递单号", example = "60850712015414")
| private String traceNo;
| }
|
|