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.

34 lines
1.8 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 ILocatePartDefineService : IBaseService<SysLocate>
{
public Hashtable getLocateListByPage(string locateName, string locateDesc, string partNo, string partSpec, string partSpec2, string enabled, int factoryId, Pager pager, String direction, string safetyPullOrder, string isSafetyPull, String sort);
public List<KeyValueResult> getSelectWarehouse(string factoryId);
public List<KeyValueResult> getSelectZone(string warehouseId);
public List<SysWarehouse> getSelectWarehouseInfo(string warehouseId);
public List<SysZone> getSelectZoneInfo(string zone_id);
public List<SysLocate> getSelectLocateInfo(string locateName);
public List<SysLocatePart> getSelectLocatePartInfo(string locateName, string partNo);
public int saveLocatePart(SysLocatePart ht);
public int updateLocatePart(SysLocatePart ht);
public Hashtable getLocateDetail(String guid);
public int deleteLocatePart(String ids);
public List<KeyValueResult> GetLocateType();
public List<KeyValueResult> GetpartInfo();
public List<SysPart> GetPartInfo(string part_no);
public List<SysLocate> GetLocateInfo(string locateName);
public int EnableLocatePart(String ids);
public int DisableLocatePart(String ids);
public SysPart GetPartInfoByPartNo(string partNo);
public List<LocatePart> getExportList(string locateName, string locateDesc, string partNo, string partSpec, string partSpec2, string enabled, int factoryId);
public Hashtable ImportExcel(List<LocatePart> inputStream, int factoryId, string factoryCode, int empId);
}
}