1. 程式人生 > >mybatisGenerator生成程式碼時,只有insert方法

mybatisGenerator生成程式碼時,只有insert方法

1.確保資料表有主鍵

2.檢查mybatis配置檔案MBG.xml是否做了配置限制

        <table tableName="push_code" domainObjectName="PushCode"
        enableCountByExample="false"
        enableUpdateByExample="false"
        enableDeleteByExample="false"
        enableSelectByExample="false"
        selectByExampleQueryId="false"
        enableSelectByPrimaryKey="false"
        ></table>