22 lines
568 B
C#
22 lines
568 B
C#
using DOAN.Model;
|
|
using DOAN.Model.MES.quality.FQC;
|
|
using DOAN.Model.MES.quality.FQC.Dto;
|
|
|
|
namespace DOAN.Service.MES.quality.FQC.IService
|
|
{
|
|
/// <summary>
|
|
/// 最终检验service接口
|
|
/// </summary>
|
|
public interface IQcFinalInspectionService : IBaseService<QcFinalInspection>
|
|
{
|
|
PagedInfo<QcFinalInspectionDto> GetList(QcFinalInspectionQueryDto parm);
|
|
|
|
QcFinalInspection GetInfo(int Id);
|
|
|
|
QcFinalInspection AddQcFinalInspection(QcFinalInspection parm);
|
|
|
|
int UpdateQcFinalInspection(QcFinalInspection parm);
|
|
|
|
}
|
|
}
|