From 51f7eb771322a65ee552ca9b60280632f72760e6 Mon Sep 17 00:00:00 2001
From: wxw <Administrator@DESKTOP-5BIMHQ3>
Date: 星期三, 15 十月 2025 16:55:08 +0800
Subject: [PATCH] 修改物料管理列表
---
Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs | 78 +++++++++++++++++++++++++++++++++++++++
1 files changed, 78 insertions(+), 0 deletions(-)
diff --git a/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs b/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
index 44c6543..971a69d 100644
--- a/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
+++ b/Wms/Model/ModelDto/BllAsnDto/BoxInfoDto.cs
@@ -1,4 +1,5 @@
锘縰sing System;
+using System.Collections.Generic;
namespace Model.ModelDto
{
@@ -210,4 +211,81 @@
/// </summary>
public string ImgStr { get; set; }
}
+
+
+ public class BoxListInfoDto
+ {
+ /// <summary>
+ /// 绠辩爜闆嗗悎
+ /// </summary>
+ public List<string> BoxNoList { get; set; }
+ /// <summary>
+ /// 鐗╂枡缂栫爜
+ /// </summary>
+ public string SkuNo { get; set; }
+ /// <summary>
+ /// 鐗╂枡鍚嶇О
+ /// </summary>
+ public string SkuName { get; set; }
+ /// <summary>
+ /// 鎵规鍙�
+ /// </summary>
+ public string LotNo { get; set; }
+ /// <summary>
+ /// 鐢熶骇鏃ユ湡
+ /// </summary>
+ public string Date1 { get; set; }
+ /// <summary>
+ /// 鏈夋晥鏈�
+ /// </summary>
+ public string Date2 { get; set; }
+ }
+ public class StockDetailWithQtyDto
+ {
+ public string LotNo { get; set; }
+ public string LotText { get; set; }
+ public string SupplierLot { get; set; }
+ public string OwnerNo { get; set; }
+ public string OwnerName { get; set; }
+ public string SupplierNo { get; set; }
+ public string SupplierName { get; set; }
+ public string SkuNo { get; set; }
+ public string SkuName { get; set; }
+ public string Standard { get; set; }
+ public decimal Qty { get; set; } // 鏉ヨ嚜DataBoxInfo鐨凲ty
+ public decimal? LockQty { get; set; }
+ public decimal? FrozenQty { get; set; }
+ public decimal? InspectQty { get; set; }
+ public string ASNNo { get; set; }
+ public int? ASNDetailNo { get; set; }
+ public string SONo { get; set; }
+ public string WareHouseNo { get; set; }
+ public string RoadwayNo { get; set; }
+ public string AreaNo { get; set; }
+ public string LocatNo { get; set; }
+ public string PalletNo { get; set; }
+ public string PalletNo2 { get; set; }
+ public string PalletNo3 { get; set; }
+ public string PalletTags { get; set; }
+ public DateTime? CompleteTime { get; set; }
+ public DateTime? ProductionTime { get; set; }
+ public DateTime? ExpirationTime { get; set; }
+ public string Status { get; set; }
+ public string InspectMark { get; set; }
+ public string BitPalletMark { get; set; }
+ public string InspectStatus { get; set; }
+ public DateTime? InspectTime { get; set; }
+ public string PackagNo { get; set; }
+ public string IsBale { get; set; }
+ public string IsBelt { get; set; }
+ public string UDF5 { get; set; }
+ public string IsDel { get; set; }
+ public DateTime CreateTime { get; set; }
+ public int? CreateUser { get; set; }
+ public DateTime? UpdateTime { get; set; }
+ public int? UpdateUser { get; set; }
+ public string Demo { get; set; }
+ }
+
+
}
--
Gitblit v1.8.0