24 lines
504 B
C#
24 lines
504 B
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// EquipmentBindInfo Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class EquipmentBindInfo : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 机具ID
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("equipment_id")]
|
|||
|
|
public string EquipmentId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否绑定门店,T绑定,F不绑定
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("is_bind_shop")]
|
|||
|
|
public string IsBindShop { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|