NewGaoKaoApi/PaymentSDK/AliPay/Domain/OpenItem.cs

31 lines
709 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>
/// OpenItem Data Structure.
/// </summary>
[Serializable]
public class OpenItem : AopObject
{
/// <summary>
/// 单品编号
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 单品检测状态 0未检测 1未通过 2已通过
/// </summary>
[XmlElement("item_status")]
public string ItemStatus { get; set; }
/// <summary>
/// 门店id
/// </summary>
[XmlElement("store_id")]
public string StoreId { get; set; }
}
}