@ -9,7 +9,7 @@
<result property= "tagCategory" column= "TAG_CATEGORY" />
<result property= "tagCategory" column= "TAG_CATEGORY" />
<result property= "categoryCode" column= "CATEGORY_CODE" />
<result property= "categoryCode" column= "CATEGORY_CODE" />
<result property= "categoryName" column= "CATEGORY_NAME" />
<result property= "categoryName" column= "CATEGORY_NAME" />
<result property= "sort" column= "SORT " />
<result property= "structLevel" column= "STRUCT_LEVEL " />
<result property= "forbiddenFlag" column= "FORBIDDEN_FLAG" />
<result property= "forbiddenFlag" column= "FORBIDDEN_FLAG" />
<result property= "delFlag" column= "DEL_FLAG" />
<result property= "delFlag" column= "DEL_FLAG" />
<result property= "revision" column= "REVISION" />
<result property= "revision" column= "REVISION" />
@ -24,11 +24,12 @@
<collection property= "tagList" ofType= "com.epmet.plugin.power.dto.axis.result.PowerAxisTagCategoryResultDTO" >
<collection property= "tagList" ofType= "com.epmet.plugin.power.dto.axis.result.PowerAxisTagCategoryResultDTO" >
<result property= "categoryCode" column= "CATEGORY_CODE" />
<result property= "categoryCode" column= "CATEGORY_CODE" />
<result property= "categoryName" column= "CATEGORY_NAME" />
<result property= "categoryName" column= "CATEGORY_NAME" />
<result property= "structLevel" column= "STRUCT_LEVEL" />
</collection>
</collection>
</resultMap>
</resultMap>
<select id= "listSimpleAll" resultMap= "listSimpleAllResultMap" >
<select id= "listSimpleAll" resultMap= "listSimpleAllResultMap" >
select t.TAG_CATEGORY,t.CATEGORY_NAME,t.CATEGORY_CODE from pli_power_axis_tag t where t.DEL_FLAG = '0' and t.FORBIDDEN_FLAG = '0' order by t.SORT
select t.TAG_CATEGORY,t.CATEGORY_NAME,t.CATEGORY_CODE,t.STRUCT_LEVEL from pli_power_axis_tag t where t.DEL_FLAG = '0' and t.FORBIDDEN_FLAG = '0' order by t.STRUCT_LEVEL
</select>
</select>