盘点没有箱库存 可以盘进库存

This commit is contained in:
18942506660
2024-06-19 15:17:35 +08:00
parent 3ce3b18b82
commit a165e8e71c
5 changed files with 58 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
@@ -56,6 +57,12 @@ namespace WMS.Web.Domain.Entitys
[Column("SubStockCode")]
public string SubStockCode { get; set; }
/// <summary>
/// 老仓位(如果更好了仓位 这里就是原有仓位)
/// 如果没有更换仓位 那老仓位和新仓位就是一样的值
/// </summary>
[Column("Old_SubStockCode")]
public string Old_SubStockCode { get; set; }
/// <summary>
/// 子仓库(跟金蝶交互字段)
/// </summary>
[Column("Erp_SubStockCode")]