KKSU
2024-12-30 af98371f77f6e30b27d82546e09c6c18c893971a
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;
}