mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 17:58:17 +08:00
18 lines
628 B
XML
18 lines
628 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.ruoyi.work.mapper.RollBackLogMapper">
|
|
|
|
<resultMap type="com.ruoyi.work.domain.RollBackLog" id="RollBackLogResult">
|
|
<result property="id" column="id"/>
|
|
<result property="createTime" column="createTime"/>
|
|
<result property="type" column="type"/>
|
|
<result property="reply" column="reply"/>
|
|
<result property="createBy" column="create_by"/>
|
|
<result property="param" column="param"/>
|
|
</resultMap>
|
|
|
|
|
|
</mapper>
|