112
This commit is contained in:
21
DOAN.Service/PBL/IService/ILightLogService.cs
Normal file
21
DOAN.Service/PBL/IService/ILightLogService.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 ILightLogService : IBaseService<LightLog>
|
||||
{
|
||||
PagedInfo<LightLogDto> GetList(LightLogQueryDto parm);
|
||||
|
||||
LightLog GetInfo(string Id);
|
||||
|
||||
|
||||
LightLog AddLightLog(LightLog parm);
|
||||
int UpdateLightLog(LightLog parm);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user