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.
37 lines
1.7 KiB
C#
37 lines
1.7 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;
|
|
using System.Data;
|
|
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface ILocateDefineRepository : IBaseRepository<SysLocate>
|
|
{
|
|
|
|
public List<SysLocate> getList(string strWhere, string filedOrder);
|
|
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
|
|
public List<KeyValueResult> getSelectWarehouse(string factoryId);
|
|
public List<KeyValueResult> getSelectZone(int warehouseId);
|
|
public List<SysWarehouse> getSelectWarehouseInfo(string warehouseId);
|
|
public SysWarehouse getSelectWarehouseInfoByName(string warehouseName);
|
|
public SysLocate getlocateByExistName(string locateName);
|
|
public List<SysZone> getSelectZoneInfo(string zone_id);
|
|
public SysZone getSelectZoneInfoByName(string zone_name);
|
|
public int saveLocate(SysLocate htParams, bool flag, SysLocatePart ht);
|
|
public int updateLocate(SysLocate htParams, bool flag, SysLocatePart ht);
|
|
public int deleteLocate(String locate_id);
|
|
public List<SysPart> GetPartInfo(string part_no);
|
|
public List<KeyValueResult> GetLocateType();
|
|
public List<KeyValueResult> GetpartInfo();
|
|
public int EnableLocate(String locate_id);
|
|
public int DisableLocate(String locate_id);
|
|
public SysLocate ifExistsLocate(string locateName);
|
|
public List<LocateDefine> getExportList(string strWhere, string orderBy);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
}
|
|
}
|