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.
24 lines
1.2 KiB
C#
24 lines
1.2 KiB
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 ISampleTestQueryService : IBaseService<SysProcess>
|
|
{
|
|
public Hashtable getSampleTestQueryListByPage(String type_name, String model_name, String Date, String Date2, String StartCarNo, String EndCarNo, Pager pager, String direction, String sort);
|
|
public int saveSampleTestQuery(SysPartCustOrder htParams);
|
|
public int updateSampleTestQuery(SysPartCustOrder htParams);
|
|
public List<SysPartCustOrder> getSampleTestQuery(String part_id);
|
|
public int deleteSampleTestQuery(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public List<KeyValueResult> getSelectSampleTestQuery();
|
|
public List<KeyValueResult> getSelectSampleTestQuery_ModelName();
|
|
public List<SampleTestQuery> getTableListByPage(String type_name, String model_name, String Date, String Date2, String StartCarNo, String EndCarNo, Pager pager, String direction, String sort, Boolean isPage);
|
|
}
|
|
}
|