vm.vue.editItem.vue.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gen Show documentation
Show all versions of gen Show documentation
beli-gen is a gen module.
#set($dictTypeExist=false)
#foreach($column in $columns)
#set($field=$column.javaField)
#set($comment=$column.columnComment)
#set($dictType=$column.dictType)
#if($column.javaField != $pkColumn.javaField && $dictTypeExist==false)
#set($dictTypeExist=true)
#end
#if($column.javaField != $pkColumn.javaField)
#if((${column.javaType} == "Date" ) && ${column.javaField} != "createDate" && ${column.javaField} != "updateDate")
#elseif(${column.javaField} == "createDate" || ${column.javaField} == "updateDate")
#elseif ($column.htmlType == "input")
#elseif($column.htmlType == "select" && "" != $dictType)
#elseif($column.htmlType == "select" && $dictType)
#elseif($column.htmlType == "checkbox" && "" != $dictType)
{{dict.name}}
#elseif($column.htmlType == "checkbox" && $dictType)
请选择字典生成
#elseif($column.htmlType == "radio" && "" != $dictType)
{{dict.name}}
#elseif($column.htmlType == "radio" && $dictType)
请选择字典生成
#elseif($column.htmlType == "datetime")
#elseif($column.htmlType == "textarea")
#elseif($column.htmlType == "inputNum")
#else
#end
#end
#end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy