zhuangpei-mesbackend/DOAN.Service/MES/quality/IService/IQcDefectCollectionService.cs
qianhao.xu b2950823bf 1
2024-09-30 16:04:32 +08:00

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();
}
}