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.

18 lines
557 B
C#

using Dapper;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
using System.Data;
namespace Estsh.Core.Repository.IRepositories
{
public interface ICheckFreezeRepository : IBaseRepository<SysPart>
{
public Hashtable getListByPage(string cbChkCommand, int userId);
public List<KeyValueResult> GetChkCommandList();
public List<dynamic> Freeze(string cbChkCommand, string userId);
public List<dynamic> Thaw(string cbChkCommand, string userId);
}
}