18 lines
640 B
C#
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);
|
|
}
|
|
}
|