Files
shgx_tz_mes_backend_sync/ZR.Service/mes/qc/IService/IFirstFQCService.cs
2023-12-18 16:01:17 +08:00

18 lines
640 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZR.Model.MES.qc.DTO;
namespace ZR.Service.mes.qc.IService
{
public interface IFirstFQCService
{
public CheckItemTableDTO GetCheckItemTable();
public Task SaveinspectItem_v1(string workorder_id, string InspectionModule, string checkid, int counter);
public Task SaveinspectItem_v2(string workorder_id, string InspectionModule, string checkid, int counter);
public Task SaveinspectItem_v3(string workorder_id, string InspectionModule, string checkid, int counter);
}
}