adamsaghy commented on code in PR #5986:
URL: https://github.com/apache/fineract/pull/5986#discussion_r3420114570


##########
fineract-provider/src/main/java/org/apache/fineract/infrastructure/jobs/service/retainedearning/data/AccountGLJournalEntryAnnualSummaryData.java:
##########
@@ -16,18 +16,35 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.apache.fineract.infrastructure.security.service;
+package org.apache.fineract.infrastructure.jobs.service.retainedearning.data;
 
-import java.util.Optional;
-import org.apache.fineract.infrastructure.core.domain.TenantOidcConfig;
+import java.math.BigDecimal;
+import java.time.LocalDate;
+import lombok.Builder;
+import lombok.Getter;
 
-public interface TenantOidcConfigRepository {
+@Getter
+@Builder(toBuilder = true)
+public class AccountGLJournalEntryAnnualSummaryData {
 
-    Optional<TenantOidcConfig> findByIssuerUri(String issuerUri);
+    private Long productId;
 
-    Optional<TenantOidcConfig> findByTenantId(String tenantId);
+    private String productName;
 
-    TenantOidcConfig save(TenantOidcConfig config);
+    private String glAccountCode;
+
+    private Long officeId;
+
+    private String ownerExternalId;

Review Comment:
   For uniformity use `ExternalId` data type



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to