Skip to content

Commit

Permalink
Added missing dto
Browse files Browse the repository at this point in the history
  • Loading branch information
mamartinezmejia committed Nov 27, 2024
1 parent 9ca2aa1 commit 3c2df9e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions legacy/src/main/java/ca/bc/gov/app/dto/ForestClientDetailsDto.java
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
) {

}

0 comments on commit 3c2df9e

Please sign in to comment.