using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppIndustryGovHealthcodeQueryModel Data Structure.
///
[Serializable]
public class AlipayEbppIndustryGovHealthcodeQueryModel : AopObject
{
///
/// json格式的业务相关信息, 因健康码不同的省市存在个性化的业务参数需求,在本字段内传入
///
[XmlElement("biz_info")]
public string BizInfo { get; set; }
///
/// 业务类型,医护天使码: MEDIC_ANGEL; 健康码: HEALTHCODE。为空时默认为健康码HEALTHCODE
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 市
///
[XmlElement("city_code")]
public string CityCode { get; set; }
}
}