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.3 KiB
C#
30 lines
1.3 KiB
C#
using Dapper;
|
|
using Estsh.Core.Model.ExcelModel;
|
|
using Estsh.Core.Model.Result;
|
|
using Estsh.Core.Models;
|
|
using Estsh.Core.Util;
|
|
using System.Collections;
|
|
|
|
namespace Estsh.Core.Services.IServices
|
|
{
|
|
public interface IModelPartService : IBaseService<SysModel>
|
|
{
|
|
public Hashtable getModelPartListByPage(string TypeName, string ModelName, string txtEnabled, Pager pager, String direction, String sort);
|
|
public Hashtable getModelPartListByPage2(string TypeName, string ModelName, string txtEnabled, Pager pager, String direction, String sort);
|
|
public int saveModelPart(SysModel htParams);
|
|
public int saveModelPart_Sys_part(SysPart htParams);
|
|
public int updateModelPart(SysModel htParams);
|
|
public int updateModelPart_Sys_part(SysPart htParams);
|
|
public List<SysModel> getModelPart(String model_id);
|
|
public int deleteModelPart(String ids);
|
|
public int EnableData(String ids);
|
|
public int DisableData(String ids);
|
|
public int onState(String model_id, String enabled, string userID);
|
|
public List<KeyValueResult> GetModelName(string typeName);
|
|
public List<KeyValueResult> GetTypeName();
|
|
public List<KeyValueResult> getSelectModelPart();
|
|
public Hashtable ImportExcel(List<ModelPart> inputStream, int userId);
|
|
|
|
}
|
|
}
|