master
parent
e8c4002ec6
commit
5878dc3a81
|
@ -0,0 +1,48 @@
|
||||||
|
package com.jing.file.controller;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
import com.jing.common.core.domain.R;
|
||||||
|
import com.jing.common.core.utils.file.FileUtils;
|
||||||
|
import com.jing.file.service.ISysFileService;
|
||||||
|
import com.jing.system.api.domain.SysFile;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件请求处理
|
||||||
|
*
|
||||||
|
* @author ruoyi
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
public class SysFileController
|
||||||
|
{
|
||||||
|
private static final Logger log = LoggerFactory.getLogger(SysFileController.class);
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ISysFileService sysFileService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件上传请求
|
||||||
|
*/
|
||||||
|
@PostMapping("upload")
|
||||||
|
public R<SysFile> upload(MultipartFile file)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
// 上传并返回访问地址
|
||||||
|
String url = sysFileService.uploadFile(file);
|
||||||
|
SysFile sysFile = new SysFile();
|
||||||
|
sysFile.setName(FileUtils.getName(url));
|
||||||
|
sysFile.setUrl(url);
|
||||||
|
return R.ok(sysFile);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
log.error("上传文件失败", e);
|
||||||
|
return R.fail(e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,105 @@
|
||||||
|
<?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.jing.system.mapper.SysDictTypeMapper">
|
||||||
|
|
||||||
|
<resultMap type="SysDictType" id="SysDictTypeResult">
|
||||||
|
<id property="dictId" column="dict_id" />
|
||||||
|
<result property="dictName" column="dict_name" />
|
||||||
|
<result property="dictType" column="dict_type" />
|
||||||
|
<result property="status" column="status" />
|
||||||
|
<result property="createBy" column="create_by" />
|
||||||
|
<result property="createTime" column="create_time" />
|
||||||
|
<result property="updateBy" column="update_by" />
|
||||||
|
<result property="updateTime" column="update_time" />
|
||||||
|
</resultMap>
|
||||||
|
|
||||||
|
<sql id="selectDictTypeVo">
|
||||||
|
select dict_id, dict_name, dict_type, status, create_by, create_time, remark
|
||||||
|
from sys_dict_type
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="selectDictTypeList" parameterType="SysDictType" resultMap="SysDictTypeResult">
|
||||||
|
<include refid="selectDictTypeVo"/>
|
||||||
|
<where>
|
||||||
|
<if test="dictName != null and dictName != ''">
|
||||||
|
AND dict_name like concat('%', #{dictName}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="status != null and status != ''">
|
||||||
|
AND status = #{status}
|
||||||
|
</if>
|
||||||
|
<if test="dictType != null and dictType != ''">
|
||||||
|
AND dict_type like concat('%', #{dictType}, '%')
|
||||||
|
</if>
|
||||||
|
<if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
|
||||||
|
and date_format(create_time,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d')
|
||||||
|
</if>
|
||||||
|
<if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
|
||||||
|
and date_format(create_time,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d')
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="selectDictTypeAll" resultMap="SysDictTypeResult">
|
||||||
|
<include refid="selectDictTypeVo"/>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="selectDictTypeById" parameterType="Long" resultMap="SysDictTypeResult">
|
||||||
|
<include refid="selectDictTypeVo"/>
|
||||||
|
where dict_id = #{dictId}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="selectDictTypeByType" parameterType="String" resultMap="SysDictTypeResult">
|
||||||
|
<include refid="selectDictTypeVo"/>
|
||||||
|
where dict_type = #{dictType}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="checkDictTypeUnique" parameterType="String" resultMap="SysDictTypeResult">
|
||||||
|
<include refid="selectDictTypeVo"/>
|
||||||
|
where dict_type = #{dictType} limit 1
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<delete id="deleteDictTypeById" parameterType="Long">
|
||||||
|
delete from sys_dict_type where dict_id = #{dictId}
|
||||||
|
</delete>
|
||||||
|
|
||||||
|
<delete id="deleteDictTypeByIds" parameterType="Long">
|
||||||
|
delete from sys_dict_type where dict_id in
|
||||||
|
<foreach collection="array" item="dictId" open="(" separator="," close=")">
|
||||||
|
#{dictId}
|
||||||
|
</foreach>
|
||||||
|
</delete>
|
||||||
|
|
||||||
|
<update id="updateDictType" parameterType="SysDictType">
|
||||||
|
update sys_dict_type
|
||||||
|
<set>
|
||||||
|
<if test="dictName != null and dictName != ''">dict_name = #{dictName},</if>
|
||||||
|
<if test="dictType != null and dictType != ''">dict_type = #{dictType},</if>
|
||||||
|
<if test="status != null">status = #{status},</if>
|
||||||
|
<if test="remark != null">remark = #{remark},</if>
|
||||||
|
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
||||||
|
update_time = sysdate()
|
||||||
|
</set>
|
||||||
|
where dict_id = #{dictId}
|
||||||
|
</update>
|
||||||
|
|
||||||
|
<insert id="insertDictType" parameterType="SysDictType">
|
||||||
|
insert into sys_dict_type(
|
||||||
|
<if test="dictName != null and dictName != ''">dict_name,</if>
|
||||||
|
<if test="dictType != null and dictType != ''">dict_type,</if>
|
||||||
|
<if test="status != null">status,</if>
|
||||||
|
<if test="remark != null and remark != ''">remark,</if>
|
||||||
|
<if test="createBy != null and createBy != ''">create_by,</if>
|
||||||
|
create_time
|
||||||
|
)values(
|
||||||
|
<if test="dictName != null and dictName != ''">#{dictName},</if>
|
||||||
|
<if test="dictType != null and dictType != ''">#{dictType},</if>
|
||||||
|
<if test="status != null">#{status},</if>
|
||||||
|
<if test="remark != null and remark != ''">#{remark},</if>
|
||||||
|
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
||||||
|
sysdate()
|
||||||
|
)
|
||||||
|
</insert>
|
||||||
|
|
||||||
|
</mapper>
|
Loading…
Reference in New Issue