<select id="getDicListByYwlx" parameterType="java.lang.String" resultType="org.dcits.domain.entity.common.DictionaryEntity">
时间: 2023-12-05 16:24:30 浏览: 142
Mybatis框架 mapper.xml文件中parameterType传递参数常用的几种方式.pdf
这是一个在 Java 中使用的 MyBatis 配置文件中的 select 语句。
这条语句用于通过业务类型(ywlx 参数)查询字典列表(DictionaryEntity 类型)。
它包含三个部分:
1. `<select id="getDicListByYwlx"`:定义这是一条 select 语句,并且给它起了一个 ID(getDicListByYwlx)。
2. `parameterType="java.lang.String"`:声明传入的参数类型为 String。
3. `resultType="org.dcits.domain.entity.common.DictionaryEntity"`:声明返回的结果类型为 DictionaryEntity 类型。
希望这对您有帮助!
阅读全文