using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 更改要货单状态 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsStatusRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单据ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 操作类型 (1-驳回2-审核通过 3-作废4-反审核) /// [JsonProperty(PropertyName = "type")] public int Type { get; set; } /// /// 操作员 /// [JsonProperty(PropertyName = "operator")] public string Operator { get; set; } /// /// 操作说明 /// [JsonProperty(PropertyName = "reason")] public string Reason { get; set; } } }