NewGaoKaoApi/PaymentSDK/AliPay/Domain/OpenBatch.cs

31 lines
721 B
C#
Raw Permalink 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>
/// OpenBatch Data Structure.
/// </summary>
[Serializable]
public class OpenBatch : AopObject
{
/// <summary>
/// 批次id
/// </summary>
[XmlElement("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 批次状态 0未检测 1检测中 2未通过 3已通过
/// </summary>
[XmlElement("batch_status")]
public string BatchStatus { get; set; }
/// <summary>
/// 单品数
/// </summary>
[XmlElement("item_num")]
public string ItemNum { get; set; }
}
}