- 修复 sys-config 接口参数对齐(configKey/configValue) - 添加 dict 字典项管理 API - 修复 logs 接口参数格式(批量删除/清理日志) - 添加 request.ts postForm/putForm 方法支持 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
448 B
XML
14 lines
448 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.lesingle.creation.mapper.RoleMapper">
|
|
|
|
<!-- 根据角色编码查询角色 -->
|
|
<select id="selectByCode" resultType="com.lesingle.creation.entity.Role">
|
|
SELECT *
|
|
FROM t_role
|
|
WHERE code = #{code}
|
|
AND deleted = 0
|
|
</select>
|
|
|
|
</mapper>
|