using DTO;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace IServices
|
{
|
public interface IPltPageService
|
{
|
ResultEntity save(PltPageDTO pltPageDTO);
|
|
PltPageDTO Get(string id);
|
|
ResultDataEntity<PltPageDTO> SearchByPaging(PltPageDTOSearch searchEntity);
|
|
ResultEntity ModifyStatus(string id, string userid);
|
|
List<PageEntity> GePagetList();
|
|
List<PltAuthDTO> GetauthList(string roleid = "");
|
|
ResultEntity SaveManyEntity(string roleid = "", string pageid = "", string User_id = "");
|
|
|
|
List<PageEntity> GetUserPage(string userid , string page_path);
|
}
|
}
|