using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ProdMarkRelationVO Data Structure. /// [Serializable] public class ProdMarkRelationVO : AopObject { /// /// 产品外标编码 /// [XmlElement("mark_code")] public string MarkCode { get; set; } /// /// 产品外标类型 /// [XmlElement("mark_type")] public string MarkType { get; set; } /// /// 产品码 /// [XmlElement("prod_code")] public string ProdCode { get; set; } /// /// 产品版本 /// [XmlElement("prod_version")] public string ProdVersion { get; set; } } }