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
884 B
C#

using Aspose.Cells;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using Estsh.Core.Repositories;
using Estsh.Core.Util;
using System.Collections;
namespace Estsh.Core.Services.IServices
{
public interface ISampleTestDefineService : IBaseService<GAbTestplan>
{
public Hashtable GetListByPage(String type_name, String model_name, Pager pager, String direction, String sort);
public List<KeyValueResult> GetSelectModelType();
public List<KeyValueResult> GetSelectModel();
public List<GAbTestplan> GetDetail(String testplan_id);
public int Insert(GAbTestplan htParams);
public int Update(GAbTestplan htParams);
public int Delete(String ids);
public int EnableData(String ids);
public int DisableData(String ids);
public Workbook ExportInfo(String type_name, String model_name);
}
}