using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// OpenItem Data Structure. /// [Serializable] public class OpenItem : AopObject { /// /// 单品编号 /// [JsonProperty("item_id")] public string ItemId { get; set; } /// /// 单品检测状态 0,未检测 1,未通过 2,已通过 /// [JsonProperty("item_status")] public string ItemStatus { get; set; } /// /// 门店id /// [JsonProperty("store_id")] public string StoreId { get; set; } } }