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.

40 lines
1.9 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 ILocatePartDefineRepository : IBaseRepository<SysLocatePart>
{
public List<SysLocatePart> 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(string warehouseId);
public List<SysWarehouse> getSelectWarehouseInfo(string warehouseId);
public List<SysZone> getSelectZoneInfo(string zone_id);
public List<SysLocate> getSelectLocateInfo(string strWhere);
public List<SysLocatePart> getSelectLocatePartInfo(string strWhere);
public int saveLocatePart( SysLocatePart ht);
public int updateLocatePart( SysLocatePart ht);
public int deleteLocatePart(String locate_id);
public List<SysPart> GetPartInfo(string part_no);
public List<SysLocate> GetLocateInfo(string locateName);
public SysLocate GetLocateInfoByName(string locateName);
public List<KeyValueResult> GetLocateType();
public List<KeyValueResult> GetpartInfo();
public int EnableLocatePart(String locate_id);
public int DisableLocatePart(String locate_id);
public SysLocate ifExistsLocatePart(string locateName);
public SysLocatePart ifExistsLocatePartByPartNo(string locateName, string partNo);
public SysPart GetPartInfoByPartNo(string partNo);
public List<LocatePart> getExportList(string strWhere, string orderBy);
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
}
}