初始提交
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user