NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiSalesKbassetStuffFeed...

31 lines
837 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiSalesKbassetStuffFeedbackstockorderSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiSalesKbassetStuffFeedbackstockorderSyncModel : AopObject
{
/// <summary>
/// erp订单号
/// </summary>
[XmlElement("erp_order")]
public string ErpOrder { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 反馈类型 取消入库单CANCEL_STOCK_IN_ORDER 取消出库单CANCEL_STOCK_OUT_ORDER
/// </summary>
[XmlElement("feedback_type")]
public string FeedbackType { get; set; }
}
}