2023-12-01 15:39:07 +08:00
|
|
|
|
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();
|
2023-12-18 16:01:17 +08:00
|
|
|
|
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);
|
2023-12-01 15:39:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|