博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mybatis使用@param("xxx")注解传参和不使用的区别
阅读量:5152 次
发布时间:2019-06-13

本文共 666 字,大约阅读时间需要 2 分钟。

public interface SystemParameterMapper {    int deleteByPrimaryKey(Integer id);    int insert(SystemParameterDO record);    SystemParameterDO selectByPrimaryKey(Integer id);//不使用注解    List
selectAll(); int updateByPrimaryKey(SystemParameterDO record); SystemParameterDO getByParamID(@Param("paramID") String paramID);//使用注解}

跟映射的xml

区别是:使用注解可以不用加parameterType

转载于:https://www.cnblogs.com/zyf-yxm/p/9089918.html

你可能感兴趣的文章