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#
21 lines
786 B
C#
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using System.Collections;
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IRouteDefineService : IBaseService<SysRoute>
|
|
{
|
|
public List<KeyValueResult> getRoute(string factoryId);
|
|
public List<SysRoute> getRouteById(string routeId);
|
|
public ArrayList getProcessTree(string factoryId);
|
|
public ArrayList getRouteTree(string factoryId, string routeId);
|
|
public bool saveRouteDetail(ArrayList routeList, int empId);
|
|
|
|
public int saveRouteDefine(SysRoute htParams);
|
|
public int updateRouteDefine(SysRoute htParams);
|
|
public int deleteRouteDefine(string routeId);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
}
|
|
}
|