1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.sooka.sponest.data.housingconstruction.service;
- import com.sooka.sponest.data.housingconstruction.domain.*;
- import java.util.List;
- import java.util.Map;
- /*
- * 住建-可视化
- *
- * @author 韩福成
- * @date 2024/8/1 下午3:08
- */
- public interface ICenterdataTHousingconstructionViewService {
- public Map<String,Object> getGasCylinderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getOrderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getCarList(CenterdataTHousingconstructionCar car);
- public List<Map<String,Object>> getUserList(CenterdataTHousingconstructionRealnameuser realnameuser);
- public List<Map<String,Object>> getSteelcylinderList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getThreeUserList(CenterdataTHousingconstructionRealnameuser realnameuser);
- public List<Map<String,Object>> getRealnameuserList(CenterdataTHousingconstructionRealnameuser realnameuser);
- public List<Map<String,Object>> getDeliverymanList(CenterdataTHousingconstructionDeliveryPersonnel deliveryPersonnel);
- public List<Map<String,Object>> getEnterpriseList(CenterdataTHousingconstructionEnterprise enterprise);
- public List<Map<String,Object>> getPractitionerPostList(CenterdataTHousingconstructionPractitioner practitioner);
- public List<Map<String,Object>> getStoragetankList(CenterdataTHousingconstructionStoragetank storagetank);
- public List<Map<String,Object>> getSteelcylinderStateList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getJoinHouseUserList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getGassourceList(CenterdataTHousingconstructionSteelcylinder steelcylinder);
- public List<Map<String,Object>> getResourcePoint(CenterdataTHousingconstructionStoragetank storagetank);
- public List<Map<String,Object>> getReport(CenterdataTHousingconstructionEnterpriseproductionreport enterpriseproductionreport);
- public List<Map<String,Object>> getInspectionRecords(CenterdataTHousingconstructionSafetyinspectionrecords enterpriseproductionreport);
- public List<Map<String,Object>> getItems(CenterdataTHousingconstructionSafetyinspectionrecordsdetail safetyinspectionrecordsdetail);
- }
|