using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ProdIPRelationVO Data Structure. /// [Serializable] public class ProdIPRelationVO : AopObject { /// /// 参与者别名 /// [XmlElement("ip_alias_name")] public string IpAliasName { get; set; } /// /// 参与者所属平台 /// [XmlElement("ip_belong_platform")] public string IpBelongPlatform { get; set; } /// /// 参与者编码 /// [XmlElement("ip_code")] public string IpCode { get; set; } /// /// 参与者名称 /// [XmlElement("ip_name")] public string IpName { get; set; } /// /// 参与者子类型 /// [XmlElement("ip_sub_type")] public string IpSubType { get; set; } /// /// 参与者类型 /// [XmlElement("ip_type")] public string IpType { get; set; } /// /// 产品编码 /// [XmlElement("prod_code")] public string ProdCode { get; set; } /// /// 产品版本 /// [XmlElement("prod_version")] public string ProdVersion { get; set; } /// /// 参与者平台Id /// [XmlElement("role_id")] public string RoleId { get; set; } } }