namespace Admin.NET.Application; /// /// 打印记录输出参数 /// public class WmsRecordPrintOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 打印类型 /// public Admin.NET.Application.PrintTypeEnum PrintType { get; set; } /// /// 打印来源 /// public Admin.NET.Application.PrintSourceEnum PrintSource { get; set; } /// /// 包装号 /// public string PackageCode { get; set; } /// /// 销售合同单号 /// public string Info4 { get; set; } /// /// 生产单号 /// public string Info5 { get; set; } /// /// 第几包 /// public string Info6 { get; set; } /// /// 经销店名称 /// public string Info7 { get; set; } /// /// 产品名称 /// public string Info8 { get; set; } /// /// 客户名称 /// public string Info10 { get; set; } /// /// 包装编码 /// public string Info9 { get; set; } /// /// 自提or发货 /// public string Info11 { get; set; } /// /// 包装部件总数量 /// public string Info12 { get; set; } /// /// 包装面积 /// public string Info13 { get; set; } ///// ///// 部件名称 ///// //public string Info14 { get; set; } /// /// 部件数量 /// public int? Info15 { get; set; } /// /// 部件尺寸 /// public string Info16 { get; set; } /// /// 打印张数 /// public int PrintSheetNum { get; set; } /// /// 打印次数 /// public int PrintNum { get; set; } /// /// 打印状态 /// public Admin.NET.Application.PrintStatuEnum PrintStatus { get; set; } /// /// 是否允许打印 /// public bool IsAllowPrint { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } }