using System; using System.Collections.Generic; namespace MySystem.Entity.UnionPay { /// /// 获取证件类型列表请求 /// public class UnionPayIdCardTypesRequest { /// /// 证件类型大类 1-商户个人证件类型 2-通道个人证件类型;不填时默认1 /// public string firstType { get; set; } /// /// 证件类型小类 (对应运营平台配置页面的字段来源);不填时默认1 /// public string secondType { get; set; } } }