初始提交

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,55 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AccessPurchaseOrderSendResult Data Structure.
/// </summary>
[Serializable]
public class AccessPurchaseOrderSendResult : AopObject
{
/// <summary>
/// 申请单明细号
/// </summary>
[JsonProperty("asset_item_id")]
public string AssetItemId { get; set; }
/// <summary>
/// 申请单号
/// </summary>
[JsonProperty("asset_order_id")]
public string AssetOrderId { get; set; }
/// <summary>
/// 采购单ID
/// </summary>
[JsonProperty("asset_purchase_id")]
public string AssetPurchaseId { get; set; }
/// <summary>
/// 错误CODE
/// </summary>
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 错误描述
/// </summary>
[JsonProperty("error_desc")]
public string ErrorDesc { get; set; }
/// <summary>
/// 外部单号(调用方业务主键标识)
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 处理是否成功
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
}
}