parent
836d65328c
commit
bfccd6350c
@ -0,0 +1,98 @@
|
|||||||
|
package com.da.dangan.controller;
|
||||||
|
|
||||||
|
import com.da.common.annotation.Log;
|
||||||
|
import com.da.common.core.controller.BaseController;
|
||||||
|
import com.da.common.core.domain.AjaxResult;
|
||||||
|
import com.da.common.core.page.TableDataInfo;
|
||||||
|
import com.da.common.enums.BusinessType;
|
||||||
|
import com.da.common.utils.poi.ExcelUtil;
|
||||||
|
import com.da.dangan.domain.DaPicturesRecard;
|
||||||
|
import com.da.dangan.service.IDaPicturesRecardService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletResponse;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 档案图片信息记录Controller
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2024-05-13
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/dangan/pictureRecard")
|
||||||
|
public class DaPicturesRecardController extends BaseController
|
||||||
|
{
|
||||||
|
@Autowired
|
||||||
|
private IDaPicturesRecardService daPicturesRecardService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录列表
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:list')")
|
||||||
|
@GetMapping("/list")
|
||||||
|
public TableDataInfo list(DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
startPage();
|
||||||
|
List<DaPicturesRecard> list = daPicturesRecardService.selectDaPicturesRecardList(daPicturesRecard);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 导出档案图片信息记录列表
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:export')")
|
||||||
|
@Log(title = "档案图片信息记录", businessType = BusinessType.EXPORT)
|
||||||
|
@PostMapping("/export")
|
||||||
|
public void export(HttpServletResponse response, DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
List<DaPicturesRecard> list = daPicturesRecardService.selectDaPicturesRecardList(daPicturesRecard);
|
||||||
|
ExcelUtil<DaPicturesRecard> util = new ExcelUtil<DaPicturesRecard>(DaPicturesRecard.class);
|
||||||
|
util.exportExcel(response, list, "档案图片信息记录数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取档案图片信息记录详细信息
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:query')")
|
||||||
|
@GetMapping(value = "/{id}")
|
||||||
|
public AjaxResult getInfo(@PathVariable("id") Long id)
|
||||||
|
{
|
||||||
|
return success(daPicturesRecardService.selectDaPicturesRecardById(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增档案图片信息记录
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:add')")
|
||||||
|
@Log(title = "档案图片信息记录", businessType = BusinessType.INSERT)
|
||||||
|
@PostMapping
|
||||||
|
public AjaxResult add(@RequestBody DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
return toAjax(daPicturesRecardService.insertDaPicturesRecard(daPicturesRecard));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改档案图片信息记录
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:edit')")
|
||||||
|
@Log(title = "档案图片信息记录", businessType = BusinessType.UPDATE)
|
||||||
|
@PutMapping
|
||||||
|
public AjaxResult edit(@RequestBody DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
return toAjax(daPicturesRecardService.updateDaPicturesRecard(daPicturesRecard));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除档案图片信息记录
|
||||||
|
*/
|
||||||
|
@PreAuthorize("@ss.hasPermi('dangan:pictureRecard:remove')")
|
||||||
|
@Log(title = "档案图片信息记录", businessType = BusinessType.DELETE)
|
||||||
|
@DeleteMapping("/{ids}")
|
||||||
|
public AjaxResult remove(@PathVariable Long[] ids)
|
||||||
|
{
|
||||||
|
return toAjax(daPicturesRecardService.deleteDaPicturesRecardByIds(ids));
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,140 @@
|
|||||||
|
package com.da.dangan.domain;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||||
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||||
|
import com.da.common.annotation.Excel;
|
||||||
|
import com.da.common.core.domain.BaseEntity;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 档案图片信息记录对象 da_pictures_recard
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2024-05-13
|
||||||
|
*/
|
||||||
|
public class DaPicturesRecard extends BaseEntity
|
||||||
|
{
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/** id */
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/** 图片名称 */
|
||||||
|
@Excel(name = "图片名称")
|
||||||
|
private String picName;
|
||||||
|
|
||||||
|
/** 图片路径 */
|
||||||
|
@Excel(name = "图片路径")
|
||||||
|
private String picUrl;
|
||||||
|
|
||||||
|
/** 物理书架ID */
|
||||||
|
@Excel(name = "物理书架ID")
|
||||||
|
private Long wlsjId;
|
||||||
|
|
||||||
|
/** 物理书架路径 */
|
||||||
|
@Excel(name = "物理书架路径")
|
||||||
|
private String wlsjPath;
|
||||||
|
|
||||||
|
/** 档案目录ID */
|
||||||
|
@Excel(name = "档案目录ID")
|
||||||
|
private Long muId;
|
||||||
|
|
||||||
|
/** 档案目录路径 */
|
||||||
|
@Excel(name = "档案目录路径")
|
||||||
|
private String muPath;
|
||||||
|
|
||||||
|
/** 是否已经识别 */
|
||||||
|
@Excel(name = "是否已经识别")
|
||||||
|
private String recognize;
|
||||||
|
|
||||||
|
public void setId(Long id)
|
||||||
|
{
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getId()
|
||||||
|
{
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
public void setPicName(String picName)
|
||||||
|
{
|
||||||
|
this.picName = picName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPicName()
|
||||||
|
{
|
||||||
|
return picName;
|
||||||
|
}
|
||||||
|
public void setPicUrl(String picUrl)
|
||||||
|
{
|
||||||
|
this.picUrl = picUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPicUrl()
|
||||||
|
{
|
||||||
|
return picUrl;
|
||||||
|
}
|
||||||
|
public void setWlsjId(Long wlsjId)
|
||||||
|
{
|
||||||
|
this.wlsjId = wlsjId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getWlsjId()
|
||||||
|
{
|
||||||
|
return wlsjId;
|
||||||
|
}
|
||||||
|
public void setWlsjPath(String wlsjPath)
|
||||||
|
{
|
||||||
|
this.wlsjPath = wlsjPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWlsjPath()
|
||||||
|
{
|
||||||
|
return wlsjPath;
|
||||||
|
}
|
||||||
|
public void setMuId(Long muId)
|
||||||
|
{
|
||||||
|
this.muId = muId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getMuId()
|
||||||
|
{
|
||||||
|
return muId;
|
||||||
|
}
|
||||||
|
public void setMuPath(String muPath)
|
||||||
|
{
|
||||||
|
this.muPath = muPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMuPath()
|
||||||
|
{
|
||||||
|
return muPath;
|
||||||
|
}
|
||||||
|
public void setRecognize(String recognize)
|
||||||
|
{
|
||||||
|
this.recognize = recognize;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRecognize()
|
||||||
|
{
|
||||||
|
return recognize;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||||
|
.append("id", getId())
|
||||||
|
.append("picName", getPicName())
|
||||||
|
.append("picUrl", getPicUrl())
|
||||||
|
.append("wlsjId", getWlsjId())
|
||||||
|
.append("wlsjPath", getWlsjPath())
|
||||||
|
.append("muId", getMuId())
|
||||||
|
.append("muPath", getMuPath())
|
||||||
|
.append("recognize", getRecognize())
|
||||||
|
.append("remark", getRemark())
|
||||||
|
.append("createBy", getCreateBy())
|
||||||
|
.append("createTime", getCreateTime())
|
||||||
|
.append("updateBy", getUpdateBy())
|
||||||
|
.append("updateTime", getUpdateTime())
|
||||||
|
.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
package com.da.dangan.mapper;
|
||||||
|
|
||||||
|
import com.da.dangan.domain.DaPicturesRecard;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 档案图片信息记录Mapper接口
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2024-05-13
|
||||||
|
*/
|
||||||
|
public interface DaPicturesRecardMapper
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 档案图片信息记录
|
||||||
|
*/
|
||||||
|
public DaPicturesRecard selectDaPicturesRecardById(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录列表
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 档案图片信息记录集合
|
||||||
|
*/
|
||||||
|
public List<DaPicturesRecard> selectDaPicturesRecardList(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int insertDaPicturesRecard(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int updateDaPicturesRecard(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDaPicturesRecardById(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的数据主键集合
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDaPicturesRecardByIds(Long[] ids);
|
||||||
|
}
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
package com.da.dangan.service;
|
||||||
|
|
||||||
|
import com.da.dangan.domain.DaPicturesRecard;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 档案图片信息记录Service接口
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2024-05-13
|
||||||
|
*/
|
||||||
|
public interface IDaPicturesRecardService
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 档案图片信息记录
|
||||||
|
*/
|
||||||
|
public DaPicturesRecard selectDaPicturesRecardById(Long id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录列表
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 档案图片信息记录集合
|
||||||
|
*/
|
||||||
|
public List<DaPicturesRecard> selectDaPicturesRecardList(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int insertDaPicturesRecard(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int updateDaPicturesRecard(DaPicturesRecard daPicturesRecard);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的档案图片信息记录主键集合
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDaPicturesRecardByIds(Long[] ids);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除档案图片信息记录信息
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
public int deleteDaPicturesRecardById(Long id);
|
||||||
|
}
|
||||||
@ -0,0 +1,97 @@
|
|||||||
|
package com.da.dangan.service.impl;
|
||||||
|
|
||||||
|
import com.da.common.utils.DateUtils;
|
||||||
|
import com.da.dangan.domain.DaPicturesRecard;
|
||||||
|
import com.da.dangan.mapper.DaPicturesRecardMapper;
|
||||||
|
import com.da.dangan.service.IDaPicturesRecardService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 档案图片信息记录Service业务层处理
|
||||||
|
*
|
||||||
|
* @author hs
|
||||||
|
* @date 2024-05-13
|
||||||
|
*/
|
||||||
|
@Service
|
||||||
|
public class DaPicturesRecardServiceImpl implements IDaPicturesRecardService
|
||||||
|
{
|
||||||
|
@Autowired
|
||||||
|
private DaPicturesRecardMapper daPicturesRecardMapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 档案图片信息记录
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public DaPicturesRecard selectDaPicturesRecardById(Long id)
|
||||||
|
{
|
||||||
|
return daPicturesRecardMapper.selectDaPicturesRecardById(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询档案图片信息记录列表
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 档案图片信息记录
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<DaPicturesRecard> selectDaPicturesRecardList(DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
return daPicturesRecardMapper.selectDaPicturesRecardList(daPicturesRecard);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 新增档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int insertDaPicturesRecard(DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
daPicturesRecard.setCreateTime(DateUtils.getNowDate());
|
||||||
|
return daPicturesRecardMapper.insertDaPicturesRecard(daPicturesRecard);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param daPicturesRecard 档案图片信息记录
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int updateDaPicturesRecard(DaPicturesRecard daPicturesRecard)
|
||||||
|
{
|
||||||
|
daPicturesRecard.setUpdateTime(DateUtils.getNowDate());
|
||||||
|
return daPicturesRecardMapper.updateDaPicturesRecard(daPicturesRecard);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量删除档案图片信息记录
|
||||||
|
*
|
||||||
|
* @param ids 需要删除的档案图片信息记录主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int deleteDaPicturesRecardByIds(Long[] ids)
|
||||||
|
{
|
||||||
|
return daPicturesRecardMapper.deleteDaPicturesRecardByIds(ids);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 删除档案图片信息记录信息
|
||||||
|
*
|
||||||
|
* @param id 档案图片信息记录主键
|
||||||
|
* @return 结果
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public int deleteDaPicturesRecardById(Long id)
|
||||||
|
{
|
||||||
|
return daPicturesRecardMapper.deleteDaPicturesRecardById(id);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,106 @@
|
|||||||
|
<?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.da.dangan.mapper.DaPicturesRecardMapper">
|
||||||
|
|
||||||
|
<resultMap type="DaPicturesRecard" id="DaPicturesRecardResult">
|
||||||
|
<result property="id" column="id" />
|
||||||
|
<result property="picName" column="pic_name" />
|
||||||
|
<result property="picUrl" column="pic_url" />
|
||||||
|
<result property="wlsjId" column="wlsj_id" />
|
||||||
|
<result property="wlsjPath" column="wlsj_path" />
|
||||||
|
<result property="muId" column="mu_id" />
|
||||||
|
<result property="muPath" column="mu_path" />
|
||||||
|
<result property="recognize" column="recognize" />
|
||||||
|
<result property="remark" column="remark" />
|
||||||
|
<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="selectDaPicturesRecardVo">
|
||||||
|
select id, pic_name, pic_url, wlsj_id, wlsj_path, mu_id, mu_path, recognize, remark, create_by, create_time, update_by, update_time from da_pictures_recard
|
||||||
|
</sql>
|
||||||
|
|
||||||
|
<select id="selectDaPicturesRecardList" parameterType="DaPicturesRecard" resultMap="DaPicturesRecardResult">
|
||||||
|
<include refid="selectDaPicturesRecardVo"/>
|
||||||
|
<where>
|
||||||
|
<if test="picName != null and picName != ''"> and pic_name like concat('%', #{picName}, '%')</if>
|
||||||
|
<if test="picUrl != null and picUrl != ''"> and pic_url = #{picUrl}</if>
|
||||||
|
<if test="wlsjId != null "> and wlsj_id = #{wlsjId}</if>
|
||||||
|
<if test="wlsjPath != null and wlsjPath != ''"> and wlsj_path = #{wlsjPath}</if>
|
||||||
|
<if test="muId != null "> and mu_id = #{muId}</if>
|
||||||
|
<if test="muPath != null and muPath != ''"> and mu_path = #{muPath}</if>
|
||||||
|
<if test="recognize != null and recognize != ''"> and recognize = #{recognize}</if>
|
||||||
|
</where>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="selectDaPicturesRecardById" parameterType="Long" resultMap="DaPicturesRecardResult">
|
||||||
|
<include refid="selectDaPicturesRecardVo"/>
|
||||||
|
where id = #{id}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<insert id="insertDaPicturesRecard" parameterType="DaPicturesRecard" useGeneratedKeys="true" keyProperty="id">
|
||||||
|
insert into da_pictures_recard
|
||||||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="picName != null and picName != ''">pic_name,</if>
|
||||||
|
<if test="picUrl != null and picUrl != ''">pic_url,</if>
|
||||||
|
<if test="wlsjId != null">wlsj_id,</if>
|
||||||
|
<if test="wlsjPath != null">wlsj_path,</if>
|
||||||
|
<if test="muId != null">mu_id,</if>
|
||||||
|
<if test="muPath != null">mu_path,</if>
|
||||||
|
<if test="recognize != null">recognize,</if>
|
||||||
|
<if test="remark != null">remark,</if>
|
||||||
|
<if test="createBy != null">create_by,</if>
|
||||||
|
<if test="createTime != null">create_time,</if>
|
||||||
|
<if test="updateBy != null">update_by,</if>
|
||||||
|
<if test="updateTime != null">update_time,</if>
|
||||||
|
</trim>
|
||||||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
|
<if test="picName != null and picName != ''">#{picName},</if>
|
||||||
|
<if test="picUrl != null and picUrl != ''">#{picUrl},</if>
|
||||||
|
<if test="wlsjId != null">#{wlsjId},</if>
|
||||||
|
<if test="wlsjPath != null">#{wlsjPath},</if>
|
||||||
|
<if test="muId != null">#{muId},</if>
|
||||||
|
<if test="muPath != null">#{muPath},</if>
|
||||||
|
<if test="recognize != null">#{recognize},</if>
|
||||||
|
<if test="remark != null">#{remark},</if>
|
||||||
|
<if test="createBy != null">#{createBy},</if>
|
||||||
|
<if test="createTime != null">#{createTime},</if>
|
||||||
|
<if test="updateBy != null">#{updateBy},</if>
|
||||||
|
<if test="updateTime != null">#{updateTime},</if>
|
||||||
|
</trim>
|
||||||
|
</insert>
|
||||||
|
|
||||||
|
<update id="updateDaPicturesRecard" parameterType="DaPicturesRecard">
|
||||||
|
update da_pictures_recard
|
||||||
|
<trim prefix="SET" suffixOverrides=",">
|
||||||
|
<if test="picName != null and picName != ''">pic_name = #{picName},</if>
|
||||||
|
<if test="picUrl != null and picUrl != ''">pic_url = #{picUrl},</if>
|
||||||
|
<if test="wlsjId != null">wlsj_id = #{wlsjId},</if>
|
||||||
|
<if test="wlsjPath != null">wlsj_path = #{wlsjPath},</if>
|
||||||
|
<if test="muId != null">mu_id = #{muId},</if>
|
||||||
|
<if test="muPath != null">mu_path = #{muPath},</if>
|
||||||
|
<if test="recognize != null">recognize = #{recognize},</if>
|
||||||
|
<if test="remark != null">remark = #{remark},</if>
|
||||||
|
<if test="createBy != null">create_by = #{createBy},</if>
|
||||||
|
<if test="createTime != null">create_time = #{createTime},</if>
|
||||||
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
||||||
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||||
|
</trim>
|
||||||
|
where id = #{id}
|
||||||
|
</update>
|
||||||
|
|
||||||
|
<delete id="deleteDaPicturesRecardById" parameterType="Long">
|
||||||
|
delete from da_pictures_recard where id = #{id}
|
||||||
|
</delete>
|
||||||
|
|
||||||
|
<delete id="deleteDaPicturesRecardByIds" parameterType="String">
|
||||||
|
delete from da_pictures_recard where id in
|
||||||
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||||
|
#{id}
|
||||||
|
</foreach>
|
||||||
|
</delete>
|
||||||
|
</mapper>
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询档案图片信息记录列表
|
||||||
|
export function listPictureRecard(query) {
|
||||||
|
return request({
|
||||||
|
url: '/dangan/pictureRecard/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询档案图片信息记录详细
|
||||||
|
export function getPictureRecard(id) {
|
||||||
|
return request({
|
||||||
|
url: '/dangan/pictureRecard/' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增档案图片信息记录
|
||||||
|
export function addPictureRecard(data) {
|
||||||
|
return request({
|
||||||
|
url: '/dangan/pictureRecard',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改档案图片信息记录
|
||||||
|
export function updatePictureRecard(data) {
|
||||||
|
return request({
|
||||||
|
url: '/dangan/pictureRecard',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除档案图片信息记录
|
||||||
|
export function delPictureRecard(id) {
|
||||||
|
return request({
|
||||||
|
url: '/dangan/pictureRecard/' + id,
|
||||||
|
method: 'delete'
|
||||||
|
})
|
||||||
|
}
|
||||||
@ -0,0 +1,344 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
<el-form-item label="图片名称" prop="picName">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.picName"
|
||||||
|
placeholder="请输入图片名称"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="图片路径" prop="picUrl">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.picUrl"
|
||||||
|
placeholder="请输入图片路径"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物理书架ID" prop="wlsjId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.wlsjId"
|
||||||
|
placeholder="请输入物理书架ID"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物理书架路径" prop="wlsjPath">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.wlsjPath"
|
||||||
|
placeholder="请输入物理书架路径"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="档案目录ID" prop="muId">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.muId"
|
||||||
|
placeholder="请输入档案目录ID"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="档案目录路径" prop="muPath">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.muPath"
|
||||||
|
placeholder="请输入档案目录路径"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="是否已经识别" prop="recognize">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.recognize"
|
||||||
|
placeholder="请输入是否已经识别"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="primary"
|
||||||
|
plain
|
||||||
|
icon="el-icon-plus"
|
||||||
|
size="mini"
|
||||||
|
@click="handleAdd"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:add']"
|
||||||
|
>新增</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="success"
|
||||||
|
plain
|
||||||
|
icon="el-icon-edit"
|
||||||
|
size="mini"
|
||||||
|
:disabled="single"
|
||||||
|
@click="handleUpdate"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="danger"
|
||||||
|
plain
|
||||||
|
icon="el-icon-delete"
|
||||||
|
size="mini"
|
||||||
|
:disabled="multiple"
|
||||||
|
@click="handleDelete"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</el-col>
|
||||||
|
<el-col :span="1.5">
|
||||||
|
<el-button
|
||||||
|
type="warning"
|
||||||
|
plain
|
||||||
|
icon="el-icon-download"
|
||||||
|
size="mini"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="pictureRecardList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="id" align="center" prop="id" />
|
||||||
|
<el-table-column label="图片名称" align="center" prop="picName" />
|
||||||
|
<el-table-column label="图片路径" align="center" prop="picUrl" />
|
||||||
|
<el-table-column label="物理书架ID" align="center" prop="wlsjId" />
|
||||||
|
<el-table-column label="物理书架路径" align="center" prop="wlsjPath" />
|
||||||
|
<el-table-column label="档案目录ID" align="center" prop="muId" />
|
||||||
|
<el-table-column label="档案目录路径" align="center" prop="muPath" />
|
||||||
|
<el-table-column label="是否已经识别" align="center" prop="recognize" />
|
||||||
|
<el-table-column label="备注" align="center" prop="remark" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-edit"
|
||||||
|
@click="handleUpdate(scope.row)"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:edit']"
|
||||||
|
>修改</el-button>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-delete"
|
||||||
|
@click="handleDelete(scope.row)"
|
||||||
|
v-hasPermi="['dangan:pictureRecard:remove']"
|
||||||
|
>删除</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 添加或修改档案图片信息记录对话框 -->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
||||||
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
|
<el-form-item label="图片名称" prop="picName">
|
||||||
|
<el-input v-model="form.picName" placeholder="请输入图片名称" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="图片路径" prop="picUrl">
|
||||||
|
<el-input v-model="form.picUrl" placeholder="请输入图片路径" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物理书架ID" prop="wlsjId">
|
||||||
|
<el-input v-model="form.wlsjId" placeholder="请输入物理书架ID" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="物理书架路径" prop="wlsjPath">
|
||||||
|
<el-input v-model="form.wlsjPath" placeholder="请输入物理书架路径" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="档案目录ID" prop="muId">
|
||||||
|
<el-input v-model="form.muId" placeholder="请输入档案目录ID" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="档案目录路径" prop="muPath">
|
||||||
|
<el-input v-model="form.muPath" placeholder="请输入档案目录路径" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="是否已经识别" prop="recognize">
|
||||||
|
<el-input v-model="form.recognize" placeholder="请输入是否已经识别" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="备注" prop="remark">
|
||||||
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
||||||
|
<el-button @click="cancel">取 消</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { listPictureRecard, getPictureRecard, delPictureRecard, addPictureRecard, updatePictureRecard } from "@/api/dangan/pictureRecard";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "PictureRecard",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 档案图片信息记录表格数据
|
||||||
|
pictureRecardList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
picName: null,
|
||||||
|
picUrl: null,
|
||||||
|
wlsjId: null,
|
||||||
|
wlsjPath: null,
|
||||||
|
muId: null,
|
||||||
|
muPath: null,
|
||||||
|
recognize: null,
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {
|
||||||
|
picName: [
|
||||||
|
{ required: true, message: "图片名称不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
picUrl: [
|
||||||
|
{ required: true, message: "图片路径不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
}
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询档案图片信息记录列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
listPictureRecard(this.queryParams).then(response => {
|
||||||
|
this.pictureRecardList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: null,
|
||||||
|
picName: null,
|
||||||
|
picUrl: null,
|
||||||
|
wlsjId: null,
|
||||||
|
wlsjPath: null,
|
||||||
|
muId: null,
|
||||||
|
muPath: null,
|
||||||
|
recognize: null,
|
||||||
|
remark: null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.id)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加档案图片信息记录";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const id = row.id || this.ids
|
||||||
|
getPictureRecard(id).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改档案图片信息记录";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.id != null) {
|
||||||
|
updatePictureRecard(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addPictureRecard(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 删除按钮操作 */
|
||||||
|
handleDelete(row) {
|
||||||
|
const ids = row.id || this.ids;
|
||||||
|
this.$modal.confirm('是否确认删除档案图片信息记录编号为"' + ids + '"的数据项?').then(function() {
|
||||||
|
return delPictureRecard(ids);
|
||||||
|
}).then(() => {
|
||||||
|
this.getList();
|
||||||
|
this.$modal.msgSuccess("删除成功");
|
||||||
|
}).catch(() => {});
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('dangan/pictureRecard/export', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `pictureRecard_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Loading…
Reference in new issue