2025-03-16 03:17:36 +08:00
|
|
|
namespace Seyounth.Hyosung.Core.Printer;
|
|
|
|
|
|
|
|
public interface IHyosungPrinter
|
|
|
|
{
|
|
|
|
Task StartAsync(CancellationToken token);
|
|
|
|
|
|
|
|
Task StopAsync(CancellationToken token);
|
|
|
|
|
2025-04-14 16:09:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
Task PrintMasterLabelAsync(int color, string trayCode);
|
|
|
|
|
|
|
|
Task PrintSubLabelAsync(string trayCode);
|
2025-03-16 03:17:36 +08:00
|
|
|
}
|