| | |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="com.yuanchu.mom.mapper.SealMapper"> |
| | | <select id="selectSeal" resultType="com.yuanchu.mom.mapper.SealMapper"> |
| | | select s.address,s.type,u.`name`,s.create_time |
| | | from seal s |
| | | LEFT JOIN `user` u |
| | | on s.create_user=u.id |
| | | <select id="selectSeal" resultType="com.yuanchu.mom.pojo.Seal"> |
| | | select * from seal |
| | | <if test="ew.customSqlSegment != null and ew.customSqlSegment != ''"> |
| | | ${ew.customSqlSegment} |
| | | </if> |
| | | </select> |
| | | |
| | | <select id="selectLaboratory" resultType="com.yuanchu.mom.pojo.Laboratory"> |
| | | SELECT * |
| | | from laboratory |
| | | WHERE id =#{labId} |
| | | </select> |
| | | </mapper> |