| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.yw.entity.EmergencySuppliesEntity; |
| | | import org.springblade.modules.yw.excel.EmergencySuppliesExcel; |
| | | import org.springblade.modules.yw.vo.EmergencySuppliesVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 应急物资表 服务类 |
| | |
| | | */ |
| | | IPage<EmergencySuppliesVO> selectEmergencySuppliesPage(IPage<EmergencySuppliesVO> page, EmergencySuppliesVO emergencySupplies); |
| | | |
| | | /** |
| | | * 导入应急物资信息 |
| | | * @param data |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | String importEmergencySupplies(List<EmergencySuppliesExcel> data, boolean isCovered); |
| | | |
| | | /** |
| | | * 获取应急物资信息 |
| | | * @param emergencySupplies |
| | | * @return |
| | | */ |
| | | Map<String,Object> getEmergencySuppliesList(EmergencySuppliesVO emergencySupplies); |
| | | } |