22 lines
419 B
C#
22 lines
419 B
C#
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);
|
|
|
|
|
|
}
|
|
}
|