| | |
| | | package com.gkhy.safePlatform.emergency.service; |
| | | |
| | | import com.gkhy.safePlatform.commons.co.ContextCacheUser; |
| | | import com.gkhy.safePlatform.commons.query.PageQuery; |
| | | import com.gkhy.safePlatform.commons.vo.ResultVO; |
| | | import com.gkhy.safePlatform.commons.vo.SearchResultVO; |
| | | import com.gkhy.safePlatform.emergency.model.dto.req.EmergencySuppliesReqDTO; |
| | | import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencySuppliesDetailRespDTO; |
| | | import com.gkhy.safePlatform.emergency.model.dto.resp.EmergencySuppliesPageRespDTO; |
| | | import com.gkhy.safePlatform.emergency.model.dto.resp.*; |
| | | import com.gkhy.safePlatform.emergency.query.EmergencySuppliesQuery; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | ResultVO updateEmergencySupplies(Long uid, EmergencySuppliesReqDTO emergencySuppliesReqDTO); |
| | | |
| | | ResultVO batchDeleteEmergencySupplies(String ids); |
| | | ResultVO batchDeleteEmergencySupplies( Long[] ids); |
| | | |
| | | /** |
| | | * 应急物资-列表(为特殊作业提供数据) |
| | | */ |
| | | List<EmergencySuppliesTypeRespDTO> emergencySuppliesList(ContextCacheUser currentUser); |
| | | |
| | | List<EmergencySuppliesRespDTO> listCountByIds(ContextCacheUser currentUser, List<Long> ids); |
| | | List<EmergencySuppliesInfoRespDTO> getEmergencySupplies(); |
| | | |
| | | } |