Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ProdMarkRelationVO.cs

36 lines
737 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ProdMarkRelationVO Data Structure.
/// </summary>
[Serializable]
public class ProdMarkRelationVO : AopObject
{
/// <summary>
/// 产品外标编码
/// </summary>
[JsonProperty("mark_code")]
public string MarkCode { get; set; }
/// <summary>
/// 产品外标类型
/// </summary>
[JsonProperty("mark_type")]
public string MarkType { get; set; }
/// <summary>
/// 产品码
/// </summary>
[JsonProperty("prod_code")]
public string ProdCode { get; set; }
/// <summary>
/// 产品版本
/// </summary>
[JsonProperty("prod_version")]
public string ProdVersion { get; set; }
}
}