| | |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | @ApiModel(value = "AddressInfoDto", description = "地址接收参数类") |
| | | public class AddressInfoDto { |
| | | |
| | | @NotBlank(message = "{required}") |
| | | @NotNull(message = "{required}") |
| | | @ApiModelProperty(value = "id") |
| | | private Long id; |
| | | |
| | |
| | | @NotBlank(message = "Country/Region required") |
| | | @ApiModelProperty(value = "Country/Region") |
| | | private String country; |
| | | @ApiModelProperty(value = "Country/Region") |
| | | private String countryName; |
| | | |
| | | /** |
| | | * 经度 |