feiyu02
9 天以前 85ef942e7195abeb71466b7159c3ee30161e1e54
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/MediafileService.kt
@@ -1,8 +1,10 @@
package cn.flightfeather.supervision.lightshare.service
import cn.flightfeather.supervision.domain.ds1.entity.Mediafile
import cn.flightfeather.supervision.lightshare.vo.ExcelConfigVo
import cn.flightfeather.supervision.lightshare.vo.MediaFileVo
import org.springframework.web.multipart.MultipartFile
import javax.servlet.http.HttpServletResponse
interface MediafileService {
@@ -32,4 +34,6 @@
    fun findBysubtaskbtid(id: String, btid: String): MutableList<Mediafile>?
    fun getRoutineRecord(iGuid: String?, stGuid: String?): List<Mediafile?>
    fun downloadPic(config: ExcelConfigVo, response: HttpServletResponse): HttpServletResponse
}