-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f13340b
commit 0d67ebd
Showing
6 changed files
with
81 additions
and
5 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
17 changes: 17 additions & 0 deletions
17
backend/src/main/java/ca/bc/gov/app/dto/legacy/ForestClientContactDto.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,17 @@ | ||
package ca.bc.gov.app.dto.legacy; | ||
|
||
public record ForestClientContactDto( | ||
String clientNumber, | ||
String clientLocnCode, | ||
String contactCode, | ||
String contactName, | ||
String businessPhone, | ||
String secondaryPhone, | ||
String faxNumber, | ||
String emailAddress, | ||
String createdBy, | ||
String updatedBy, | ||
Long orgUnit | ||
) { | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
backend/src/main/java/ca/bc/gov/app/dto/legacy/ForestClientDetailsDto.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,24 @@ | ||
package ca.bc.gov.app.dto.legacy; | ||
|
||
import java.util.List; | ||
|
||
public record ForestClientDetailsDto ( | ||
String clientNumber, | ||
String clientName, | ||
String legalFirstName, | ||
String legalMiddleName, | ||
String clientStatusCode, | ||
String clientTypeCode, | ||
String clientIdTypeCode, | ||
String clientIdentification, | ||
String registryCompanyTypeCode, | ||
String corpRegnNmbr, | ||
String clientAcronym, | ||
String wcbFirmNumber, | ||
String ocgSupplierNmbr, | ||
String clientComment, | ||
List<ForestClientLocationDto> addresses, | ||
List<ForestClientContactDto> contacts | ||
) { | ||
|
||
} |
33 changes: 33 additions & 0 deletions
33
backend/src/main/java/ca/bc/gov/app/dto/legacy/ForestClientLocationDto.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,33 @@ | ||
package ca.bc.gov.app.dto.legacy; | ||
|
||
import java.time.LocalDate; | ||
import lombok.With; | ||
|
||
@With | ||
public record ForestClientLocationDto( | ||
String clientNumber, | ||
String clientLocnCode, | ||
String clientLocnName, | ||
String addressOne, | ||
String addressTwo, | ||
String addressThree, | ||
String city, | ||
String province, | ||
String postalCode, | ||
String country, | ||
String businessPhone, | ||
String homePhone, | ||
String cellPhone, | ||
String faxNumber, | ||
String emailAddress, | ||
String locnExpiredInd, | ||
LocalDate returnedMailDate, | ||
String trustLocationInd, | ||
String cliLocnComment, | ||
String createdBy, | ||
String updatedBy, | ||
Long orgUnit | ||
) { | ||
|
||
} | ||
|
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