package cn.flightfeather.supervision.lightshare.service
|
|
import cn.flightfeather.supervision.domain.ds1.entity.Version
|
import org.springframework.web.multipart.MultipartFile
|
|
interface VersionService {
|
|
fun save(version: Version): Int
|
|
fun update(version: Version): Int
|
|
fun delete(id: String): Int
|
|
fun getLatestVersion():Version?
|
|
fun upLoadCrashInfo(userId: String, files: Array<MultipartFile>): Boolean
|
}
|