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.

50 lines
1.2 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Stock
{
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class AskgoodsTicketAddDetail
{
/// <summary>
/// 商品ID
/// </summary>
[JsonProperty(PropertyName = "productId")]
public string ProductId { get; set; }
/// <summary>
/// 规格ID
/// </summary>
[JsonProperty(PropertyName = "specId")]
public string SpecId { get; set; }
/// <summary>
/// 要货数量
/// </summary>
[JsonProperty(PropertyName = "amount")]
public decimal Amount { get; set; }
/// <summary>
/// 商品价格
/// </summary>
[JsonProperty(PropertyName = "price")]
public decimal Price { get; set; }
/// <summary>
/// 配送费
/// </summary>
[JsonProperty(PropertyName = "money")]
public decimal Money { get; set; }
/// <summary>
/// 合计金额
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
}
}