PowerDesigner如何将物理模型转为对象模型,将对象模型转生成Java类
生活随笔
收集整理的這篇文章主要介紹了
PowerDesigner如何将物理模型转为对象模型,将对象模型转生成Java类
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
問題:PowerDesigner如何將物理模型轉為對象模型,將對象模型轉生成Java類
解決:物理模型轉對象模型
注:勾選一下選項
解決:將對象模型轉為Java類
核對后點擊“確定”即可生成.Java文件,在對應的位置查看即可
如何將模型中的code列和name列的內容調換
解決:通過執行以下腳本可解決
Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim mdl 'the current model 'get the current active model Set mdl = ActiveModel If (mdl Is Nothing) Then MsgBox "There is no current Model" ElseIf Not mdl.IsKindOf(PdPDM.cls_Model) Then MsgBox "The current model is not an Physical Data model." Else ProcessFolder mdl End If 'This routine copy name into code for each table, each column and each view 'of the current folder Private sub ProcessFolder(folder) Dim Tab 'running table for each Tab in folder.tables if not tab.isShortcut then if len(tab.code) <> 0 then tab.name = tab.code end if On Error Resume Next Dim col 'running column dim w for each col in tab.columns if len(col.code) <>0 then w=col.name col.name =col.code col.code=w end if On Error Resume Next next end if next end sub
即可實現調換
總結
以上是生活随笔為你收集整理的PowerDesigner如何将物理模型转为对象模型,将对象模型转生成Java类的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 如何将excel表格内的数据导入至mys
- 下一篇: springBoot静态资源优先级)