|
@ -2,6 +2,7 @@ package com.epmet.plugin.power.modules.axis.dao; |
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.plugin.power.dto.axis.result.PowerAxisAllTagCategoryResultDTO; |
|
|
import com.epmet.plugin.power.dto.axis.result.PowerAxisAllTagCategoryResultDTO; |
|
|
|
|
|
import com.epmet.plugin.power.dto.axis.result.PowerAxisTagCategoryResultDTO; |
|
|
import com.epmet.plugin.power.modules.axis.entity.PowerAxisTagEntity; |
|
|
import com.epmet.plugin.power.modules.axis.entity.PowerAxisTagEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Param; |
|
|
import org.apache.ibatis.annotations.Param; |
|
@ -39,4 +40,7 @@ public interface PowerAxisTagDao extends BaseDao<PowerAxisTagEntity> { |
|
|
Integer selectStructLevelById(@Param("customerId") String customerId, |
|
|
Integer selectStructLevelById(@Param("customerId") String customerId, |
|
|
@Param("tagCategory") String tagCategory, |
|
|
@Param("tagCategory") String tagCategory, |
|
|
@Param("axisStructId") String axisStructId); |
|
|
@Param("axisStructId") String axisStructId); |
|
|
|
|
|
|
|
|
|
|
|
List<PowerAxisTagCategoryResultDTO> selectByTagCategory(@Param("tagCategory") String tagCategory, |
|
|
|
|
|
@Param("customerId") String customerId); |
|
|
} |
|
|
} |