src/main/kotlin/cn/flightfeather/supervision/domain/ds1/mapper/ScenseMapper.kt
@@ -6,7 +6,12 @@
import org.apache.ibatis.annotations.Select
@Mapper
interface ScenseMapper:MyMapper<Scense>, MutableList<Scense> {
interface ScenseMapper : MyMapper<Scense> {
    /**
     * 获取未创建用户的场景
     */
    fun selectNoAccountScene(): List<Scense>
    fun getSceneByType(topTaskId: String, sceneTypeId: Int? = null, townCode: String? = null): List<Scense>
}