zhuangpei-mesbackend/DOAN.Service/Mobile/IService/IPADPrintAndReportWork3Service.cs
2025-04-11 17:01:31 +08:00

18 lines
573 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Service.Mobile.IService
{
public interface IPADPrintAndReportWork3Service
{
string GetFirstInspectionLabel(string workorder);
string CheckBoxInspectionLabel(string workorder, string box_label);
string CheckFirstInspectionLabel(string workorder, string first_label);
string GetEndInspectionLabel(string workorder);
string CheckEndInspectionLabel(string workorder, string end_label);
}
}