新增盘点任务模块

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,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Enums
{
public enum EnumCheckType
{
/// <summary>
/// 全库盘点
/// </summary>
= 0,
/// <summary>
/// 物料盘点
/// </summary>
,
/// <summary>
/// 批次盘点
/// </summary>
,
}
}