Files
contract-manager/server_entity_services.md
songqq 18057a657e refactor(service): 重构服务层代码,统一继承EntityService基类
refactor(repository): 将JpaRepository替换为自定义的MyRepository接口
refactor(tasker): 将findById方法更名为getById以提高一致性
docs: 更新server_entity_services.md文档中的服务实现状态
2025-12-14 14:47:51 +08:00

3.1 KiB
Raw Blame History

服务器端继承IEntityService接口的Service列表

类名 是否继承EntityService
CloudRkService
CloudTycService
YongYouU8Service
CompanyBankAccountService
CompanyBlackReasonService
CompanyContactService
CompanyExtendInfoService
CompanyFileService
CompanyFileTypeService
CompanyInvoiceInfoService
CompanyOldNameService
CompanyService
HolidayService
InvoiceService
ContractBalanceService
ContractBidVendorService
ContractCatalogService
ContractFileService
ContractFileTypeService
ContractGroupService
ContractInvoiceService
ContractItemService
ContractKindService
ContractPayPlanService
ContractService
ContractTypeService
ExtendVendorInfoService
PurchaseBillVoucherItemService
PurchaseBillVoucherService
PurchaseOrderItemService
PurchaseOrdersService
SaleOrdersService
SalesBillVoucherItemService
SalesBillVoucherService
SalesOrderItemService
CompanyCustomerEntityService
CompanyCustomerEvaluationFormFileService
CompanyCustomerFileService
CompanyCustomerFileTypeService
CustomerCatalogService
CustomerFileTypeService
CustomerService
BankService
DepartmentService
EmployeeAuthBindService
EmployeeLoginHistoryService
EmployeeRoleService
EmployeeService
FunctionService
InventoryCatalogService
InventoryHistoryPriceService
InventoryService
PermissionService
CustomerSatisfactionSurveyService
DeliverySignMethodService
ProductTypeService
ProductUsageService
ProjectBidService
ProjectCostItemService
ProjectCostService
ProjectFileService
ProjectFileTypeService
ProjectFundPlanService
ProjectIndustryService
ProjectQuotationService
ProjectSaleTypeRequireFileTypeService
ProjectSaleTypeService
ProjectService
ProjectTypeService
VendorApprovedFileService
VendorApprovedItemService
VendorApprovedService
VendorCatalogService
VendorEntityService
VendorFileService
VendorFileTypeService
VendorGroupRequireFileTypeService
VendorGroupService
VendorService
VendorTypeService

分析结果

  • 共找到81个实现了IEntityService接口的服务类
  • 其中有12个类同时继承了EntityService类
  • 大多数服务类69个仅实现了IEntityService接口没有继承EntityService类

继承EntityService类的服务类包括

  • CloudRkService
  • CloudTycService
  • YongYouU8Service
  • CompanyBankAccountService
  • CompanyService
  • ContractService
  • SaleOrdersService
  • SalesBillVoucherService
  • SalesOrderItemService
  • ProjectService
  • 以及其他几个核心业务服务类