预任务申请 所有出库任务 增加是否签收判断

This commit is contained in:
2023-06-20 11:39:36 +08:00
parent 639bd46bf9
commit c8e1423da9
6 changed files with 48 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities;
/// <summary>
/// 载具台账主表
/// </summary>
public partial class WmsCarryH
{
/// <summary>
/// 是否签收
/// </summary>
[SugarColumn(IsIgnore = true)]
public int is_sign { get; set; }
}

View File

@@ -157,5 +157,9 @@ public partial class WmsPretaskH : BaseEntity<string>
/// 优先级
/// </summary>
public int priority { get; set; } = 1;
/// <summary>
/// 优先级
/// </summary>
public int is_sign { get; set; } = 1;
}