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.
28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
using Dapper;
|
|
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Repositories;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IZoneDefineRepository : IBaseRepository<SysZone>
|
|
{
|
|
public List<SysZone> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<KeyValueResult> getSelectWarehouse(string factoryID);
|
|
public List<SysWarehouse> getSelectWarehouseInfo(string warehouseId);
|
|
public SysWarehouse getWarehouseByExistName(string warehouseName);
|
|
public SysZone getZoneByExistName(string zoneName);
|
|
public int saveZone(SysZone htParams);
|
|
public int updateZone(SysZone htParams);
|
|
public int deleteZone(String warehouse_id);
|
|
public int EnableZone(String warehouse_id);
|
|
public int DisableZone(String warehouse_id);
|
|
public ZoneDefine ifExistsZone(string zoneName);
|
|
public List<ZoneDefine> getExportList(string strWhere, string orderBy);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|