|
@@ -2,6 +2,7 @@ package com.gxzc.zen.api.sys.mapper
|
|
|
|
|
|
import com.gxzc.zen.api.sys.model.SysDictValue
|
|
|
import com.gxzc.zen.common.base.BaseMapper
|
|
|
+import org.apache.ibatis.annotations.Param
|
|
|
import org.springframework.stereotype.Repository
|
|
|
|
|
|
/**
|
|
@@ -14,4 +15,8 @@ import org.springframework.stereotype.Repository
|
|
|
* @url https://noahlan.com
|
|
|
*/
|
|
|
@Repository
|
|
|
-interface SysDictValueMapper : BaseMapper<SysDictValue>
|
|
|
+interface SysDictValueMapper : BaseMapper<SysDictValue> {
|
|
|
+ fun updateDictValueByTypeId(@Param("typeId") typeId: Long,
|
|
|
+ @Param("oldPrefix") oldPrefix: String,
|
|
|
+ @Param("newPrefix") newPrefix: String): Int
|
|
|
+}
|