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.

20 lines
666 B
C#

using Estsh.Core.Model.ExcelModel;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Util;
using System.Collections;
using System.Data;
namespace Estsh.Core.Services.IServices
{
public interface IRepairQueryService : IBaseService<GSnStatus>
{
public List<KeyValueResult> GetPDLineName();
public List<KeyValueResult> GetModelTypeList();
public List<KeyValueResult> GetModelList(string typeName);
public List<GSnStatus> GetRepairDataList(string whereStr, Pager pager, ref int totalCount);
public List<RepairQuery> getTableListByPage(string whereStr, Pager pager, ref int totalCount);
}
}