📄 imodeltemplate.cs
字号:
namespace PowerEasy.IDal.CommonModel
{
using PowerEasy.Enumerations;
using PowerEasy.Model.CommonModel;
using System;
using System.Collections.Generic;
public interface IModelTemplate
{
bool Add(ModelTemplatesInfo templateInfo);
bool Delete(string id);
bool ExportData(string templateId, string importPath, bool chkFormatConn);
int GetCountNumber();
string GetField(int id);
IList<ModelTemplatesInfo> GetImportList(string importPath);
IList<ModelTemplatesInfo> GetImportList(string importPath, ModelType type);
ModelTemplatesInfo GetInfoById(int id);
IList<ModelTemplatesInfo> GetModelTemplateInfoList(int startRowIndexId, int maxNumberRows);
IList<ModelTemplatesInfo> GetModelTemplateInfoList(int startRowIndexId, int maxNumberRows, ModelType type);
bool ImportData(string templateId, string importPath);
bool Update(ModelTemplatesInfo modelTemplatesInfo);
bool UpdateField(int id, string fieldList);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -