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.
31 lines
1.5 KiB
C#
31 lines
1.5 KiB
C#
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface ILocateDefineService : IBaseService<SysLocate>
|
|
{
|
|
public Hashtable getLocateListByPage(string locateName, string locateDesc, string locateType,string zoneName,string enabled, int factoryId, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> getSelectWarehouse(string factoryId);
|
|
public List<KeyValueResult> getSelectZone(int warehouseId);
|
|
public List<SysWarehouse> getSelectWarehouseInfo(string warehouseId);
|
|
public SysLocate getlocateByExistName(string locateName);
|
|
public List<SysZone> getSelectZoneInfo(string zone_id);
|
|
public int saveLocate(SysLocate htParams, bool flag, SysLocatePart ht);
|
|
public int updateLocate(SysLocate htParams, bool flag, SysLocatePart ht);
|
|
public Hashtable getLocateDetail(String locate_id);
|
|
public int deleteLocate(String ids);
|
|
public List<KeyValueResult> GetLocateType();
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
|
|
public List<KeyValueResult> GetpartInfo();
|
|
public int EnableLocate(String ids);
|
|
public int DisableLocate(String ids);
|
|
public List<LocateDefine> getExportList(string locateName, string locateDesc, string locateType, string enabled, int factoryId);
|
|
public Hashtable ImportExcel(List<LocateDefine> inputStream, int factoryId, string factoryCode, int empId);
|
|
}
|
|
}
|