generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: changing query to prevent connection drop (#499)
- Loading branch information
1 parent
9f26ea8
commit c64cbfa
Showing
12 changed files
with
349 additions
and
1,283 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...d/src/main/java/ca/bc/gov/restapi/results/oracle/entity/SilvicultureSearchProjection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package ca.bc.gov.restapi.results.oracle.entity; | ||
|
||
import java.math.BigDecimal; | ||
import java.time.LocalDateTime; | ||
|
||
public interface SilvicultureSearchProjection { | ||
Long getOpeningId(); | ||
String getOpeningNumber(); | ||
String getCategory(); | ||
String getStatus(); | ||
String getCuttingPermitId(); | ||
String getTimberMark(); | ||
String getCutBlockId(); | ||
BigDecimal getOpeningGrossArea(); | ||
LocalDateTime getDisturbanceStartDate(); | ||
String getForestFileId(); | ||
String getOrgUnitCode(); | ||
String getOrgUnitName(); | ||
String getClientNumber(); | ||
String getClientLocation(); | ||
LocalDateTime getRegenDelayDate(); | ||
LocalDateTime getEarlyFreeGrowingDate(); | ||
LocalDateTime getLateFreeGrowingDate(); | ||
LocalDateTime getUpdateTimestamp(); | ||
String getEntryUserId(); | ||
Long getSubmittedToFrpa108(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.