112
This commit is contained in:
21
DOAN.Service/PBL/IService/IMesInterationLogService.cs
Normal file
21
DOAN.Service/PBL/IService/IMesInterationLogService.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user