初始提交
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// CraftsmanWorkOutIdOpenModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class CraftsmanWorkOutIdOpenModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 外部作品id,isv生成,isv的appId+out_work_id全局唯一
|
||||
/// </summary>
|
||||
[JsonProperty("out_work_id")]
|
||||
public string OutWorkId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝生成的作品id,全局唯一,用于修改删除作品
|
||||
/// </summary>
|
||||
[JsonProperty("work_id")]
|
||||
public string WorkId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user