-
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.
feature(CCLS-1974) proceedings and costs amendments for ebs-api
Includes: - CCLS-2044 amended proceedings endpoint for lead proceedings - CCLS-2045 client involvement type endpoint - CCLS-2046 level of service endpoint - CCLS-2043 matter types endpoint
- Loading branch information
1 parent
5247a36
commit 4f1512b
Showing
17 changed files
with
698 additions
and
20 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
35 changes: 35 additions & 0 deletions
35
data-service/src/main/java/uk/gov/laa/ccms/data/entity/LevelOfService.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,35 @@ | ||
package uk.gov.laa.ccms.data.entity; | ||
|
||
import com.fasterxml.jackson.databind.PropertyNamingStrategies; | ||
import com.fasterxml.jackson.databind.annotation.JsonNaming; | ||
import jakarta.persistence.Column; | ||
import jakarta.persistence.EmbeddedId; | ||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.Table; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
import org.hibernate.annotations.Immutable; | ||
|
||
/** | ||
* Represents a Level Of service lookup value entity. | ||
*/ | ||
@Entity | ||
@Data | ||
@NoArgsConstructor | ||
@Table(name = "XXCCMS_LEVEL_OF_SERVICE_V") | ||
@Immutable | ||
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class) | ||
public class LevelOfService { | ||
|
||
@EmbeddedId | ||
private LevelOfServiceId id; | ||
|
||
@Column(name = "LEVEL_OF_SERVICE_CODE") | ||
private String levelOfServiceCode; | ||
|
||
@Column(name = "DESCRIPTION") | ||
private String description; | ||
|
||
@Column(name = "DEFAULT_CODE") | ||
private String defaultCode; | ||
} |
Oops, something went wrong.