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.
32 lines
1.6 KiB
C#
32 lines
1.6 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 IZonePartService : IBaseService<SysZonePart>
|
|
{
|
|
public Hashtable getZoneListByPage(String zoneName,String zoneDesc, string partNo,string partSpec, string enabled, int factoryId, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> getSelectZone(string warehouseId);
|
|
public List<SysZone> getSelectZoneInfo(string zone_name);
|
|
public List<SysZone> GetZoneInfo(string zoneName);
|
|
public List<SysZonePart> getSelectZonePartInfo(string zone_name,string partNo);
|
|
public List<SysVendor> getSelectVendorInfo(string vendorCode);
|
|
public int saveZonePart(SysZonePart ht);
|
|
public int updateZonePart(SysZonePart ht);
|
|
public Hashtable getZoneDetail(String guid);
|
|
public int deleteZonePart(String ids);
|
|
public List<KeyValueResult> GetpartInfo();
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<SysLocate> GetLocateInfo(string locateName);
|
|
public List<SysVendor> GetVendorInfo(string vendorCode);
|
|
public int EnableLocatePart(String ids);
|
|
public int DisableLocatePart(String ids);
|
|
public List<ZonePart> getExportList(String zoneName, String zoneDesc, string partNo, string partSpec, string enabled, int factoryId);
|
|
public Hashtable ImportExcel(List<ZonePart> inputStream, int factoryId, string factoryCode, int empId);
|
|
|
|
}
|
|
}
|