21 lines
515 B
C#
21 lines
515 B
C#
using DOAN.Model;
|
|
using DOAN.Model.Dto;
|
|
|
|
namespace DOAN.Service.Business.IBusinessService
|
|
{
|
|
/// <summary>
|
|
/// 追溯零件清单service接口
|
|
/// </summary>
|
|
public interface ITraceProjectPartService : IBaseService<TraceProjectPart>
|
|
{
|
|
PagedInfo<TraceProjectPartDto> GetList(TraceProjectPartQueryDto parm);
|
|
|
|
TraceProjectPart GetInfo(int Id);
|
|
|
|
TraceProjectPart AddTraceProjectPart(TraceProjectPart parm);
|
|
|
|
int UpdateTraceProjectPart(TraceProjectPart parm);
|
|
|
|
}
|
|
}
|