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
802 B
C#
22 lines
802 B
C#
using Dapper;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IProcessDefineService : IBaseService<SysProcess>
|
|
{
|
|
public Hashtable getProcessListByPage(String process_name, Pager pager, String direction, String sort, String factoryId, String enabled);
|
|
public List<KeyValueResult> getStageInfo();
|
|
public List<KeyValueResult> getOperateType();
|
|
public int savePdline(SysProcess htParams);
|
|
public int updatePdline(SysProcess htParams);
|
|
public Hashtable getProcessDetail(String process_id);
|
|
public int deleteProcess(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|