| | |
| | | package org.springblade.modules.yw.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.modules.yw.entity.YwAttachEntity; |
| | | import org.springblade.modules.yw.vo.YwAttachVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 业务附件表 服务类 |
| | |
| | | */ |
| | | IPage<YwAttachVO> selectAttachPage(IPage<YwAttachVO> page, YwAttachVO attach); |
| | | |
| | | /** |
| | | * 导入单位附件信息 |
| | | * @param files |
| | | * @param firmId |
| | | * @return |
| | | */ |
| | | R importAttach(List<MultipartFile> files, Long firmId,Integer type); |
| | | } |