using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserAntpaasTokenidentityQueryModel Data Structure. /// [Serializable] public class AlipayUserAntpaasTokenidentityQueryModel : AopObject { /// /// 业务Id,如口碑小程序场景下,该业务Id设置为微信unionId /// [XmlElement("biz_id")] public string BizId { get; set; } /// /// 业务场景 /// [XmlElement("biz_scene")] public string BizScene { get; set; } } }