2026-06-17 15:41:06 +08:00
|
|
|
using YY.Admin.Core.Entity;
|
|
|
|
|
|
|
|
|
|
namespace YY.Admin.Core.Services;
|
|
|
|
|
|
2026-06-18 15:18:11 +08:00
|
|
|
/// <summary>胶料快检记录操作台:保存至 MES</summary>
|
2026-06-17 15:41:06 +08:00
|
|
|
public interface IRubberQuickTestOperationService
|
|
|
|
|
{
|
|
|
|
|
Task<string?> SaveRecordAsync(MesXslRubberQuickTestRecord record, CancellationToken ct = default);
|
|
|
|
|
}
|