Compare commits
2 Commits
4398f32e0d
...
b2e8d2d9c6
| Author | SHA1 | Date | |
|---|---|---|---|
| b2e8d2d9c6 | |||
| 0db45648d2 |
@ -159,9 +159,8 @@ public class PwrGnrSimService {
|
||||
// 4. 계산을 위해 order by 변경 (총용량 DESC) -계산용
|
||||
List<PwrGnrSimRoofResponse> moduleGroupList =
|
||||
roofGroupModuleList.stream()
|
||||
.sorted(
|
||||
Comparator.comparingDouble(PwrGnrSimRoofResponse::getTotSpecification)
|
||||
.reversed()) // 내림차순 정렬
|
||||
// .sorted(Comparator.comparingDouble(PwrGnrSimRoofResponse::getTotSpecification).reversed()) // 내림차순 정렬
|
||||
.sorted(Comparator.comparingDouble(PwrGnrSimRoofResponse::getAmp)) //AMP 올림차순
|
||||
.collect(Collectors.toList());
|
||||
|
||||
// 5. PCS Item 조회
|
||||
|
||||
@ -103,7 +103,7 @@
|
||||
AND MII.SALT_AFFECTED_FLG = #{saltAffectedFlg}
|
||||
</if>
|
||||
) TT
|
||||
ORDER BY TT.DISP_ORDER
|
||||
ORDER BY TT.DISP_ORDER, TT.ITEM_ID
|
||||
</select>
|
||||
|
||||
<select id="getItemDetail" parameterType="String" resultType="com.interplug.qcast.biz.displayItem.dto.ItemDetailResponse" >
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user