| | |
| | | import org.apache.ibatis.annotations.Delete; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | void deleteInfluenceFactor(String configId); |
| | | |
| | | List<MmPredictInfluenceFactorHandleVO> selectList(@Param("params") Map<String, Object> params); |
| | | |
| | | @Select("SELECT t1.pattern,t2.factor_output_id,t3.result_name factor_output_name FROM t_mm_predict_influence_factor_config t1 LEFT JOIN t_mm_predict_influence_factor t2 ON t1.id = t2.config_id LEFT JOIN t_mm_item_output t3 ON t2.factor_output_id = t3.id WHERE t1.is_enable = 1 AND t1.output_id = #{outId}") |
| | | List<MmPredictInfluenceFactorVO> getListByOutId(String outId); |
| | | } |