新增盘点任务模块

This commit is contained in:
alex
2023-07-26 13:31:13 +08:00
parent acf1d9f94a
commit 1f0f302489
8 changed files with 509 additions and 1 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 WmsCheckstockD
{
/// <summary>
/// 条码数量
/// </summary>
[SugarColumn(IsIgnore = true)]
public decimal codeqty { get; set; }
}