using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Runtime.Serialization; namespace WIP_Models { /// /// 流转卡打印队列ViewModel /// [DataContract] public class ProCardPrintQueueResultModel { /// /// 待打印队列 /// [DataMember] public List toPrintList { get; set; } /// /// 重打印队列 /// [DataMember] public List rePrintList { get; set; } } }