接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,70 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// LicenseInfo Data Structure.
/// </summary>
[Serializable]
public class LicenseInfo : AopObject
{
/// <summary>
/// 证书的认证机构
/// </summary>
[JsonProperty("agency")]
public string Agency { get; set; }
/// <summary>
/// 证照过期时间格式yyyy-MM-dd
/// </summary>
[JsonProperty("gmt_expire")]
public string GmtExpire { get; set; }
/// <summary>
/// 证照的起始时间证件生效的开始时间格式yyyy-MM-dd
/// </summary>
[JsonProperty("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 证书id
/// </summary>
[JsonProperty("license_id")]
public string LicenseId { get; set; }
/// <summary>
/// 证照名称当type为OTHER时必填
/// </summary>
[JsonProperty("license_name")]
public string LicenseName { get; set; }
/// <summary>
/// 证书照片的url
/// </summary>
[JsonProperty("pic_url")]
public string PicUrl { get; set; }
/// <summary>
/// 技能或者能力的认证结果,如“高级”
/// </summary>
[JsonProperty("result")]
public string Result { get; set; }
/// <summary>
/// 服务者的证书编号,由证书机构颁发的证书编号
/// </summary>
[JsonProperty("sequence")]
public string Sequence { get; set; }
/// <summary>
/// 证照类型,允许以下值: TOUR_GUIDE导游证 LEGAL法律职业资格证书 COUNSELOR心理咨询师 DRIVER_TRAIN机动车驾驶员培训许可证 CHEF厨师证 TEACHER教师资格证
/// LIFE_SAVING救生证 FINANCIAL_PLANNER理财规划师 FINANCIAL_MANAGEMENT金融理财师 BANK银行从业资格 SECURITIES证券从业资格
/// INSURANCE保险从业资格 FUTURES期货从业资格 FUND基金从业资格 SPECIAL特种经营许可证 POLICE_REGISTER公安备案登记证明
/// LOCKS_REPAIR锁具修理服务卡公安印章 HEALTH健康证 BEAUTY美容相关证件 MASSAGE按摩师职业证书 TRANSPORT道路运输证 DRIVING驾驶证
/// TRANSPORT_PERMIT道路运输经营许可 OTHER其他
/// </summary>
[JsonProperty("type")]
public string Type { get; set; }
}
}