wip: 系统日志临时提交
This commit is contained in:
20
src/main/resources/mapper/SysLogMapper.xml
Normal file
20
src/main/resources/mapper/SysLogMapper.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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.youlai.system.mapper.SysLogMapper">
|
||||
|
||||
<resultMap id="BaseResultMap" type="com.youlai.system.model.entity.SysLog">
|
||||
<id property="id" column="id" jdbcType="BIGINT"/>
|
||||
<result property="createBy" column="create_by" jdbcType="BIGINT"/>
|
||||
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="updateBy" column="update_by" jdbcType="BIGINT"/>
|
||||
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||||
<result property="isDeleted" column="is_deleted" jdbcType="TINYINT"/>
|
||||
</resultMap>
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
id,create_by,create_time,
|
||||
update_by,update_time,is_deleted
|
||||
</sql>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user