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
943 B
C#
22 lines
943 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 IAndonInfoQueryService : IBaseService<SysPartSnRule>
|
|
{
|
|
public Hashtable getListByPage(String txtStartTime, String txtEndTime, string type, Pager pager, String direction, String sort,String enabled);
|
|
public Hashtable getPartSNRuleDetail(String ruid);
|
|
public int deletePartSNRule(String ids);
|
|
public List<KeyValueResult> getTypeData();
|
|
public String isExsitPart_no(String part_no);
|
|
public Hashtable getTableListByPage(String txtStartTime, String txtEndTime, string type, Pager pager, String direction, String sort, Boolean isPage);
|
|
public List<GAndonLog> getAndonCount(string condition);
|
|
public List<GAndonLog> getAndonTime(string condition);
|
|
}
|
|
}
|