kcw-wx-java/youchain-system/src/main/java/com/youchain/businessdata/service/AsnService.java

85 lines
2.1 KiB
Java
Raw Normal View History

2025-07-25 11:22:48 +08:00
/*
* Copyright 2019-2020 Zheng Jie
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.youchain.businessdata.service;
import com.youchain.businessdata.domain.Asn;
import com.youchain.businessdata.service.dto.AsnDto;
import com.youchain.businessdata.service.dto.AsnQueryCriteria;
import org.springframework.data.domain.Pageable;
import java.util.Map;
import java.util.List;
import java.io.IOException;
import javax.servlet.http.HttpServletResponse;
/**
* @website https://eladmin.vip
* @description
* @author JiangKun
* @date 2024-01-09
**/
public interface AsnService {
/**
*
* @param criteria
* @param pageable
* @return Map<String,Object>
*/
Map<String,Object> queryAll(AsnQueryCriteria criteria, Pageable pageable);
/**
*
* @param criteria
* @return List<AsnDto>
*/
List<AsnDto> queryAll(AsnQueryCriteria criteria);
/**
* ID
* @param id ID
* @return AsnDto
*/
AsnDto findById(Long id);
Asn getEntity(Long id);
/**
*
* @param resources /
* @return AsnDto
*/
AsnDto create(Asn resources);
/**
*
* @param resources /
*/
void update(Asn resources);
/**
*
* @param ids /
*/
void deleteAll(Long[] ids);
/**
*
* @param all
* @param response /
* @throws Exception /
*/
void download(List<AsnDto> all, HttpServletResponse response) throws Exception, Exception;
}