You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
868 B
C#
22 lines
868 B
C#
using Dapper;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IPageFunctionService : IBaseService<SysProgramFunOp>
|
|
{
|
|
public List<SysProgramFunOp> getListByPage(ref Pager page, string menuName, String enabled);
|
|
public List<KeyValueResult> GetWebMenuList(string name);
|
|
public List<KeyValueResult> GetOpType();
|
|
public List<SysProgramFunOp> GetFunctionByRuid(string ruid);
|
|
public bool SaveOp(string where, SysProgramFunOp paramsList);
|
|
public bool AddOp(SysProgramFunOp paramsList);
|
|
public bool ExitOp(string program, string fun_name, string grid_name, string op_name);
|
|
public bool DeleteByRuid(string ruidStr);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|