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.

21 lines
786 B
C#

using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IProcessDefineRepository : IBaseRepository<SysProcess>
{
public List<SysProcess> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<KeyValueResult> getStageInfo();
public List<KeyValueResult> getOperateType();
public int savePdline(SysProcess htParams);
public int updatePdline(SysProcess htParams);
public int deleteProcess(String process_id);
public int EnableData(String ids);
public int DisableData(String ids);
}
}