19 lines
547 B
C#
Raw Normal View History

2025-03-16 03:17:36 +08:00
using Seyounth.Hyosung.Data.Models;
using Seyounth.Hyosung.Data.Services.Hyosung.Entities;
namespace Seyounth.Hyosung.Data.Services.Hyosung;
public interface IHyosungWmsService
{
Task<int> GetControlNo(Variety variety, string grade);
Task<MST_ITEM_2240_V> GetItemInfoByItemCode(string itemCode);
Task UpdateControlNo(Variety variety, int controlNo);
Task<LabelResult> GetLabelResult(string itemCode, string lot, int controlNo);
Task AddLabelResult(LabelResult result);
Task AddPdaPutawayRecord(string barcode);
2025-03-16 03:17:36 +08:00
}