9 lines
418 B
XML
9 lines
418 B
XML
<?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.blxc.business.dao.AnalysisRuleDao">
|
|
|
|
<select id="show" resultType="com.blxc.business.bean.AnalysisRule" parameterType="com.blxc.business.bean.AnalysisRule">
|
|
SELECT sim, code FROM bl_analysis_rule WHERE SIM = #{sim} LIMIT 1
|
|
</select>
|
|
|
|
</mapper> |