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.
29 lines
1.2 KiB
C#
29 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;
|
|
using System.Data;
|
|
|
|
namespace Estsh.Core.Repository.IRepositories
|
|
{
|
|
public interface IAndonInfoQueryRepository : IBaseRepository<SysPartSnRule>
|
|
{
|
|
public List<SysPartSnRule> 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 deletePartSNRule(String ruid);
|
|
public List<KeyValueResult> getTypeData();
|
|
public String isExsitPart_no(String part_no);
|
|
public bool InsertData(List<SysPartSnRule> dt, int UserID);
|
|
public int GetPartID(string partNo);
|
|
public bool ExistsSNRule(int partID);
|
|
public List<GAndonLog> getAndonCount(string condition);
|
|
|
|
public List<GAndonLog> getAndonTime(string condition);
|
|
|
|
public bool ExecuteSqlTransaction(List<string> SqlStrings, List<DynamicParameters> Parameters, ref string msg);
|
|
}
|
|
}
|