31 lines
839 B
C#
31 lines
839 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEbppIndustryGovHealthcodeVerifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEbppIndustryGovHealthcodeVerifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 市
|
|
/// </summary>
|
|
[XmlElement("city_code")]
|
|
public string CityCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扫描或查询到的健康码码值
|
|
/// </summary>
|
|
[XmlElement("code_content")]
|
|
public string CodeContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 区分验码的业务主体,医护天使: MEDICAL_ANGEL; 默认为健康码: HEALTH_CODE
|
|
/// </summary>
|
|
[XmlElement("industry_type")]
|
|
public string IndustryType { get; set; }
|
|
}
|
|
}
|