using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPayAppCarSignModel Data Structure. /// [Serializable] public class AlipayPayAppCarSignModel : AopObject { /// /// 当前登录的用户ID /// [XmlElement("current_user_id")] public string CurrentUserId { get; set; } } }