using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 更改经营会计报表单状态 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketUpdateStatusResponse { /// /// 上传服务端ID /// [JsonProperty(PropertyName = "ticketId")] public string TicketId { get; set; } /// /// 单号 /// [JsonProperty(PropertyName = "ticketNo")] public string TicketNo { get; set; } } }