待生成的表
mybatis-generator-config.xml的table属性配置如下时生成的pojo和mapper
<table tableName="%"></table>
正常想要的是去掉T且去掉Example类
<table tableName="%"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
<domainObjectRenamingRule searchString="^T" replaceString=""/>
</table>
想要的生成的效果