潘志宝
2024-09-30 303715d81f0c1cd8b32cd659b7734c01565369a6
提交 | 用户 | 时间
7fd198 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3
4 <mapper namespace="com.iailab.module.model.mcs.pre.dao.MmPredictModelDao">
5
9cfbab 6     <select id="getActiveModelByItemId" resultType="com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity">
7fd198 7         SELECT
8             t.*
9         FROM
10           t_mm_predict_model t
11         WHERE status=1
12           AND itemid=#{value}
13     </select>
14
15
9cfbab 16     <select id="getSampleLength" resultType="com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity">
7fd198 17         SELECT
18             t.predictsamplength
19         FROM
20             t_mm_predict_model t
21         WHERE status=1
22           AND id=#{value}
23     </select>
24
25
26
27 </mapper>