12345678910111213 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
- <mapper namespace="cn.cslg.pas.mapper.PatentAnnotationMapper">
- <select id="getPageList" parameterType="cn.cslg.pas.common.model.vo.PatentAnnotationVO" resultType="cn.cslg.pas.domain.PatentAnnotation">
- select a.*, u.name as create_name
- from os_patent_annotation a
- left join os_distribution u on u.id = a.create_by
- <where>
- and a.patent_id = #{params.patentId}
- and a.project_id = #{params.projectId}
- </where>
- </select>
- </mapper>
|