<mapper namespace="com.keyou.dao.samSystem.SamApplyDao">
<update >
        UPDATE SAM_APPLY
        <trim prefix="set" suffixOverrides=",">
            <if test="samApplyRejectInputParam.rejectOpinion!=null">
                SAM_APPLY.REJECTOPINION=#{samApplyRejectInputParam.rejectOpinion},
            </if>
        </trim>
        <where>
            <if test="samApplyRejectInputParam.applyguid!=null">
                SAM_APPLY.APPLYGUID=#{samApplyRejectInputParam.applyguid}
            </if>
        </where>
    </update>
    </mapper>

  入参对象samApplyRejectInputParam与接口方法中的@param标志的参数对应如

    boolean updateRejectSamApply(@Param("samApplyRejectInputParam")SAMApplyRejectInputParam samApplyRejectInputParam);

 

相关文章:

  • 2022-12-23
  • 2021-12-22
  • 2022-01-06
  • 2022-12-23
  • 2022-01-27
  • 2022-12-23
  • 2021-06-17
  • 2022-12-23
猜你喜欢
  • 2022-02-13
  • 2022-02-13
  • 2021-11-30
  • 2022-02-20
相关资源
相似解决方案