using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.WebService { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StationTradeChange { [JsonProperty(PropertyName = "STATIONID")] /// /// 车站ID(统一提供,必填) /// public string StationId { get; set; } [JsonProperty(PropertyName = "STATIONNAME")] /// /// 车站名称(统一提供,必填) /// public string StationName { get; set; } [JsonProperty(PropertyName = "SHOPNO")] /// /// 商店ID(统一提供,必填) /// public string ShopNo { get; set; } [JsonProperty(PropertyName = "SHOPNAME")] /// /// 商店名称(统一提供,必填) /// public string ShopName { get; set; } [JsonProperty(PropertyName = "BILLTYPE")] /// /// 商品分类 /// public string BillType { get; set; } [JsonProperty(PropertyName = "BILLNO")] /// /// 订单号(必填) /// public string BillNo { get; set; } [JsonProperty(PropertyName = "BILLALLPRICES")] /// /// 商品总价(必填) /// public string BillAllPrices { get; set; } [JsonProperty(PropertyName = "BILLTIME")] /// /// 售销时间(必填) /// public string BillTime { get; set; } [JsonProperty(PropertyName = "PAYMENT")] /// /// 支付方式(现金、非现金,必填) /// public string Payment { get; set; } [JsonProperty(PropertyName = "TRANSTYPE")] /// /// 交易类型(退货、销售、赠送,必填) /// public string TransType { get; set; } [JsonProperty(PropertyName = "SOURCETYPE")] /// /// 来源类型(自动售货机、POS机、网络配餐,必填) /// public string SourceType { get; set; } [JsonProperty(PropertyName = "SOURCENO")] /// /// 来源设备号(POS机号) /// public string SourceNo { get; set; } [JsonProperty(PropertyName = "BRANCH")] /// /// 所属分公司(统一提供,必填) /// public string Branch { get; set; } } }