22 lines
571 B
C#
22 lines
571 B
C#
using RIZO.Model;
|
|
using RIZO.Model.System.Model;
|
|
using RIZO.Model.System.Model.Dto;
|
|
|
|
namespace RIZO.ServiceCore.Services
|
|
{
|
|
/// <summary>
|
|
/// 文件分组service接口
|
|
/// </summary>
|
|
public interface ISysFileGroupService : IBaseService<SysFileGroup>
|
|
{
|
|
PagedInfo<SysFileGroupDto> GetList(SysFileGroupQueryDto parm);
|
|
|
|
SysFileGroup GetInfo(int GroupId);
|
|
|
|
List<SysFileGroup> GetTreeList(SysFileGroupQueryDto parm);
|
|
|
|
SysFileGroup AddSysFileGroup(SysFileGroup parm);
|
|
int UpdateSysFileGroup(SysFileGroup parm);
|
|
}
|
|
}
|