Uses of Class
com.raphaelsalles.backend.domain.model.Company
Packages that use Company
Package
Description
-
Uses of Company in com.raphaelsalles.backend.domain.model
Fields in com.raphaelsalles.backend.domain.model declared as CompanyModifier and TypeFieldDescriptionprivate CompanyAsset.AssetBuilder.companyprivate CompanyAsset.companyprivate CompanyFinancialStatement.companyprivate CompanyFinancialStatement.FinancialStatementBuilder.companyMethods in com.raphaelsalles.backend.domain.model that return CompanyModifier and TypeMethodDescriptionCompany.CompanyBuilder.build()Asset.getCompany()FinancialStatement.getCompany()Methods in com.raphaelsalles.backend.domain.model with parameters of type CompanyModifier and TypeMethodDescriptionvoidAsset.setCompany(Company company) voidFinancialStatement.setCompany(Company company) Constructors in com.raphaelsalles.backend.domain.model with parameters of type CompanyModifierConstructorDescriptionAsset(Long id, String ticker, AssetType type, String name, Company company, boolean active, LocalDateTime lastUpdate) FinancialStatement(Long id, Company company, LocalDate referenceDate, StatementType type, BigDecimal revenue, BigDecimal netIncome, BigDecimal equity, LocalDateTime importedAt, User importedBy, List<AccountLine> accounts) -
Uses of Company in com.raphaelsalles.backend.domain.repository
Subinterfaces with type arguments of type Company in com.raphaelsalles.backend.domain.repositoryMethods in com.raphaelsalles.backend.domain.repository that return types with arguments of type CompanyModifier and TypeMethodDescriptionCompanyRepository.findByCnpj(String cnpj) Busca empresa por CNPJ exato.Methods in com.raphaelsalles.backend.domain.repository with parameters of type CompanyModifier and TypeMethodDescriptionFinancialStatementRepository.findAllByCompanyOrderByReferenceDateAsc(Company company) Busca o histórico completo de demonstrativos de uma empresa, ordenado cronologicamente.FinancialStatementRepository.findByCompanyAndReferenceDate(Company company, LocalDate referenceDate) Busca demonstrativos por empresa e data de referência.FinancialStatementRepository.findFirstByCompanyOrderByReferenceDateDesc(Company company) Busca o demonstrativo mais recente de uma empresa. -
Uses of Company in com.raphaelsalles.backend.domain.service.enrichment
Methods in com.raphaelsalles.backend.domain.service.enrichment with parameters of type Company