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

19 lines
574 B
C#
Raw Normal View History

2025-04-09 10:27:09 +08:00
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);
2025-04-10 15:24:00 +08:00
string CheckBoxInspectionLabel(string workorder, string box_label);
2025-04-09 10:27:09 +08:00
string CheckFirstInspectionLabel(string workorder, string first_label);
string GetEndInspectionLabel(string workorder);
string CheckEndInspectionLabel(string workorder, string end_label);
}
}