wip: 系统日志临时提交

This commit is contained in:
Ray.Hao
2024-06-24 22:15:12 +08:00
parent 7d1fcfbef4
commit bcf4248fdf
22 changed files with 168 additions and 20 deletions

View 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>