?? table.vm
字號:
<subsection name="$table.Name"> <p> $!table.Description </p> <table> <tr> <th>Name</th> <th>Type</th> <th>Size</th> <th>Default</th> <th>JavaName</th> <th>PK</th> <th>FK</th> <th>not null</th> <th>Description</th> </tr> #foreach ($col in $table.Columns) <tr> <td>$col.Name</td> <td>$col.Type</td> <td>$col.printSize()</td> #if ($col.DefaultValue && !$col.DefaultValue.equalsIgnoreCase("NULL") ) <td>$escape.getText($col.DefaultValue)</td> #else <td></td> #end <td>$col.JavaName</td> <td>#if ($col.isPrimaryKey()==true)X#end</td> <td>#if ($col.isForeignKey()==true)X#end</td> <td>#if ($col.isNotNull()==true)X#end</td> <td>$!col.Description</td> </tr> #end </table></subsection>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -