package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.BisInspAccunt; import cn.com.goldenwater.dcproj.param.BisInspAccuntParam; import com.github.pagehelper.PageInfo; import org.springframework.web.multipart.MultipartFile; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * @author lhc * @date 2022-3-17 */ public interface BisInspAccuntService extends CrudService { void batch(List bisInspAccunt); void export(HttpServletResponse response, BisInspAccuntParam bisInspAccuntParam); List importFile(MultipartFile file, BisInspAccunt account) throws Exception; // ------------------------- 自定方法 ------------------------- }