package cn.flightfeather.supervision.lightshare.service
|
|
import cn.flightfeather.supervision.domain.ds1.entity.Monitorobjectversion
|
import cn.flightfeather.supervision.lightshare.vo.MonitorObjectVersionVo
|
|
|
interface MonitorobjectversionService {
|
fun findOne(id: String): Monitorobjectversion
|
|
fun findByTaskId(id: String): List<MonitorObjectVersionVo>
|
|
fun findAll(): MutableList<Monitorobjectversion>
|
|
//根据顶层任务guid查询可用监管版本场景数
|
fun findCanuserlist(toptaskid: String): List<Monitorobjectversion>
|
|
fun save(monitorobjectversion: Monitorobjectversion): Int
|
|
fun update(monitorobjectversion: Monitorobjectversion): Int
|
|
fun delete(id: String): Int
|
|
fun deleteList(monitorobjectversionlist: List<Monitorobjectversion>): Int
|
|
fun saveList(monitorobjectversionlist: List<Monitorobjectversion>): Int
|
|
fun updatelist(monitorobjectversionlist: List<Monitorobjectversion>): Int
|
}
|