Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AccessOrdersFeedBackResult.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

47 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AccessOrdersFeedBackResult Data Structure.
/// </summary>
[Serializable]
public class AccessOrdersFeedBackResult : AopObject
{
/// <summary>
/// 错误码
/// </summary>
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 错误描述
/// </summary>
[JsonProperty("error_desc")]
public string ErrorDesc { get; set; }
/// <summary>
/// 反馈主键ID生产单ID或者采购单ID或者码token
/// </summary>
[JsonProperty("feedback_id")]
public string FeedbackId { get; set; }
/// <summary>
/// 生产单PRODUCE_ORDER 采购单PURCHASE_ORDER 二维码QRCODE
/// </summary>
[JsonProperty("order_type")]
public string OrderType { get; set; }
/// <summary>
/// 外部单据号
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 每条记录处理结果
/// </summary>
[JsonProperty("success")]
public bool Success { get; set; }
}
}