namespace Admin.NET.Application; /// /// 报检单输出参数 /// public class WmsOrderQcOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 报检单号 /// public string QCNo { get; set; } /// /// 业务类型 /// public Admin.NET.Application.BusinessTypeEnum BusinessType { get; set; } /// /// 业务类型名称 /// public string BusinessTypeName { get; set; } /// /// 单据状态 /// public Admin.NET.Application.OrderStatusEnum QCOrderStatus { get; set; } /// /// 单据状态名称 /// public string QCOrderStatusName { get; set; } /// /// 供应商名称 /// public string SupplierName { get; set; } /// /// 供应商编号 /// public string SupplierCode { get; set; } /// /// 客户编号 /// public string CustCode { get; set; } /// /// 客户中文名称 /// public string CustChinaName { get; set; } /// /// 客户英文名称 /// public string CustEnglishName { get; set; } /// /// 关联单号 /// public string RelationNo { get; set; } /// /// 关联单据类型 /// public int? RelationOrderType { get; set; } /// /// 关联单据类型名称 /// public string RelationOrderTypeName { get; set; } /// /// 备注 /// public string Remarks { get; set; } /// /// ERP凭证 /// public string ErpVoucher { 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; } }