1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.java110.boot.smo.assetExport;
|
| import com.java110.core.context.IPageData;
| import org.springframework.http.ResponseEntity;
|
| /**
| * @author fqz
| * @date 2021-12-21
| */
| public interface IExportOwnerCarSMO {
|
| /**
| * 导入excel数据
| *
| * @param pd 前台数据封装
| * @return ResponseEntity
| */
| public ResponseEntity<Object> exportExcelData(IPageData pd) throws Exception;
|
| }
|
|