You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.0 KiB
C#

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