1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <?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="com.yuanchu.limslaboratory.mapper.PlanMapper">
| <select id="selectAllPlan" resultType="com.yuanchu.limslaboratory.pojo.dto.PlanDto">
| select p.id,results,p.state,p.create_time,p.inspection_id,user_id,results,type,user_name
| from lims_laboratory.plan p right join lims_laboratory.inspection i
| on i.id=p.inspection_id
| <if test="state!=null">
| where p.state = #{state}
| </if>
| order by p.create_time desc
| limit #{pageSize},#{countSize}
| </select>
| </mapper>
|
|