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.
15 lines
492 B
C#
15 lines
492 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ICheckFreezeService : IBaseService<SysPart>
|
|
{
|
|
public Hashtable getCheckFreezeListByPage(string cbChkCommand, int userId);
|
|
public List<KeyValueResult> GetChkCommandList();
|
|
public List<dynamic> Freeze(string cbChkCommand, string userId);
|
|
public List<dynamic> Thaw(string cbChkCommand, string userId);
|
|
}
|
|
}
|