WMS 库房业务,生成任务,任务执行

This commit is contained in:
alex
2023-06-14 17:33:45 +08:00
parent edf3f135b1
commit 8ecae083b6
10 changed files with 303 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 预任务申请主表
/// </summary>
public partial class WmsPretaskH
{
/// <summary>
/// 单次搬运数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public int move_num { get; set; }
}