NewGaoKaoApi/PaymentSDK/AliPay/Domain/FoodDispenserCellInfo.cs

43 lines
1.0 KiB
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>
/// FoodDispenserCellInfo Data Structure.
/// </summary>
[Serializable]
public class FoodDispenserCellInfo : AopObject
{
/// <summary>
/// 业务状态 空闲IDLE 预占FREEZE 占用OCCUPIED
/// </summary>
[XmlElement("biz_status")]
public string BizStatus { get; set; }
/// <summary>
/// 单元格编号
/// </summary>
[XmlElement("cell_code")]
public string CellCode { get; set; }
/// <summary>
/// 单元格名称
/// </summary>
[XmlElement("cell_name")]
public string CellName { get; set; }
/// <summary>
/// 列数
/// </summary>
[XmlElement("column_no")]
public string ColumnNo { get; set; }
/// <summary>
/// 行数
/// </summary>
[XmlElement("row_no")]
public string RowNo { get; set; }
}
}