| | |
| | | import com.gkhy.safePlatform.commons.query.PageQuery; |
| | | import com.gkhy.safePlatform.equipment.model.dto.req.KeypointEquipmentInfoQueryCriteria; |
| | | import com.gkhy.safePlatform.equipment.model.dto.resp.KeypointEquipmentInfoDto; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | |
| | | * @author xurui |
| | | * @since 2022-07-19 13:36:27 |
| | | */ |
| | | public interface KeypointEquipmentInfoService extends IService<KeypointEquipmentInfo> { |
| | | public interface KeypointEquipmentInfoService { |
| | | ResultVO queryAll(PageQuery<KeypointEquipmentInfoQueryCriteria> pageQuery); |
| | | |
| | | List<KeypointEquipmentInfo> queryAll(KeypointEquipmentInfoQueryCriteria criteria); |
| | |
| | | KeypointEquipmentInfoDto selectOne(Serializable id); |
| | | |
| | | void addOrUpdate(KeypointEquipmentInfoDto infoDto); |
| | | |
| | | void importData(MultipartFile file) throws IOException; |
| | | |
| | | void delete(Long[] ids); |
| | | |
| | | void exportTemplate() throws IOException; |
| | | |
| | | void exportData(KeypointEquipmentInfoQueryCriteria queryCriteria) throws IOException; |
| | | } |