Browse Source

data key 변경

pull/16/head
박재우 10 months ago
parent
commit
f556933189
  1. 6
      pav-server/src/main/java/com/palnet/biz/jpa/repository/flt/FltPlanQueryRepository.java

6
pav-server/src/main/java/com/palnet/biz/jpa/repository/flt/FltPlanQueryRepository.java

@ -2016,9 +2016,9 @@ public class FltPlanQueryRepository {
List<Tuple> res = query
.select(
new CaseBuilder()
.when(ccb.statusCd.eq("01")).then("비행 중")
.when(ccb.statusCd.eq("99")).then("비행 완료")
.when(fpb.planSno.isNotNull()).then("비행 대기 중")
.when(ccb.statusCd.eq("01")).then("inFlight")
.when(ccb.statusCd.eq("99")).then("flightComplete")
.when(fpb.planSno.isNotNull()).then("flightWaiting")
.otherwise("비행 없음").as("status"),
fpb.count()
)

Loading…
Cancel
Save