eb-service-api/api-third/src/main/java/com/heyu/api/tencent/TencentIdCardBaseRequest.java
2025-03-09 22:12:02 +08:00

26 lines
326 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.heyu.api.tencent;
import lombok.Data;
@Data
public class TencentIdCardBaseRequest extends TencentBaseRequest {
/**
* 身份证号。
* 示例值11204416541220243X
*/
private String idCard;
/**
* 姓名。
* 示例值:韦小宝
*/
private String name;
}