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.
30 lines
1.2 KiB
C#
30 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 IMesRouteGroupRepository : IBaseRepository<MesRouteGroupDetail>
|
|
{
|
|
|
|
public List<MesRouteGroupDetail> 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 deleteData(String guid);
|
|
public List<KeyValueResult> getTerminalName();
|
|
public List<KeyValueResult> getBoardName();
|
|
public String isExsitPart_no(String part_no);
|
|
public bool InsertData(List<MesRouteGroup> dt, string userId);
|
|
public int GetModelID(string modelName);
|
|
public int GetPartID(string partNo);
|
|
public string GetPartLocation(string partNo);
|
|
public List<MesRouteGroupDetail> getTEMPdt(string ruluNO, string partLocation);
|
|
|
|
public bool existGroupid(string groupID, string partNO);
|
|
}
|
|
}
|