123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package com.sysmodel.datamodel.xmlmanager.xmlobjdll;
- import com.sysmodel.datamodel.xmlmodel.impl.MdpAttributeImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.MdpClassImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.MdpConstantImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.MdpDataSourceImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.MdpModuleImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.TemplateImpl;
- import com.sysmodel.datamodel.xmlmodel.impl.PropertyImpl;
- /**
- * sysmodel com.sysmodel.datamodel.xmlmodel create time 2005-6-19
- *
- * @author nbs
- */
- public interface SysModeldllable{
- /**
- * 新增
- */
- public String addMdpModule(MdpModuleImpl imp);
- /**
- * 删除
- */
- public String deleteMdpModule(MdpModuleImpl imp);
- /**
- * 更新
- */
- public String updateMdpModule(MdpModuleImpl imp);
- /**
- * 新增数据源 如数据源被更新,其引用表的状态被置为未知
- */
- public String addDataSource(MdpDataSourceImpl imp);
- /**
- * 删除数据源 如数据源被更新,其引用表的状态被置为未知
- */
- public String deleteDataSource(MdpDataSourceImpl imp);
- /**
- * 更新数据源 如数据源被更新,其引用表的状态被置为未知
- */
- public String updateDataSource(MdpDataSourceImpl imp);
- /**
- * 添加表 相同数据源表的中英文名不能相同
- */
- public String addTable(MdpClassImpl imp);
- /**
- * 删除表 与表相关的主表和关系信息一并删除,如表在数据源已经存在,删除库中表
- */
- public String deleteTable(MdpClassImpl imp);
- /**
- * 更新表 不更新字段信息
- */
- public String updateTable(MdpClassImpl imp);
- /**
- * @param imp
- * 表描述模型
- * @return 比较结果
- */
- public String checkTableConfig(MdpClassImpl imp);
- /**
- * 找出表中英文名称相同的字段
- *
- * @param imp
- * 表描述模型
- * @return
- */
- public String checkDescriptionConfig(MdpClassImpl imp);
- /**
- * 根据表的中文名获得表的初始化英文名信息
- *
- * @param imp
- * 表描述模型
- * @return
- * @throws Exception
- */
- public String getEnglishByDescription(MdpClassImpl imp) throws Exception;
- /**
- * 根据配置信息获得模块英文名称和常量表英文翻译
- *
- * @param imp
- * 表描述模型
- * @return
- * @throws Exception
- */
- public String getEnglishByDescription() throws Exception;
- /**
- * 检查数据库命名规范
- *
- * @param imp
- * @return
- */
- public String checkNameDefine(MdpClassImpl imp);
- /**
- * 添加字段
- */
- public String addAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass);
- /**
- * 更新字段
- */
- public String updateAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass, String oName);
- /**
- * 删除字段
- */
- public String deleteAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass);
- /**
- * 添加常量模板
- */
- public String addTemplate(TemplateImpl imp);
- /**
- * 更新常量模板
- */
- public String updateTemplate(TemplateImpl imp, String constantname);
- /**
- * 删除常量模板
- */
- public String deleteTemplate(TemplateImpl imp);
- /**
- * 添加常量模板属性
- */
- public String addProperty(PropertyImpl imp, TemplateImpl template);
- /**
- * 更新常量模板属性
- */
- public String updateProperty(PropertyImpl imp, TemplateImpl template, String oName);
- /**
- * 删除常量模板属性
- */
- public String deleteProperty(PropertyImpl imp, TemplateImpl template);
- /**
- * 添加常量
- */
- public String addConstant(MdpConstantImpl imp);
- /**
- * 更新常量
- */
- public String updateConstant(MdpConstantImpl imp, String constantname);
- /**
- * 删除常量
- */
- public String deleteConstant(MdpConstantImpl imp);
- /**
- * @param imp
- * 常量描述模型
- * @return 比较结果
- */
- public String checkConstantConfig(MdpConstantImpl imp);
- /**
- * @param imp
- * 表描述模型
- * @return 生成出JAVA SET/GET源程序
- */
- public String createJavaCode(MdpClassImpl imp);
- /**
- * @param classids
- * 表描述模型
- * @return 生成出DATAMODEL中mdpClass属性排序
- */
- public String createDataModelSort(String classidStr);
- }
|