feat:身份证背面解析
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.cool.store.vo;
|
||||
|
||||
import com.aliyun.tea.NameInMap;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
@@ -24,6 +25,15 @@ public class IdentityCardInfoVO {
|
||||
@ApiModelProperty("民族")
|
||||
private String nation;
|
||||
|
||||
@ApiModelProperty("结束时间")
|
||||
public String endDate;
|
||||
|
||||
@ApiModelProperty("所属分局")
|
||||
public String issue;
|
||||
|
||||
@ApiModelProperty("开始时间")
|
||||
public String startDate;
|
||||
|
||||
public IdentityCardInfoVO(String username, String liveAddress, String birthdate, String sex, String idCard, String nation) {
|
||||
this.username = username;
|
||||
this.liveAddress = liveAddress;
|
||||
@@ -32,4 +42,10 @@ public class IdentityCardInfoVO {
|
||||
this.idCard = idCard;
|
||||
this.nation = nation;
|
||||
}
|
||||
|
||||
public IdentityCardInfoVO(String endDate, String issue, String startDate) {
|
||||
this.endDate = endDate;
|
||||
this.issue = issue;
|
||||
this.startDate = startDate;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user