服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-24 459d4a2b2bd5390a5d02947e75a934207fb9ad0c
Tiger.Model.Net/Entitys/WMS/BIZ_WMS_PREP_SN.cs
@@ -27,46 +27,46 @@
      /// 备料单号
      /// </summary>
      [DisplayName("备料单号")]
      public string PREP_NO { get; set; }
      public string ORDER_NO { get; set; }
      /// <summary>
      /// 备料单行号
      /// </summary>
      [DisplayName("备料单行号")]
      public string PREP_LINE { get; set; }
      public string ORDER_LINE { get; set; }
      /// <summary>
      /// 货物标签
      /// 物品标签
      /// </summary>
      [DisplayName("货物标签")]
      [DisplayName("物品标签")]
      public string SN { get; set; }
      /// <summary>
      /// 物料编码
      /// 物品编码
      /// </summary>
      [DisplayName("物料编码")]
      [DisplayName("物品编码")]
      public string ITEM_CODE { get; set; }
      /// <summary>
      /// 物料数量
      /// </summary>
      [DisplayName("物料数量")]
      public double QTY { get; set; }
      /// <summary>
      /// 单位
      /// </summary>
      [DisplayName("单位")]
      public string UNIT { get; set; }
      public double UNIT { get; set; }
      /// <summary>
      /// 物品数量
      /// </summary>
      [DisplayName("物品数量")]
      public string QTY { get; set; }
      /// <summary>
      /// 单位用量
      /// </summary>
      [DisplayName("单位用量")]
      public double UNIT_QTY { get; set; }
      public double QTY_UNIT { get; set; }
      /// <summary>
      /// 发出数量
      /// </summary>
      [DisplayName("发出数量")]
      public double DLVY_QTY { get; set; }
      public double QTY_DLVY { get; set; }
      /// <summary>
      /// 状态(0Init初始化|1WaitPick待拣料|2OffShelf已下架|3Picked已捡料|4Sended已发料|5Cancel作废)
      /// ״̬(ͬWMS_ITEM״̬)
      /// </summary>
      [DisplayName("状态(0Init初始化|1WaitPick待拣料|2OffShelf已下架|3Picked已捡料|4Sended已发料|5Cancel作废)")]
      [DisplayName("״̬(ͬWMS_ITEM״̬)")]
      public int STATUS { get; set; }
      /// <summary>
      /// 发料仓库
@@ -211,25 +211,6 @@
         Enum1,
      }
      */
      /// <summary>
      /// 枚举:状态(0Init初始化|1WaitPick待拣料|2OffShelf已下架|3Picked已捡料|4Sended已发料|5Cancel作废)
      /// </summary>
      public enum STATUSs
      {
         [Description("初始化")]
         Init = 0,
         [Description("待拣料")]
         WaitPick = 1,
         [Description("已下架")]
         OffShelf = 2,
         [Description("已捡料")]
         Picked = 3,
         [Description("已发料")]
         Sended = 4,
         [Description("作废")]
         Cancel = 5,
      }
      #endregion
      #region 公共方法