| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.example.entity.DataExcel; |
| | | import com.example.entity.Department; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface DataExcelService extends IService<DataExcel> { |
| | | |
| | | IPage<DataExcel> getDataExcelPage(Long current, Long size, String unitName, String transactionNo, String accountingPeriod, List<String> permissionDeptCodes); |
| | | IPage<DataExcel> getDataExcelPage(Long current, Long size, String unitCode, String transactionNo, String accountingPeriod, List<String> permissionDeptCodes); |
| | | |
| | | String importData(MultipartFile file, List<String> permissionDeptCodes); |
| | | |
| | | IPage<DataExcel> getDataExcelPageNew(Long current, Long size, String unitCode, String transactionNo, String accountingPeriod); |
| | | |
| | | List<Department> getDepartmentTree(); |
| | | |
| | | } |