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

19 lines
499 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 CheckFirstInspectionLabel(string workorder, string first_label);
string GetEndInspectionLabel(string workorder);
string CheckEndInspectionLabel(string workorder, string end_label);
}
}