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#
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 ISupportingPartDefineRepository : IBaseRepository<WmsCustomerToStock>
|
|
{
|
|
#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<WmsCustomerToStock> ifExemptionList(String partNo);
|
|
public List<WmsCustomerToStock> ifExemptionList(String customerPart, String partNo);
|
|
public List<KeyValueResult> GetSelect();
|
|
public int Insert(WmsCustomerToStock htParams);
|
|
public int Update(WmsCustomerToStock htParams);
|
|
public int DeleteAll();
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public List<SupportingPartDefine> getExportList(String strwhere, String orderBy);
|
|
public bool InsertData(List<string> sqlStrings, List<DynamicParameters> parameterList);
|
|
|
|
#endregion 成员方法
|
|
|
|
}
|
|
}
|