新增阿里云对接方法
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package com.cool.store.dto.partner;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: DescribePhoneNumberDTO
|
||||
* @Description:手机号归属
|
||||
* @date 2023-06-15 20:07
|
||||
*/
|
||||
@Data
|
||||
public class DescribePhoneNumberDTO {
|
||||
|
||||
@ApiModelProperty("基础运营商")
|
||||
public String basicCarrier;
|
||||
|
||||
@ApiModelProperty("实际运营商")
|
||||
public String carrier;
|
||||
|
||||
@ApiModelProperty("是否携号转网")
|
||||
public Boolean isNumberPortability;
|
||||
|
||||
@ApiModelProperty("号码归属号段")
|
||||
public Long numberSegment;
|
||||
|
||||
@ApiModelProperty("号码归属城市")
|
||||
public String city;
|
||||
|
||||
@ApiModelProperty("号码归属省份")
|
||||
public String province;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
package com.cool.store.vo.cuser;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author zhangchenbiao
|
||||
* @FileName: IdentityCardInfoVO
|
||||
* @Description:
|
||||
* @date 2023-06-16 10:18
|
||||
*/
|
||||
@Data
|
||||
public class IdentityCardInfoVO {
|
||||
|
||||
@ApiModelProperty("用户名")
|
||||
private String username;
|
||||
|
||||
@ApiModelProperty("地址")
|
||||
private String liveAddress;
|
||||
|
||||
@ApiModelProperty("出生日期")
|
||||
private String birthdate;
|
||||
|
||||
@ApiModelProperty("性别")
|
||||
private String sex;
|
||||
|
||||
@ApiModelProperty("身份证号")
|
||||
private String idCard;
|
||||
|
||||
@ApiModelProperty("民族")
|
||||
private String nation;
|
||||
|
||||
public IdentityCardInfoVO(String username, String liveAddress, String birthdate, String sex, String idCard, String nation) {
|
||||
this.username = username;
|
||||
this.liveAddress = liveAddress;
|
||||
this.birthdate = birthdate;
|
||||
this.sex = sex;
|
||||
this.idCard = idCard;
|
||||
this.nation = nation;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user