generated from pagopa/pagopa-functions-template
-
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.
[SELC-5514] feat: Added new values for GPU
- Loading branch information
1 parent
33f65e2
commit 8a92770
Showing
4 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/entity/BusinessData.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,13 @@ | ||
package it.pagopa.selfcare.onboarding.entity; | ||
|
||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class BusinessData { | ||
|
||
private String businessRegisterNumber; | ||
private String legalRegisterNumber; | ||
private String legalRegisterName; | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
apps/onboarding-ms/src/main/java/it/pagopa/selfcare/onboarding/entity/GPUData.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,16 @@ | ||
package it.pagopa.selfcare.onboarding.entity; | ||
|
||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class GPUData extends BusinessData { | ||
|
||
private boolean manager; | ||
private boolean managerAuthorized; | ||
private boolean managerEligible; | ||
private boolean managerProsecution; | ||
private boolean institutionCourtMeasures; | ||
|
||
} |
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
12 changes: 5 additions & 7 deletions
12
...oarding-ms/src/main/java/it/pagopa/selfcare/onboarding/entity/PaymentServiceProvider.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 |
---|---|---|
@@ -1,17 +1,15 @@ | ||
package it.pagopa.selfcare.onboarding.entity; | ||
|
||
import lombok.Data; | ||
|
||
import java.util.List; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@Data | ||
public class PaymentServiceProvider { | ||
@EqualsAndHashCode(callSuper = true) | ||
public class PaymentServiceProvider extends BusinessData { | ||
private String abiCode; | ||
private String businessRegisterNumber; | ||
private String legalRegisterNumber; | ||
private String legalRegisterName; | ||
private boolean vatNumberGroup; | ||
private List<String> providerNames; | ||
private String contractType; | ||
private String contractId; | ||
} | ||
} |