using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Logic.RemoteModel
{
public class StoreInfoResponse
{
///
/// 档口
///
[JsonProperty("gateList")]
public List Stalls { get; set; }
///
/// 设备
///
[JsonProperty("payCardList")]
public List Devices { get; set; }
}
public class StallModelResponse
{
public string Id { get; set; }
///
/// 档口名称
///
public string Name { get; set; }
///
/// 归属门店
///
public string StoreId { get; set; }
///
/// 收费方式(1,固定金额2,自由设定)
///
public int Mode { get; set; }
///
/// 收款金额
///
public decimal Price { get; set; }
///
/// 广告
///
public string Remaek { get; set; }
///
///状态0正常,1停用
///
public int Status { get; set; }
}
public class DeviceModelResponse
{
public string Id { get; set; }
///
/// 刷卡设备名称
///
public string Name { get; set; }
///
/// 档口id
///
public string GateId { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 刷卡间隔时间
///
public int SleepTime { get; set; }
///
/// 状态0正常,1停用
///
public int Status { get; set; }
}
}