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.

26 lines
1.1 KiB
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Services;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface IZoneDefineService : IBaseService<SysWarehouse>
{
public Hashtable getZoneListByPage(string zoneName, string zoneDesc, string enabled, int factoryId, Pager pager, String direction, String sort);
public List<KeyValueResult> getSelectWarehouse(string factoryId);
public List<SysWarehouse> getSelectWarehouseInfo(string WarehouseId);
public SysZone getZoneByExistName(string zoneName);
public int saveZone(SysZone htParams);
public int updateZone(SysZone htParams);
public Hashtable getZoneDetail(String warehouseId);
public int deleteZone(String ids);
public int EnableZone(String ids);
public int DisableZone(String ids);
public List<ZoneDefine> getExportList(string zoneName, string zoneDesc, string enabled, int factoryId);
public Hashtable ImportExcel(List<ZoneDefine> inputStream, int factoryId, string factoryCode, int empId);
}
}