feiyu02
2025-03-28 7d74f3fd087d4a8192ed556a6c2e3a2ea3c81cff
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>
}