From ad64301e659e774d09776d2123eb09300c789468 Mon Sep 17 00:00:00 2001 From: liuying <1427574514@qq.com> Date: 周三, 27 11月 2024 17:23:31 +0800 Subject: [PATCH] 打印 --- LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/WmsDBModel/V_Station_Quan.cs | 50 +++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 47 insertions(+), 3 deletions(-) diff --git a/LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/V_EmptyStation.cs b/LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/WmsDBModel/V_Station_Quan.cs similarity index 63% copy from LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/V_EmptyStation.cs copy to LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/WmsDBModel/V_Station_Quan.cs index e44e8cc..9c6aed0 100644 --- a/LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/V_EmptyStation.cs +++ b/LA24030_LuLiPackageLine_Print/LA24030_LuLiPackageLine_PrintService/iWareSql/WmsDBModel/V_Station_Quan.cs @@ -1,4 +1,4 @@ -namespace iWareSql +namespace iWareSql.WmsDBModel { using System; using System.Collections.Generic; @@ -6,7 +6,7 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; - public partial class V_EmptyStation + public partial class V_Station_Quan { [Key] [Column(Order = 0)] @@ -31,7 +31,7 @@ [StringLength(50)] public string PlaceTypeName { get; set; } - public decimal? Length { get; set; } + public decimal? stationLength { get; set; } public decimal? Width { get; set; } @@ -86,5 +86,49 @@ [Key] [Column(Order = 7)] public bool IsDelete { get; set; } + + public DateTime? InTime { get; set; } + + [StringLength(100)] + public string Upi { get; set; } + + [StringLength(100)] + public string DetailName { get; set; } + + [StringLength(100)] + public string PlanNo { get; set; } + + [StringLength(100)] + public string OrderId { get; set; } + + [StringLength(100)] + public string PackageCode { get; set; } + + public double? Length { get; set; } + + public double? Thk { get; set; } + + public int? StockStatus { get; set; } + + [StringLength(50)] + public string StockStatusName { get; set; } + + [StringLength(255)] + public string OperReason { get; set; } + + [StringLength(50)] + public string OperUser { get; set; } + + public DateTime? OperTime { get; set; } + + public int? LockStatus { get; set; } + + [StringLength(255)] + public string LockReason { get; set; } + + [StringLength(50)] + public string LockUser { get; set; } + + public DateTime? LockTime { get; set; } } } -- Gitblit v1.9.3