| | |
| | | |
| | | <mapper namespace="com.iailab.module.model.mcs.pre.dao.MmItemOutputDao"> |
| | | |
| | | <resultMap id="MmItemOutputVO" type="com.iailab.module.model.mdk.vo.MmItemOutputVO"> |
| | | <result property="id" column="ID"/> |
| | | <result property="itemId" column="ITEMID"/> |
| | | <result property="pointId" column="POINTID"/> |
| | | <result property="resultTableName" column="TABLENAME"/> |
| | | <result property="order" column="OUTPUTORDER"/> |
| | | </resultMap> |
| | | |
| | | <select id="getOutPutById" resultMap="MmItemOutputVO"> |
| | | SELECT t1.id, |
| | | t1.itemid, |
| | | t1.pointid, |
| | | t2.tablename, |
| | | t1.outputorder |
| | | FROM t_mm_item_output t1, |
| | | t_mm_result_table t2 |
| | | WHERE t1.id = #{value} |
| | | AND t1.resulttableid = t2.id |
| | | </select> |
| | | <select id="getOutPutByItemId" resultMap="MmItemOutputVO"> |
| | | SELECT t1.id, |
| | | t1.itemid, |
| | | t1.pointid, |
| | | t2.tablename, |
| | | t1.outputorder |
| | | FROM t_mm_item_output t1, |
| | | t_mm_result_table t2 |
| | | WHERE t1.itemid = #{itemid} |
| | | AND t1.resulttableid = t2.id |
| | | ORDER BY t1.outputorder |
| | | </select> |
| | | <select id="getOutPutByPointId" resultMap="MmItemOutputVO"> |
| | | SELECT t1.id, |
| | | t1.itemid, |
| | | t1.pointid, |
| | | t2.tablename, |
| | | t1.outputorder |
| | | FROM t_mm_item_output t1, |
| | | t_mm_result_table t2 |
| | | WHERE t1.pointid = #{value} |
| | | AND t1.resulttableid = t2.id |
| | | ORDER BY t1.outputorder |
| | | <select id="queryList" resultType="com.iailab.module.model.mcs.pre.dto.MmItemOutputDTO"> |
| | | select * from t_mm_item_output t |
| | | <where> |
| | | <if test="params.itemid != null and params.itemid != ''"> |
| | | AND t.itemid LIKE CONCAT('%', #{params.itemid},'%') |
| | | </if> |
| | | </where> |
| | | </select> |
| | | </mapper> |