提交 | 用户 | 时间
|
66782b
|
1 |
<?xml version="1.0" encoding="UTF-8" ?> |
D |
2 |
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > |
|
3 |
<mapper namespace="com.iailab.module.model.mpk.dao.ChartParamDao"> |
|
4 |
<select id="selectChartParamByChartCode" resultType="com.iailab.module.model.mpk.entity.ChartParamEntity" |
|
5 |
parameterType="java.lang.String"> |
|
6 |
SELECT |
|
7 |
t2.* |
|
8 |
FROM |
|
9 |
t_chart t1 |
|
10 |
LEFT JOIN t_chart_param t2 ON t1.id = t2.chart_id |
|
11 |
WHERE |
|
12 |
t1.chart_code = #{chartCode} |
|
13 |
</select> |
|
14 |
</mapper> |