在库物料导入
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user