<select id="selectPPersonListById" parameterType="string" resultMap="PPersonListResult">
时间: 2023-09-21 21:12:57 浏览: 88
MyBatis中传入参数parameterType类型详解
这看起来像是 MyBatis 的一个 SQL 映射文件中的一个 select 语句。其中,id 属性指定了这个 select 语句的唯一标识符,parameterType 属性指定了这个 select 语句的输入参数类型,resultMap 属性指定了这个 select 语句返回结果集的映射关系。具体的实现细节需要结合上下文来确定。
阅读全文