IPlatSynchronizeService.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.project.zcustom.service.synchronization;
  2. import com.project.zcustom.domain.access.PlatAccess;
  3. import com.project.zcustom.domain.addional.*;
  4. import com.project.zcustom.domain.basics.PlatBasics;
  5. import com.project.zcustom.domain.basics.PlatBasicsCompany;
  6. import com.project.zcustom.domain.basics.PlatBasicsServer;
  7. import com.project.zcustom.domain.basics.PlatBasicsSystem;
  8. import com.project.zcustom.domain.employee.PlatEmployeeHealth;
  9. import com.project.zcustom.domain.employee.PlatEmployeeHealthIllness;
  10. import com.project.zcustom.domain.employee.PlatEmployeeType;
  11. import com.project.zcustom.domain.employee.PlatEmployeeTypeFlow;
  12. import com.project.zcustom.domain.post.PlatPostStation;
  13. import com.project.zcustom.domain.post.PlatPostStationChart;
  14. import com.project.zcustom.domain.property.PlatProperty;
  15. import com.project.zcustom.domain.property.PlatPropertyList;
  16. import com.project.zcustom.domain.property.PlatPropertyTools;
  17. import com.project.zcustom.domain.smart.*;
  18. import java.util.List;
  19. public interface IPlatSynchronizeService {
  20. List<PlatAccess> getServiceAccess();
  21. List<PlatBasics> getServiceBasics();
  22. List<PlatBasicsCompany> getServiceBasicsCompany();
  23. List<PlatBasicsServer> getServiceBasicsServer();
  24. List<PlatBasicsSystem> getServiceBasicsSystem();
  25. List<PlatEmployeeHealth> getServiceHealth();
  26. List<PlatEmployeeHealthIllness> getServiceHealthIllness();
  27. List<PlatEmployeeType> getServiceEmployeeType();
  28. List<PlatEmployeeTypeFlow> getServiceEmployeeTypeFlow();
  29. List<PlatGreenFoods> getServiceGreenFoods();
  30. List<PlatGreenSmart> getServiceGreenSmart();
  31. List<PlatGreenSmartOther> getServiceGreenSmartOther();
  32. List<PlatGreenSmartRank> getServiceGreenSmartRank();
  33. List<PlatGreenSmartSafety> getServiceGreenSmartSafety();
  34. List<PlatPostStation> getServicePostStation();
  35. List<PlatPostStationChart> getServicePostStationChart();
  36. List<PlatProperty> getServiceProperty();
  37. List<PlatPropertyList> getServicePropertyList();
  38. List<PlatPropertyTools> getServicePropertyTools();
  39. List<LargeBuilding> getServiceBuilding();
  40. List<LargeBuildingControl> getServiceBuildingControl();
  41. List<LargeBuildingControlAmmeterDetail> getServiceBuildingAmmeterDetail();
  42. List<LargeBuildingLoadDetail> getServiceBuildingLoadDetail();
  43. List<LargeCamera> getServiceEngineerCamera();
  44. List<LargeIssue> getServiceEngineerIssue();
  45. List<LargePlan> getServiceEngineerPlan();
  46. List<LargeProject> getServiceEngineerProject();
  47. List<LargeHousingLand> getServiceLogisticsHousing();
  48. List<LargeLogistics> getServiceLogistics();
  49. List<LargeAssetDirs> getServiceLogisticsBuildingAsset();
  50. List<LargeAssetDirs> getServiceLogisticsOfficeAsset();
  51. List<LargeAssetDirs> getServiceLogisticsServiceAsset();
  52. List<LargeCar> getServicePublicCar();
  53. List<LargeCarDetail> getServicePublicCarChange();
  54. List<LargeWarnDetail> getServicePublicCarWarn();
  55. List<LargeCarRank> getServicePublicCarRank();
  56. }