package cc.mrbird.febs.server.system.mapper;
|
|
import cc.mrbird.febs.common.core.entity.system.Dept;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Update;
|
|
/**
|
* @author MrBird
|
*/
|
public interface DeptMapper extends BaseMapper<Dept> {
|
@Update("<script>" +
|
" update t_dept\n" +
|
" set allDeptName = replace(allDeptName, #{fromName}, #{toName})" +
|
" where allDeptName like #{queryParam}" +
|
"</script>")
|
public void changeAllDeptName(@Param("fromName") String fromName, @Param("toName") String toName,@Param("queryParam") String queryParam);
|
}
|