namespace Admin.NET.Application;
///
/// 跟踪码打印记录输出参数
///
public class WmsRecordSncodePrintOutput
{
///
/// 主键Id
///
public long? Id { get; set; }
///
/// 打印类型
///
public Admin.NET.Application.PrintTypeEnum PrintType { get; set; }
///
/// 打印来源
///
public Admin.NET.Application.PrintSourceEnum PrintSource { get; set; }
///
/// 看板卡号
///
[SugarColumn(ColumnName = "KanBanCardNo", ColumnDescription = "看板卡号", Length = 50)]
public string? KanBanCardNo { get; set; }
///
/// 物料编号
///
public string MaterialCode { get; set; }
///
/// 物料名称
///
public string MaterialName { get; set; }
///
/// 库位编号
///
public string PlaceCode { get; set; }
///
/// 库位名称
///
public string PlaceName { get; set; }
///
/// 跟踪码
///
public string SNCode { get; set; }
///
/// 库存单位
///
[Required]
[SugarColumn(ColumnName = "MaterialUnit", ColumnDescription = "库存单位", Length = 50)]
public string MaterialUnit { get; set; }
///
/// 采购单位
///
[SugarColumn(ColumnName = "POUnit", ColumnDescription = "采购单位", Length = 50)]
public string? POUnit { get; set; }
///
/// 数量
///
public decimal Quantity { get; set; }
///
/// 单据号
///
public string OrderNo { get; set; }
///
/// 关联单号
///
public string RelationNo { get; set; }
///
/// 单据行号
///
public string OrderNoLineNumber { get; set; }
///
/// 关联单行号
///
public string RelationNoLineNumber { 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; }
}