24 lines
653 B
C#
24 lines
653 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.MES.quality.FAI;
|
|
using DOAN.Model.MES.quality.FAI.Dto;
|
|
|
|
|
|
namespace DOAN.Service.MES.quality.FAI.IService
|
|
{
|
|
/// <summary>
|
|
/// 首件检验service接口
|
|
/// </summary>
|
|
public interface IQcFirstarticleInspectionService : IBaseService<QcFirstarticleInspection>
|
|
{
|
|
PagedInfo<QcFirstarticleInspectionDto> GetList(QcFirstarticleInspectionQueryDto parm);
|
|
|
|
QcFirstarticleInspection GetInfo(int Id);
|
|
|
|
QcFirstarticleInspection AddQcFirstarticleInspection(QcFirstarticleInspection parm);
|
|
|
|
int UpdateQcFirstarticleInspection(QcFirstarticleInspection parm);
|
|
|
|
}
|
|
}
|