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 ISupportingCustomerRepository : IBaseRepository { #region 成员方法 public List GetListFromPart(string strWhere); public Hashtable GetListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy); public List ifPartNo(String partNo); public List ifExemptionList(String partNo); public List ifExemptionList(String customerPart, String partNo); public List GetSelect(); public int Insert(WmsCustomerToSupplier htParams); public int Update(WmsCustomerToSupplier htParams); public int DeleteAll(); public int EnableData(String ids); public int DisableData(String ids); public List getExportList(String strwhere, String orderBy); public bool InsertData(List sqlStrings, List parameterList); #endregion 成员方法 } }