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.
22 lines
850 B
C#
22 lines
850 B
C#
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 IWarehouseDefineService : IBaseService<SysWarehouse>
|
|
{
|
|
public Hashtable getWarehouseListByPage(string warehouseName, string warehouseDesc,string enabled,int factoryId, Pager pager, String direction, String sort);
|
|
public List<KeyValueResult> getSelectFactory();
|
|
public SysWarehouse getWarehouseByExistName(string warehouseName);
|
|
public int saveWarehouse(SysWarehouse htParams);
|
|
public int updateWarehouse(SysWarehouse htParams);
|
|
public Hashtable getWarehouseDetail(String warehouseId);
|
|
public int EnableWarehouse(String ids);
|
|
public int DisableWarehouse(String ids);
|
|
|
|
}
|
|
}
|