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.

23 lines
935 B
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 ICarrierManageRepository : IBaseRepository<WmsRack>
{
public List<WmsRack> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int saveCarrier(WmsRack htParams);
public int updateCarrier(WmsRack htParams);
public List<CarrierManage> ifCarrierManage(String rackNo);
public int EnableCarrier(String warehouse_id);
public List<CarrierManage> getExportList(string strWhere,string orderBy);
public int DisableCarrier(String warehouse_id);
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
}
}