需要在insert方法中添加
<insert id="insertSelective" parameterType="com.midou.ott.model.MDActivity" useGeneratedKeys="true" keyProperty="id">
加上上面红色部分,keyProperty中的id,是MDActivity对象的中的Id
使用时直接从MDActivity对象中获取到ID
2022-12-04 16:09:55
需要在insert方法中添加
<insert id="insertSelective" parameterType="com.midou.ott.model.MDActivity" useGeneratedKeys="true" keyProperty="id">
加上上面红色部分,keyProperty中的id,是MDActivity对象的中的Id
使用时直接从MDActivity对象中获取到ID