初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -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; }
}
}