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.

22 lines
815 B
C#

using Dapper;
using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using System.Collections;
namespace Estsh.Core.Repository.IRepositories
{
public interface IDPSDefineRepository : IBaseRepository<GDps>
{
public List<GDps> getList(string strWhere, string filedOrder);
public Hashtable getListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public Hashtable getTableListByPage(int PageSize, int PageIndex, string strWhere, string OrderBy);
public int saveDPS(GDps htParams);
public int updateDPS(GDps htParams);
public int deleteDPS(String ruid);
public int EnableData(String ids);
public int DisableData(String ids);
public String isExsitPart_no(String part_no);
}
}