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