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.

31 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 ISupportingCustomerRepository : IBaseRepository<WmsCustomerToSupplier>
{
#region 成员方法
public List<SysPart> GetListFromPart(string strWhere);
public Hashtable GetListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public List<SysPart> ifPartNo(String partNo);
public List<WmsCustomerToSupplier> ifExemptionList(String partNo);
public List<WmsCustomerToSupplier> ifExemptionList(String customerPart, String partNo);
public List<KeyValueResult> 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<SupportingCustomer> getExportList(String strwhere, String orderBy);
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
#endregion 成员方法
}
}