22 lines
499 B
C#
22 lines
499 B
C#
using DOAN.Model.PBL.Dto;
|
|
using DOAN.Model.PBL;
|
|
|
|
namespace DOAN.Service.PBL.IPBLService
|
|
{
|
|
/// <summary>
|
|
/// service接口
|
|
/// </summary>
|
|
public interface IMesInterationLogService : IBaseService<MesInterationLog>
|
|
{
|
|
PagedInfo<MesInterationLogDto> GetList(MesInterationLogQueryDto parm);
|
|
|
|
MesInterationLog GetInfo(string Id);
|
|
|
|
|
|
MesInterationLog AddMesInterationLog(MesInterationLog parm);
|
|
int UpdateMesInterationLog(MesInterationLog parm);
|
|
|
|
|
|
}
|
|
}
|