- 
                Notifications
    
You must be signed in to change notification settings  - Fork 397
 
Closed
Labels
Description
由于集成了通用mapper(tk.mybatis),在生成table时需要把example关闭,如:
<table tableName="t_user_info" domainObjectName="UserInfo"  enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"  enableSelectByExample="false" selectByExampleQueryId="false"> </table>
但是设置为false之后生成的mapper没有import ibatis的Param:
Param cannot be resolved to
a type
请问楼主有集成过通用mapper吗?