🔖 发布 4.0.0 版本

This commit is contained in:
zhaojun
2022-07-10 21:44:14 +08:00
parent 082bb07213
commit 5d888bb68f
672 changed files with 18083 additions and 8856 deletions

View File

@@ -0,0 +1,21 @@
<?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="im.zhaojun.zfile.admin.mapper.DownloadLogMapper">
<resultMap id="BaseResultMap" type="im.zhaojun.zfile.admin.model.entity.DownloadLog">
<!--@mbg.generated-->
<!--@Table `download_log`-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="path" jdbcType="LONGVARCHAR" property="path" />
<result column="short_key" jdbcType="VARCHAR" property="shortKey"/>
<result column="storage_key" jdbcType="VARCHAR" property="storageKey" />
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
<result column="ip" jdbcType="VARCHAR" property="ip" />
<result column="user_agent" jdbcType="VARCHAR" property="userAgent" />
<result column="referer" jdbcType="VARCHAR" property="referer" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
`id`, `path`, `storage_key`, `create_time`, `ip`, `user_agent`, `referer`, `short_key`
</sql>
</mapper>