| | |
| | | import com.gkhy.safePlatform.equipment.model.dto.req.EquipmentInfoQueryCriteria; |
| | | import com.gkhy.safePlatform.equipment.model.dto.req.EquipmentInfoSaveOrUpdate; |
| | | import com.gkhy.safePlatform.equipment.model.dto.resp.EquipmentInfoDto; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @author xurui |
| | | * @since 2022-07-19 14:02:50 |
| | | */ |
| | | public interface EquipmentInfoService extends IService<EquipmentInfo> { |
| | | public interface EquipmentInfoService { |
| | | ResultVO queryAll(PageQuery<EquipmentInfoQueryCriteria> pageQuery); |
| | | |
| | | List<EquipmentInfo> queryAll(EquipmentInfoQueryCriteria criteria); |
| | |
| | | Object statistics(); |
| | | |
| | | Map<Long,String> getDepName(Set<Long> collectDepIdSet); |
| | | |
| | | void importData(MultipartFile file) throws IOException; |
| | | |
| | | void delete(Long[] ids); |
| | | |
| | | void exportTemplate() throws IOException; |
| | | |
| | | void exportData(EquipmentInfoQueryCriteria queryCriteria) throws IOException; |
| | | } |