using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ProdMarkRelationVO Data Structure. /// [Serializable] public class ProdMarkRelationVO : AopObject { /// /// 产品外标编码 /// [JsonProperty("mark_code")] public string MarkCode { get; set; } /// /// 产品外标类型 /// [JsonProperty("mark_type")] public string MarkType { get; set; } /// /// 产品码 /// [JsonProperty("prod_code")] public string ProdCode { get; set; } /// /// 产品版本 /// [JsonProperty("prod_version")] public string ProdVersion { get; set; } } }