using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIP_Models { /// /// 立库打印流转卡参数类 /// public class ProcessCardForWCSParam { /// /// 打印标题 /// public string title { get; set; } /// /// 流转卡号 /// public string processCardNumber { get; set; } /// /// 系统编码 /// public string sysCode { get; set; } /// /// 立库口位置 /// public string whGate { get; set; } /// /// 时间戳 /// public string timestamp { get; set; } } }