using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { /// /// 经营会计报表模板 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StoreCostTicketTemplateInfoResponse { /// /// 单号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 模板名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 备注说明 /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } /// /// 生成变动成本 /// [JsonProperty(PropertyName = "productChangeList")] public List ProductChangeList { get; set; } /// /// 辅助生产变动成本 /// [JsonProperty(PropertyName = "moreChangeList")] public List MoreChangeList { get; set; } /// /// 其他变动成本 /// [JsonProperty(PropertyName = "otherChangeList")] public List OtherChangeList { get; set; } /// /// 固定费用 /// [JsonProperty(PropertyName = "fixedChangeList")] public List FixedChangeList { get; set; } } }