成品检验
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.MES.quality.IQC;
|
||||
using DOAN.Model.MES.quality.IQC.Dto;
|
||||
|
||||
namespace DOAN.Service.MES.quality.FQC.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 缺陷类别service接口
|
||||
/// </summary>
|
||||
public interface IQcDefectConfigService : IBaseService<QcDefectConfig>
|
||||
{
|
||||
PagedInfo<QcDefectConfigDto> GetList(QcDefectConfigQueryDto parm);
|
||||
|
||||
QcDefectConfig GetInfo(int Id);
|
||||
|
||||
QcDefectConfig AddQcDefectConfig(QcDefectConfig parm);
|
||||
|
||||
int UpdateQcDefectConfig(QcDefectConfig parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user