Skip to content

Commit

Permalink
fix(ccls-1895): add mandatory flag to prior auth detail
Browse files Browse the repository at this point in the history
  • Loading branch information
porritta committed Dec 13, 2023
1 parent 34626e3 commit cba3ec7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions data-api/open-api-specification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,8 @@ components:
type: 'string'
lov_code:
type: 'string'
mandatory_flag:
type: 'boolean'
commonLookupValueDetail:
type: 'object'
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ public class PriorAuthority {
@Column(name = "LOV_CODE")
private String lovCode;

/**
* The mandatory flag.
*/
@Column(name = "MANDATORY_FLAG")
private Boolean mandatoryFlag;

/**
* Many to one back reference to PriorAuthorityType.
*/
@ManyToOne
@JoinColumn(name = "PRIOR_AUTHORITY_TYPE_CODE")
private PriorAuthorityType type;
Expand Down

0 comments on commit cba3ec7

Please sign in to comment.