在库物料导入

This commit is contained in:
2023-12-02 22:05:35 +08:00
parent 2d47e18d45
commit e9f773e5e5
3 changed files with 153 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
using SqlSugar;
using Tnb.WarehouseMgr.Entities.Entity.Constraints;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 在库物料导入
/// </summary>
public partial class WmsStkTemp
{
/// <summary>
/// 物料ID
/// </summary>
[SugarColumn(IsIgnore = true)]
public string material_id { get; set; } = string.Empty;
/// <summary>
/// 库位ID
/// </summary>
[SugarColumn(IsIgnore = true)]
public string location_id { get; set; } = string.Empty;
/// <summary>
/// 单位
/// </summary>
[SugarColumn(IsIgnore = true)]
public string unit_id { get; set; } = string.Empty;
}