using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 更改经营会计报表单状态 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketUpdateStatusRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 单据ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 操作员 /// [JsonProperty(PropertyName = "operator")] public string Operator { get; set; } /// /// 操作类型 (1-审核2-作废) /// [JsonProperty(PropertyName = "type")] public int Type { get; set; } } }