| | |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
| | | <mapper namespace="com.yuanchu.limslaboratory.mapper.ProductModelMapper"> |
| | | <resultMap id="selectproductModelMap" type="map"> |
| | | <id property="father" column="father"/> |
| | | <id property="name" column="father"/> |
| | | <collection property="children" resultMap="selectproductModelTowMap" javaType="List"/> |
| | | </resultMap> |
| | | |
| | |
| | | <select id="selectfather" resultType="java.lang.String"> |
| | | SELECT DISTINCT father |
| | | FROM lims_laboratory.product_model |
| | | WHERE father IS NOT NULL |
| | | AND father != '' |
| | | WHERE state = 1 |
| | | </select> |
| | | |
| | | <!--查询项目模版根据样品名--> |