24 lines
664 B
C#
24 lines
664 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.Business;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <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);
|
|
|
|
}
|
|
}
|