using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ProdLORelationVO Data Structure. /// [Serializable] public class ProdLORelationVO : AopObject { /// /// 区域编码 /// [JsonProperty("lo_code")] public string LoCode { get; set; } /// /// 区域类型 /// [JsonProperty("lo_type")] public string LoType { get; set; } /// /// 产品码 /// [JsonProperty("prod_code")] public string ProdCode { get; set; } /// /// 产品版本 /// [JsonProperty("prod_version")] public string ProdVersion { get; set; } } }