This commit is contained in:
alex
2023-06-26 11:48:46 +08:00
parent 9e2b534e96
commit d7c43a8c51
6 changed files with 285 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 齐套分拣主表
/// </summary>
public partial class WmsSetsortingH
{
/// <summary>
/// 载具ID
/// </summary>
[SugarColumn(IsIgnore = true)]
public string? carry_id { get; set; }
[SugarColumn(IsIgnore = true)]
public string? carry_code { get; get; }
}