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.

28 lines
885 B
C#

using Dapper;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using Estsh.Core.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Repository.IRepositories
{
public interface IPageFunctionRepository : IBaseRepository<SysProgramFunOp>
{
public List<SysProgramFunOp> getListByPage(ref Pager page, string strWhere);
public List<KeyValueResult> GetWebMenuList(string where);
public List<KeyValueResult> GetOpType();
public List<SysProgramFunOp> GetFunction(string whereStr);
public bool SaveOp(string where, SysProgramFunOp paramsList);
public bool AddOp(SysProgramFunOp paramsList);
public bool ExitOp(string where);
public new bool Delete(string where);
public int EnableData(String ids);
public int DisableData(String ids);
}
}