24 lines
594 B
C#
24 lines
594 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 IQcFinalInspectionService : IBaseService<QcFinalInspection>
|
|
{
|
|
PagedInfo<QcFinalInspectionDto> GetList(QcFinalInspectionQueryDto parm);
|
|
|
|
QcFinalInspection GetInfo(int Id);
|
|
|
|
QcFinalInspection AddQcFinalInspection(QcFinalInspection parm);
|
|
|
|
int UpdateQcFinalInspection(QcFinalInspection parm);
|
|
|
|
}
|
|
}
|