22 lines
538 B
C#
22 lines
538 B
C#
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);
|
|
|
|
}
|
|
}
|