zhuangpei-mesbackend/DOAN.Service/Mobile/IService/IPADPrintAndReportWork2Service.cs
2025-04-10 15:24:00 +08:00

19 lines
574 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 IPADPrintAndReportWork2Service
{
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);
}
}