first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.RPC.ErpRPC.Dto.In
{
/// <summary>
/// 业务类型
/// </summary>
public enum ActionID
{
/// <summary>
/// 纸卷库存按条码查询(获取某卷纸的库存信息)
/// </summary>
ODIRollStockQueryByBarcode = 0,
/// <summary>
/// 纸卷领用记录新增
/// </summary>
ODIRollPickInsert = 1,
/// <summary>
/// 纸卷领用记录删除
/// </summary>
ODIRollPickDelete = 2,
/// <summary>
/// 纸卷退库记录新增
/// </summary>
ODIRollReturnInsert = 3,
/// <summary>
/// 纸卷退库记录删除
/// </summary>
ODIRollReturnDelete = 4,
/// <summary>
/// 纸卷库存按门幅、纸质编码查询(获取某卷纸的库存信息)
/// </summary>
ODIRollStockQuery = 5,
/// <summary>
/// 新卷查询(按起始时间获取新卷信息)
/// </summary>
ODIRollNewQueryByTime = 6
}
}