29 lines
702 B
C#
29 lines
702 B
C#
using System;
|
|
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
using DOAN.Model.MES.quality;
|
|
using DOAN.Model.MES.quality.Dto;
|
|
|
|
using System.Collections.Generic;
|
|
using DOAN.Model.MES.base_;
|
|
|
|
namespace DOAN.Service.MES.quality
|
|
{
|
|
/// <summary>
|
|
/// 缺陷收集service接口
|
|
/// </summary>
|
|
public interface IQcDefectCollectionService : IBaseService<QcDefectCollection>
|
|
{
|
|
PagedInfo<QcDefectCollectionDto> GetList(QcDefectCollectionQueryDto parm);
|
|
|
|
QcDefectCollection GetInfo(string Id);
|
|
|
|
QcDefectCollection AddQcDefectCollection(QcDefectCollection parm);
|
|
|
|
int UpdateQcDefectCollection(QcDefectCollection parm);
|
|
|
|
List<BaseWorkRoute> GetAllLines();
|
|
|
|
}
|
|
}
|