zhuangpei-mesbackend/DOAN.Service/Mobile/IService/IPADPrintAndReportWorkService.cs

22 lines
535 B
C#
Raw Normal View History

2025-04-06 16:14:18 +08:00
using DOAN.Model.Mobile.Dto;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.Mobile.IService
{
public interface IPADPrintAndReportWorkService
{
2025-04-06 16:23:17 +08:00
bool InspectionBoxLabel(string box_label, string workorder);
bool InspectionProductLabel(string product_label, string workorder);
2025-04-06 16:14:18 +08:00
2025-04-06 16:23:17 +08:00
int BoxLabelAndProductLabel(BoxLabelAndProductLabelDto boxLabelAndProductLabelDto);
2025-04-06 16:14:18 +08:00
}
}