-
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
9ca2aa1
commit 3c2df9e
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
legacy/src/main/java/ca/bc/gov/app/dto/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,33 @@ | ||
package ca.bc.gov.app.dto; | ||
|
||
import java.time.LocalDate; | ||
import java.util.List; | ||
|
||
public record ForestClientDetailsDto ( | ||
String clientNumber, | ||
String clientName, | ||
String legalFirstName, | ||
String legalMiddleName, | ||
String clientStatusCode, | ||
String clientStatusDesc, | ||
String clientTypeCode, | ||
String clientTypeDesc, | ||
String clientIdTypeCode, | ||
String clientIdTypeDesc, | ||
String clientIdentification, | ||
String registryCompanyTypeCode, | ||
String corpRegnNmbr, | ||
String clientAcronym, | ||
String wcbFirmNumber, | ||
String ocgSupplierNmbr, | ||
String clientComment, | ||
LocalDate clientCommentUpdateDate, | ||
String clientCommentUpdateUser, | ||
String goodStandingInd, | ||
LocalDate birthdate, | ||
|
||
List<ForestClientLocationDto> addresses, | ||
List<ForestClientContactDto> contacts | ||
) { | ||
|
||
} |