using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Boduo.Stock { /// /// 调用erp中的接口获取要货单的金额 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class TrialOperationMoneyResponse { /// /// 状态 /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 消息内容 /// [JsonProperty(PropertyName = "message")] public string Message { get; set; } /// /// 要货总金额 /// [JsonProperty(PropertyName = "sumMaterialMoney")] public decimal SumMaterialMoney { get; set; } /// /// 客户账户余额 /// [JsonProperty(PropertyName = "storeBalance")] public decimal StoreBalance { get; set; } /// /// 客户返利金额 /// [JsonProperty(PropertyName = "storeRebate")] public decimal StoreRebate { get; set; } /// /// 可用返利金额 /// [JsonProperty(PropertyName = "useRebate")] public decimal UseRebate { get; set; } /// /// 常温运费 /// [JsonProperty(PropertyName = "usualFreight")] public decimal UsualFreight { get; set; } /// /// 冷链运费 /// [JsonProperty(PropertyName = "coldFreight")] public decimal ColdFreight { get; set; } /// /// 要货总金额 /// [JsonProperty(PropertyName = "askSumMoney")] public decimal AskSumMoney { get; set; } /// /// 要货单描述 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } } }