2024-10-12 23:34:41 +08:00
|
|
|
|
using DOAN.Model.MES.quality.FQC;
|
|
|
|
|
|
using System;
|
2024-10-12 23:02:54 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace DOAN.Service.MES.quality.FQC.IService
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IQcFinishedproductDefectService
|
|
|
|
|
|
{
|
|
|
|
|
|
bool AddDefectNum(string WorkOrder,string name);
|
|
|
|
|
|
bool UpdateDefectNum(string WorkOrder,string name,int num);
|
2024-10-12 23:34:41 +08:00
|
|
|
|
List<QcFinishedproductDefectCollection> SearchDefectList(string WorkOrder);
|
2024-10-12 23:02:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|