ICenterdataTHousingconstructionViewService.java 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.sooka.sponest.data.housingconstruction.service;
  2. import com.sooka.sponest.data.housingconstruction.domain.*;
  3. import java.util.List;
  4. import java.util.Map;
  5. /*
  6. * 住建-可视化
  7. *
  8. * @author 韩福成
  9. * @date 2024/8/1 下午3:08
  10. */
  11. public interface ICenterdataTHousingconstructionViewService {
  12. public Map<String,Object> getGasCylinderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  13. public List<Map<String,Object>> getOrderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  14. public List<Map<String,Object>> getCarList(CenterdataTHousingconstructionCar car);
  15. public List<Map<String,Object>> getUserList(CenterdataTHousingconstructionRealnameuser realnameuser);
  16. public List<Map<String,Object>> getSteelcylinderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  17. public List<Map<String,Object>> getThreeUserList(CenterdataTHousingconstructionRealnameuser realnameuser);
  18. public List<Map<String,Object>> getRealnameuserList(CenterdataTHousingconstructionRealnameuser realnameuser);
  19. public List<Map<String,Object>> getDeliverymanList(CenterdataTHousingconstructionDeliveryPersonnel deliveryPersonnel);
  20. public List<Map<String,Object>> getEnterpriseList(CenterdataTHousingconstructionEnterprise enterprise);
  21. public List<Map<String,Object>> getPractitionerPostList(CenterdataTHousingconstructionPractitioner practitioner);
  22. public List<Map<String,Object>> getStoragetankList(CenterdataTHousingconstructionStoragetank storagetank);
  23. public List<Map<String,Object>> getSteelcylinderStateList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  24. public List<Map<String,Object>> getJoinHouseUserList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  25. public List<Map<String,Object>> getGassourceList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
  26. public List<Map<String,Object>> getResourcePoint(CenterdataTHousingconstructionStoragetank storagetank);
  27. public List<Map<String,Object>> getReport(CenterdataTHousingconstructionEnterpriseproductionreport enterpriseproductionreport);
  28. public List<Map<String,Object>> getInspectionRecords(CenterdataTHousingconstructionSafetyinspectionrecords enterpriseproductionreport);
  29. public List<Map<String,Object>> getItems(CenterdataTHousingconstructionSafetyinspectionrecordsdetail safetyinspectionrecordsdetail);
  30. }