zhuangpei-mesbackend/DOAN.Service/Mobile/IService/IPADPrintAndReportWorkService.cs
2025-04-06 16:23:17 +08:00

22 lines
535 B
C#

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
{
bool InspectionBoxLabel(string box_label, string workorder);
bool InspectionProductLabel(string product_label, string workorder);
int BoxLabelAndProductLabel(BoxLabelAndProductLabelDto boxLabelAndProductLabelDto);
}
}