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.

80 lines
2.0 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 AskgoodsTicketEdit
{
/// <summary>
/// ID
/// </summary>
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
/// <summary>
/// 单号
/// </summary>
[JsonProperty(PropertyName = "no")]
public string No { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[JsonProperty(PropertyName = "storeId")]
public string StoreId { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
/// <summary>
/// 商品金额
/// </summary>
[JsonProperty(PropertyName = "productMoney")]
public decimal ProductMoney { get; set; }
/// <summary>
/// 配送费
/// </summary>
[JsonProperty(PropertyName = "dispatchMoney")]
public decimal DispatchMoney { get; set; }
/// <summary>
/// 合计金额
/// </summary>
[JsonProperty(PropertyName = "totalMoney")]
public decimal TotalMoney { get; set; }
/// <summary>
/// 制单人
/// </summary>
[JsonProperty(PropertyName = "setMan")]
public string SetMan { get; set; }
/// <summary>
/// 配送方式
/// </summary>
[JsonProperty(PropertyName = "deliveryMode")]
public string DeliveryMode { get; set; }
/// <summary>
/// 配送方式名称
/// </summary>
[JsonProperty(PropertyName = "deliveryModeDesc")]
public string DeliveryModeDesc { get; set; }
/// <summary>
/// 单据明细
/// </summary>
[JsonProperty(PropertyName = "detail")]
public List<AskgoodsTicketEditDetail> Detail { get; set; }
}
}