dbd0ec48bec5c8e0a4f2b17d41cfc1ff1ca20e3e.svn-base 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. package com.sysmodel.datamodel.xmlmanager.xmlobjdll;
  2. import com.sysmodel.datamodel.xmlmodel.impl.MdpAttributeImpl;
  3. import com.sysmodel.datamodel.xmlmodel.impl.MdpClassImpl;
  4. import com.sysmodel.datamodel.xmlmodel.impl.MdpConstantImpl;
  5. import com.sysmodel.datamodel.xmlmodel.impl.MdpDataSourceImpl;
  6. import com.sysmodel.datamodel.xmlmodel.impl.MdpModuleImpl;
  7. import com.sysmodel.datamodel.xmlmodel.impl.TemplateImpl;
  8. import com.sysmodel.datamodel.xmlmodel.impl.PropertyImpl;
  9. /**
  10. * sysmodel com.sysmodel.datamodel.xmlmodel create time 2005-6-19
  11. *
  12. * @author nbs
  13. */
  14. public interface SysModeldllable{
  15. /**
  16. * 新增
  17. */
  18. public String addMdpModule(MdpModuleImpl imp);
  19. /**
  20. * 删除
  21. */
  22. public String deleteMdpModule(MdpModuleImpl imp);
  23. /**
  24. * 更新
  25. */
  26. public String updateMdpModule(MdpModuleImpl imp);
  27. /**
  28. * 新增数据源 如数据源被更新,其引用表的状态被置为未知
  29. */
  30. public String addDataSource(MdpDataSourceImpl imp);
  31. /**
  32. * 删除数据源 如数据源被更新,其引用表的状态被置为未知
  33. */
  34. public String deleteDataSource(MdpDataSourceImpl imp);
  35. /**
  36. * 更新数据源 如数据源被更新,其引用表的状态被置为未知
  37. */
  38. public String updateDataSource(MdpDataSourceImpl imp);
  39. /**
  40. * 添加表 相同数据源表的中英文名不能相同
  41. */
  42. public String addTable(MdpClassImpl imp);
  43. /**
  44. * 删除表 与表相关的主表和关系信息一并删除,如表在数据源已经存在,删除库中表
  45. */
  46. public String deleteTable(MdpClassImpl imp);
  47. /**
  48. * 更新表 不更新字段信息
  49. */
  50. public String updateTable(MdpClassImpl imp);
  51. /**
  52. * @param imp
  53. * 表描述模型
  54. * @return 比较结果
  55. */
  56. public String checkTableConfig(MdpClassImpl imp);
  57. /**
  58. * 找出表中英文名称相同的字段
  59. *
  60. * @param imp
  61. * 表描述模型
  62. * @return
  63. */
  64. public String checkDescriptionConfig(MdpClassImpl imp);
  65. /**
  66. * 根据表的中文名获得表的初始化英文名信息
  67. *
  68. * @param imp
  69. * 表描述模型
  70. * @return
  71. * @throws Exception
  72. */
  73. public String getEnglishByDescription(MdpClassImpl imp) throws Exception;
  74. /**
  75. * 根据配置信息获得模块英文名称和常量表英文翻译
  76. *
  77. * @param imp
  78. * 表描述模型
  79. * @return
  80. * @throws Exception
  81. */
  82. public String getEnglishByDescription() throws Exception;
  83. /**
  84. * 检查数据库命名规范
  85. *
  86. * @param imp
  87. * @return
  88. */
  89. public String checkNameDefine(MdpClassImpl imp);
  90. /**
  91. * 添加字段
  92. */
  93. public String addAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass);
  94. /**
  95. * 更新字段
  96. */
  97. public String updateAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass, String oName);
  98. /**
  99. * 删除字段
  100. */
  101. public String deleteAttribute(MdpAttributeImpl imp, MdpClassImpl mdlclass);
  102. /**
  103. * 添加常量模板
  104. */
  105. public String addTemplate(TemplateImpl imp);
  106. /**
  107. * 更新常量模板
  108. */
  109. public String updateTemplate(TemplateImpl imp, String constantname);
  110. /**
  111. * 删除常量模板
  112. */
  113. public String deleteTemplate(TemplateImpl imp);
  114. /**
  115. * 添加常量模板属性
  116. */
  117. public String addProperty(PropertyImpl imp, TemplateImpl template);
  118. /**
  119. * 更新常量模板属性
  120. */
  121. public String updateProperty(PropertyImpl imp, TemplateImpl template, String oName);
  122. /**
  123. * 删除常量模板属性
  124. */
  125. public String deleteProperty(PropertyImpl imp, TemplateImpl template);
  126. /**
  127. * 添加常量
  128. */
  129. public String addConstant(MdpConstantImpl imp);
  130. /**
  131. * 更新常量
  132. */
  133. public String updateConstant(MdpConstantImpl imp, String constantname);
  134. /**
  135. * 删除常量
  136. */
  137. public String deleteConstant(MdpConstantImpl imp);
  138. /**
  139. * @param imp
  140. * 常量描述模型
  141. * @return 比较结果
  142. */
  143. public String checkConstantConfig(MdpConstantImpl imp);
  144. /**
  145. * @param imp
  146. * 表描述模型
  147. * @return 生成出JAVA SET/GET源程序
  148. */
  149. public String createJavaCode(MdpClassImpl imp);
  150. /**
  151. * @param classids
  152. * 表描述模型
  153. * @return 生成出DATAMODEL中mdpClass属性排序
  154. */
  155. public String createDataModelSort(String classidStr);
  156. }