parent
43b25f1b5b
commit
1fdf6fe77c
@ -0,0 +1,17 @@
|
||||
package com.luoo.user.dto.response;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class CountryCodeDTO {
|
||||
@ApiModelProperty(value = "国家名", example = "中国")
|
||||
private String countryName;
|
||||
@ApiModelProperty(value = "国际电话区号", example = "+86")
|
||||
private String countryCode;
|
||||
|
||||
public CountryCodeDTO(String countryName, String countryCode) {
|
||||
this.countryName = countryName;
|
||||
this.countryCode = countryCode;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue