using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 配送单列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class DispatchTicketResponse { /// /// 企业编号 /// [JsonProperty(PropertyName = "tenantId")] public string TenantId { get; set; } /// /// 单ID /// [JsonProperty(PropertyName = "id")] public string Id { get; set; } /// /// 要货单ID /// [JsonProperty(PropertyName = "askGoodsId")] public string AskGoodsId { get; set; } /// /// 要货单编号 /// [JsonProperty(PropertyName = "askGoodsNo")] public string AskGoodsNo { get; set; } /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 单据状态(0-新建;1-驳回;2-审核通过;3-作废;4-已发货;5-已收货;) /// [JsonProperty(PropertyName = "status")] public int Status { get; set; } /// /// 是否选用(0-未选用;1-选用;) /// [JsonProperty(PropertyName = "isUse")] public int IsUse { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 单据状态名称 /// public string StatusName { get; set; } /// /// 制单人 /// [JsonProperty(PropertyName = "setMan")] public string SetMan { get; set; } /// /// 制单日期 /// [JsonProperty(PropertyName = "setDate")] public string SetDate { get; set; } /// /// 审核人 /// [JsonProperty(PropertyName = "checkMan")] public string CheckMan { get; set; } /// /// 审核日期 /// [JsonProperty(PropertyName = "checkDate")] public string CheckDate { get; set; } /// /// 验收日期 /// [JsonProperty(PropertyName = "arrivalDate")] public string ArrivalDate { get; set; } /// /// 联系地址 /// [JsonProperty(PropertyName = "address")] public string Address { get; set; } /// /// 联系人 /// [JsonProperty(PropertyName = "linkMan")] public string LinkMan { get; set; } /// /// 联系电话 /// [JsonProperty(PropertyName = "linkTelephone")] public string LinkTelephone { get; set; } /// /// 物流单号 /// [JsonProperty(PropertyName = "logisticsNo")] public string LogisticsNo { get; set; } /// /// 物流名称 /// [JsonProperty(PropertyName = "logisticsName")] public string LogisticsName { get; set; } /// /// 物流费用 /// [JsonProperty(PropertyName = "logisticsFee")] public decimal LogisticsFee { get; set; } /// /// 原料金额 /// [JsonProperty(PropertyName = "orderMoney")] public decimal OrderMoney { get; set; } /// /// 总金额 /// [JsonProperty(PropertyName = "money")] public decimal Money { get; set; } } }