Uses of Class
com.skava.accounts.model.entity.PaymentsEntity
Packages that use PaymentsEntity
Package
Description
Accounts Domain Model Declarations.
Accounts Entity Model Declarations.
Accounts Repository Declarations.
-
Uses of PaymentsEntity in com.skava.accounts.model.domain
Methods in com.skava.accounts.model.domain that return PaymentsEntityModifier and TypeMethodDescriptionPaymentsDO.toEntity()
toEntity - Used to convert entity to domain object.Methods in com.skava.accounts.model.domain with parameters of type PaymentsEntityModifier and TypeMethodDescriptionPaymentsDO.fromEntity
(PaymentsEntity paymentsEntity) fromEntity - Used to convert domain object to entity. -
Uses of PaymentsEntity in com.skava.accounts.model.entity
Fields in com.skava.accounts.model.entity with type parameters of type PaymentsEntityModifier and TypeFieldDescriptionfinal com.querydsl.core.types.dsl.ListPath<PaymentsEntity,
QPaymentsEntity> QAccountsEntity.paymentsEntity
Constructor parameters in com.skava.accounts.model.entity with type arguments of type PaymentsEntityModifierConstructorDescriptionQPaymentsEntity
(com.querydsl.core.types.Path<? extends PaymentsEntity> path) QPaymentsEntity
(Class<? extends PaymentsEntity> type, com.querydsl.core.types.PathMetadata metadata, com.querydsl.core.types.dsl.PathInits inits) -
Uses of PaymentsEntity in com.skava.accounts.repository
Methods in com.skava.accounts.repository that return types with arguments of type PaymentsEntityModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<PaymentsEntity>
PaymentsRepository.findAll
(org.springframework.data.domain.Pageable pageRequest) Find PaymentsEntity based on inputs.org.springframework.data.domain.Page<PaymentsEntity>
PaymentsRepository.findAllByAccountId
(long accountId, org.springframework.data.domain.Pageable pageRequest) Find all.PaymentsRepository.findByIdAndAccountId
(long id, long accountId) Find by id and account id.