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.

25 lines
1.0 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 ISampleTestQueryRepository : IBaseRepository<SysPartCustOrder>
{
public List<SysPartCustOrder> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int saveSampleTestQuery(SysPartCustOrder htParams);
public int updateSampleTestQuery(SysPartCustOrder htParams);
public int deleteSampleTestQuery(String part_id);
public int EnableData(String ids);
public int DisableData(String ids);
public List<KeyValueResult> getSelectSampleTestQuery();
public List<KeyValueResult> getSelectSampleTestQuery_ModelName();
public List<SampleTestQuery> getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
}
}