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.

25 lines
1.2 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 IStockDetailQueryService : IBaseService<SysStock>
{
public Hashtable getZoneList(string zoneName, string enabled, int factoryId, Pager pager, String direction, String sort);
public List<SysStock> getLocateListByPage(string zoneName, string locateName, string enabled, int factoryId);
public List<KeyValueResult> GetStockType();
public List<SysStock> getDPSListByPage(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, int factoryId,string stockType);
public List<KeyValueResult> GetPartNo();
public List<KeyValueResult> GetLocateName();
public List<KeyValueResult> GetSysEnum(string enumtype);
public List<KeyValueResult> GetWareHouseName();
public List<StockDetailQuery> getExportList(string zoneName, string locateName, string cartonNo, string partNo, string partSpec, string enabled, string factoryId,string stockType);
public int EnableData(string ids, string empId);
}
}