这是我的batis生成器文件:
<table tableName="jxc_stock_journal" enableCountByExample="true"
enableSelectByPrimaryKey="true" enableSelectByExample="true"
enableUpdateByPrimaryKey="true" enableDeleteByPrimaryKey="true"
enableInsert="true" domainObjectName="JxcStockJournal">
<generatedKey column="id" sqlStatement="MySql"
identity="true" />
</table>
,因此它将生成映射器xml文件。使用updateByPrimaryKeySelective
方法中的null签入:
我需要使用updateByPrimaryKeySelective
将某些字段设置为null,该怎么做?
答案 0 :(得分:0)
您需要使用“ updateByPrimaryKey”方法设置空值。如您所见,您可以使用“ updateByPrimaryKeySelective”来做到这一点。