增加 报废图片
parent
014b0200fd
commit
d020b61f86
@ -0,0 +1,127 @@
|
||||
package com.ruoyi.manage.controller;
|
||||
|
||||
import java.util.List;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.manage.domain.RecordInspectionImg;
|
||||
import com.ruoyi.manage.service.IRecordInspectionImgService;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 巡检历史图片Controller
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/manage/record_inspection_img")
|
||||
public class RecordInspectionImgController extends BaseController
|
||||
{
|
||||
private String prefix = "manage/record_inspection_img";
|
||||
|
||||
@Autowired
|
||||
private IRecordInspectionImgService recordInspectionImgService;
|
||||
|
||||
@RequiresPermissions("manage:record_inspection_img:view")
|
||||
@GetMapping()
|
||||
public String record_inspection_img()
|
||||
{
|
||||
return prefix + "/record_inspection_img";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询巡检历史图片列表
|
||||
*/
|
||||
//@RequiresPermissions("manage:record_inspection_img:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(RecordInspectionImg recordInspectionImg)
|
||||
{
|
||||
startPage();
|
||||
List<RecordInspectionImg> list = recordInspectionImgService.selectRecordInspectionImgList(recordInspectionImg);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出巡检历史图片列表
|
||||
*/
|
||||
@RequiresPermissions("manage:record_inspection_img:export")
|
||||
@Log(title = "巡检历史图片", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
@ResponseBody
|
||||
public AjaxResult export(RecordInspectionImg recordInspectionImg)
|
||||
{
|
||||
List<RecordInspectionImg> list = recordInspectionImgService.selectRecordInspectionImgList(recordInspectionImg);
|
||||
ExcelUtil<RecordInspectionImg> util = new ExcelUtil<RecordInspectionImg>(RecordInspectionImg.class);
|
||||
return util.exportExcel(list, "巡检历史图片数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增巡检历史图片
|
||||
*/
|
||||
@GetMapping("/add")
|
||||
public String add()
|
||||
{
|
||||
return prefix + "/add";
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增保存巡检历史图片
|
||||
*/
|
||||
@RequiresPermissions("manage:record_inspection_img:add")
|
||||
@Log(title = "巡检历史图片", businessType = BusinessType.INSERT)
|
||||
@PostMapping("/add")
|
||||
@ResponseBody
|
||||
public AjaxResult addSave(RecordInspectionImg recordInspectionImg)
|
||||
{
|
||||
return toAjax(recordInspectionImgService.insertRecordInspectionImg(recordInspectionImg));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改巡检历史图片
|
||||
*/
|
||||
@RequiresPermissions("manage:record_inspection_img:edit")
|
||||
@GetMapping("/edit/{inspectionId}")
|
||||
public String edit(@PathVariable("inspectionId") Long inspectionId, ModelMap mmap)
|
||||
{
|
||||
RecordInspectionImg recordInspectionImg = recordInspectionImgService.selectRecordInspectionImgByInspectionId(inspectionId);
|
||||
mmap.put("recordInspectionImg", recordInspectionImg);
|
||||
return prefix + "/edit";
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改保存巡检历史图片
|
||||
*/
|
||||
@RequiresPermissions("manage:record_inspection_img:edit")
|
||||
@Log(title = "巡检历史图片", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
@ResponseBody
|
||||
public AjaxResult editSave(RecordInspectionImg recordInspectionImg)
|
||||
{
|
||||
return toAjax(recordInspectionImgService.updateRecordInspectionImg(recordInspectionImg));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除巡检历史图片
|
||||
*/
|
||||
@RequiresPermissions("manage:record_inspection_img:remove")
|
||||
@Log(title = "巡检历史图片", businessType = BusinessType.DELETE)
|
||||
@PostMapping( "/remove")
|
||||
@ResponseBody
|
||||
public AjaxResult remove(String ids)
|
||||
{
|
||||
return toAjax(recordInspectionImgService.deleteRecordInspectionImgByInspectionIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,127 @@
|
||||
package com.ruoyi.manage.controller;
|
||||
|
||||
import java.util.List;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.manage.domain.RecordInvalidatedImg;
|
||||
import com.ruoyi.manage.service.IRecordInvalidatedImgService;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 轮挡报废图片记录Controller
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/manage/record_invalidated_img")
|
||||
public class RecordInvalidatedImgController extends BaseController
|
||||
{
|
||||
private String prefix = "manage/record_invalidated_img";
|
||||
|
||||
@Autowired
|
||||
private IRecordInvalidatedImgService recordInvalidatedImgService;
|
||||
|
||||
@RequiresPermissions("manage:record_invalidated_img:view")
|
||||
@GetMapping()
|
||||
public String record_invalidated_img()
|
||||
{
|
||||
return prefix + "/record_invalidated_img";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询轮挡报废图片记录列表
|
||||
*/
|
||||
//@RequiresPermissions("manage:record_invalidated_img:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(RecordInvalidatedImg recordInvalidatedImg)
|
||||
{
|
||||
startPage();
|
||||
List<RecordInvalidatedImg> list = recordInvalidatedImgService.selectRecordInvalidatedImgList(recordInvalidatedImg);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出轮挡报废图片记录列表
|
||||
*/
|
||||
@RequiresPermissions("manage:record_invalidated_img:export")
|
||||
@Log(title = "轮挡报废图片记录", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
@ResponseBody
|
||||
public AjaxResult export(RecordInvalidatedImg recordInvalidatedImg)
|
||||
{
|
||||
List<RecordInvalidatedImg> list = recordInvalidatedImgService.selectRecordInvalidatedImgList(recordInvalidatedImg);
|
||||
ExcelUtil<RecordInvalidatedImg> util = new ExcelUtil<RecordInvalidatedImg>(RecordInvalidatedImg.class);
|
||||
return util.exportExcel(list, "轮挡报废图片记录数据");
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增轮挡报废图片记录
|
||||
*/
|
||||
@GetMapping("/add")
|
||||
public String add()
|
||||
{
|
||||
return prefix + "/add";
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增保存轮挡报废图片记录
|
||||
*/
|
||||
@RequiresPermissions("manage:record_invalidated_img:add")
|
||||
@Log(title = "轮挡报废图片记录", businessType = BusinessType.INSERT)
|
||||
@PostMapping("/add")
|
||||
@ResponseBody
|
||||
public AjaxResult addSave(RecordInvalidatedImg recordInvalidatedImg)
|
||||
{
|
||||
return toAjax(recordInvalidatedImgService.insertRecordInvalidatedImg(recordInvalidatedImg));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改轮挡报废图片记录
|
||||
*/
|
||||
@RequiresPermissions("manage:record_invalidated_img:edit")
|
||||
@GetMapping("/edit/{objid}")
|
||||
public String edit(@PathVariable("objid") Long objid, ModelMap mmap)
|
||||
{
|
||||
RecordInvalidatedImg recordInvalidatedImg = recordInvalidatedImgService.selectRecordInvalidatedImgByObjid(objid);
|
||||
mmap.put("recordInvalidatedImg", recordInvalidatedImg);
|
||||
return prefix + "/edit";
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改保存轮挡报废图片记录
|
||||
*/
|
||||
@RequiresPermissions("manage:record_invalidated_img:edit")
|
||||
@Log(title = "轮挡报废图片记录", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
@ResponseBody
|
||||
public AjaxResult editSave(RecordInvalidatedImg recordInvalidatedImg)
|
||||
{
|
||||
return toAjax(recordInvalidatedImgService.updateRecordInvalidatedImg(recordInvalidatedImg));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除轮挡报废图片记录
|
||||
*/
|
||||
@RequiresPermissions("manage:record_invalidated_img:remove")
|
||||
@Log(title = "轮挡报废图片记录", businessType = BusinessType.DELETE)
|
||||
@PostMapping( "/remove")
|
||||
@ResponseBody
|
||||
public AjaxResult remove(String ids)
|
||||
{
|
||||
return toAjax(recordInvalidatedImgService.deleteRecordInvalidatedImgByObjids(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,68 @@
|
||||
package com.ruoyi.manage.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 巡检历史图片对象 record_inspection_img
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
public class RecordInspectionImg extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 巡检id */
|
||||
@Excel(name = "巡检id")
|
||||
private Long inspectionId;
|
||||
|
||||
/** 任务表id */
|
||||
@Excel(name = "任务表id")
|
||||
private Long taskId;
|
||||
|
||||
/** 路径 */
|
||||
@Excel(name = "路径")
|
||||
private String imgPath;
|
||||
|
||||
public void setInspectionId(Long inspectionId)
|
||||
{
|
||||
this.inspectionId = inspectionId;
|
||||
}
|
||||
|
||||
public Long getInspectionId()
|
||||
{
|
||||
return inspectionId;
|
||||
}
|
||||
public void setTaskId(Long taskId)
|
||||
{
|
||||
this.taskId = taskId;
|
||||
}
|
||||
|
||||
public Long getTaskId()
|
||||
{
|
||||
return taskId;
|
||||
}
|
||||
public void setImgPath(String imgPath)
|
||||
{
|
||||
this.imgPath = imgPath;
|
||||
}
|
||||
|
||||
public String getImgPath()
|
||||
{
|
||||
return imgPath;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("inspectionId", getInspectionId())
|
||||
.append("taskId", getTaskId())
|
||||
.append("imgPath", getImgPath())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
package com.ruoyi.manage.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 轮挡报废图片记录对象 record_invalidated_img
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
public class RecordInvalidatedImg extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键 */
|
||||
private Long objid;
|
||||
|
||||
/** 报废记录ID */
|
||||
@Excel(name = "报废记录ID")
|
||||
private Long invalidatedId;
|
||||
|
||||
/** RFID */
|
||||
@Excel(name = "RFID")
|
||||
private String epc;
|
||||
|
||||
/** RFID */
|
||||
@Excel(name = "RFID")
|
||||
private String imgPath;
|
||||
|
||||
public void setObjid(Long objid)
|
||||
{
|
||||
this.objid = objid;
|
||||
}
|
||||
|
||||
public Long getObjid()
|
||||
{
|
||||
return objid;
|
||||
}
|
||||
public void setInvalidatedId(Long invalidatedId)
|
||||
{
|
||||
this.invalidatedId = invalidatedId;
|
||||
}
|
||||
|
||||
public Long getInvalidatedId()
|
||||
{
|
||||
return invalidatedId;
|
||||
}
|
||||
public void setEpc(String epc)
|
||||
{
|
||||
this.epc = epc;
|
||||
}
|
||||
|
||||
public String getEpc()
|
||||
{
|
||||
return epc;
|
||||
}
|
||||
public void setImgPath(String imgPath)
|
||||
{
|
||||
this.imgPath = imgPath;
|
||||
}
|
||||
|
||||
public String getImgPath()
|
||||
{
|
||||
return imgPath;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("objid", getObjid())
|
||||
.append("invalidatedId", getInvalidatedId())
|
||||
.append("epc", getEpc())
|
||||
.append("imgPath", getImgPath())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package com.ruoyi.manage.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.manage.domain.RecordInspectionImg;
|
||||
import org.springframework.stereotype.Repository;
|
||||
/**
|
||||
* 巡检历史图片Mapper接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Repository
|
||||
public interface RecordInspectionImgMapper
|
||||
{
|
||||
/**
|
||||
* 查询巡检历史图片
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 巡检历史图片
|
||||
*/
|
||||
public RecordInspectionImg selectRecordInspectionImgByInspectionId(Long inspectionId);
|
||||
|
||||
/**
|
||||
* 查询巡检历史图片列表
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 巡检历史图片集合
|
||||
*/
|
||||
public List<RecordInspectionImg> selectRecordInspectionImgList(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 新增巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertRecordInspectionImg(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 修改巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateRecordInspectionImg(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 删除巡检历史图片
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInspectionImgByInspectionId(Long inspectionId);
|
||||
|
||||
/**
|
||||
* 批量删除巡检历史图片
|
||||
*
|
||||
* @param inspectionIds 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInspectionImgByInspectionIds(String[] inspectionIds);
|
||||
}
|
@ -0,0 +1,62 @@
|
||||
package com.ruoyi.manage.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.manage.domain.RecordInvalidatedImg;
|
||||
import org.springframework.stereotype.Repository;
|
||||
/**
|
||||
* 轮挡报废图片记录Mapper接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Repository
|
||||
public interface RecordInvalidatedImgMapper
|
||||
{
|
||||
/**
|
||||
* 查询轮挡报废图片记录
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 轮挡报废图片记录
|
||||
*/
|
||||
public RecordInvalidatedImg selectRecordInvalidatedImgByObjid(Long objid);
|
||||
|
||||
/**
|
||||
* 查询轮挡报废图片记录列表
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 轮挡报废图片记录集合
|
||||
*/
|
||||
public List<RecordInvalidatedImg> selectRecordInvalidatedImgList(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 新增轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 修改轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 删除轮挡报废图片记录
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInvalidatedImgByObjid(Long objid);
|
||||
|
||||
/**
|
||||
* 批量删除轮挡报废图片记录
|
||||
*
|
||||
* @param objids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInvalidatedImgByObjids(String[] objids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.manage.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.manage.domain.RecordInspectionImg;
|
||||
|
||||
/**
|
||||
* 巡检历史图片Service接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
public interface IRecordInspectionImgService
|
||||
{
|
||||
/**
|
||||
* 查询巡检历史图片
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 巡检历史图片
|
||||
*/
|
||||
public RecordInspectionImg selectRecordInspectionImgByInspectionId(Long inspectionId);
|
||||
|
||||
/**
|
||||
* 查询巡检历史图片列表
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 巡检历史图片集合
|
||||
*/
|
||||
public List<RecordInspectionImg> selectRecordInspectionImgList(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 新增巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertRecordInspectionImg(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 修改巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateRecordInspectionImg(RecordInspectionImg recordInspectionImg);
|
||||
|
||||
/**
|
||||
* 批量删除巡检历史图片
|
||||
*
|
||||
* @param inspectionIds 需要删除的巡检历史图片主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInspectionImgByInspectionIds(String inspectionIds);
|
||||
|
||||
/**
|
||||
* 删除巡检历史图片信息
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInspectionImgByInspectionId(Long inspectionId);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.ruoyi.manage.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.ruoyi.manage.domain.RecordInvalidatedImg;
|
||||
|
||||
/**
|
||||
* 轮挡报废图片记录Service接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
public interface IRecordInvalidatedImgService
|
||||
{
|
||||
/**
|
||||
* 查询轮挡报废图片记录
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 轮挡报废图片记录
|
||||
*/
|
||||
public RecordInvalidatedImg selectRecordInvalidatedImgByObjid(Long objid);
|
||||
|
||||
/**
|
||||
* 查询轮挡报废图片记录列表
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 轮挡报废图片记录集合
|
||||
*/
|
||||
public List<RecordInvalidatedImg> selectRecordInvalidatedImgList(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 新增轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 修改轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg);
|
||||
|
||||
/**
|
||||
* 批量删除轮挡报废图片记录
|
||||
*
|
||||
* @param objids 需要删除的轮挡报废图片记录主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInvalidatedImgByObjids(String objids);
|
||||
|
||||
/**
|
||||
* 删除轮挡报废图片记录信息
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteRecordInvalidatedImgByObjid(Long objid);
|
||||
}
|
@ -0,0 +1,97 @@
|
||||
package com.ruoyi.manage.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
import com.ruoyi.common.utils.DateUtils;
|
||||
import com.ruoyi.common.utils.ShiroUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.manage.mapper.RecordInspectionImgMapper;
|
||||
import com.ruoyi.manage.domain.RecordInspectionImg;
|
||||
import com.ruoyi.manage.service.IRecordInspectionImgService;
|
||||
import com.ruoyi.common.core.text.Convert;
|
||||
|
||||
/**
|
||||
* 巡检历史图片Service业务层处理
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Service
|
||||
public class RecordInspectionImgServiceImpl implements IRecordInspectionImgService {
|
||||
@Autowired
|
||||
private RecordInspectionImgMapper recordInspectionImgMapper;
|
||||
|
||||
/**
|
||||
* 查询巡检历史图片
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 巡检历史图片
|
||||
*/
|
||||
@Override
|
||||
public RecordInspectionImg selectRecordInspectionImgByInspectionId(Long inspectionId) {
|
||||
return recordInspectionImgMapper.selectRecordInspectionImgByInspectionId(inspectionId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询巡检历史图片列表
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 巡检历史图片
|
||||
*/
|
||||
@Override
|
||||
public List<RecordInspectionImg> selectRecordInspectionImgList(RecordInspectionImg recordInspectionImg) {
|
||||
return recordInspectionImgMapper.selectRecordInspectionImgList(recordInspectionImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertRecordInspectionImg(RecordInspectionImg recordInspectionImg) {
|
||||
|
||||
|
||||
|
||||
|
||||
recordInspectionImg.setCreateBy(ShiroUtils.getLoginName());
|
||||
recordInspectionImg.setCreateTime(DateUtils.getNowDate());
|
||||
return recordInspectionImgMapper.insertRecordInspectionImg(recordInspectionImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改巡检历史图片
|
||||
*
|
||||
* @param recordInspectionImg 巡检历史图片
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateRecordInspectionImg(RecordInspectionImg recordInspectionImg) {
|
||||
return recordInspectionImgMapper.updateRecordInspectionImg(recordInspectionImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除巡检历史图片
|
||||
*
|
||||
* @param inspectionIds 需要删除的巡检历史图片主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteRecordInspectionImgByInspectionIds(String inspectionIds) {
|
||||
return recordInspectionImgMapper.deleteRecordInspectionImgByInspectionIds(Convert.toStrArray(inspectionIds));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除巡检历史图片信息
|
||||
*
|
||||
* @param inspectionId 巡检历史图片主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteRecordInspectionImgByInspectionId(Long inspectionId) {
|
||||
return recordInspectionImgMapper.deleteRecordInspectionImgByInspectionId(inspectionId);
|
||||
}
|
||||
}
|
@ -0,0 +1,93 @@
|
||||
package com.ruoyi.manage.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
import com.ruoyi.common.utils.DateUtils;
|
||||
import com.ruoyi.common.utils.ShiroUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.ruoyi.manage.mapper.RecordInvalidatedImgMapper;
|
||||
import com.ruoyi.manage.domain.RecordInvalidatedImg;
|
||||
import com.ruoyi.manage.service.IRecordInvalidatedImgService;
|
||||
import com.ruoyi.common.core.text.Convert;
|
||||
|
||||
/**
|
||||
* 轮挡报废图片记录Service业务层处理
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2024-09-27
|
||||
*/
|
||||
@Service
|
||||
public class RecordInvalidatedImgServiceImpl implements IRecordInvalidatedImgService {
|
||||
@Autowired
|
||||
private RecordInvalidatedImgMapper recordInvalidatedImgMapper;
|
||||
|
||||
/**
|
||||
* 查询轮挡报废图片记录
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 轮挡报废图片记录
|
||||
*/
|
||||
@Override
|
||||
public RecordInvalidatedImg selectRecordInvalidatedImgByObjid(Long objid) {
|
||||
return recordInvalidatedImgMapper.selectRecordInvalidatedImgByObjid(objid);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询轮挡报废图片记录列表
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 轮挡报废图片记录
|
||||
*/
|
||||
@Override
|
||||
public List<RecordInvalidatedImg> selectRecordInvalidatedImgList(RecordInvalidatedImg recordInvalidatedImg) {
|
||||
return recordInvalidatedImgMapper.selectRecordInvalidatedImgList(recordInvalidatedImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg) {
|
||||
recordInvalidatedImg.setCreateBy(ShiroUtils.getLoginName());
|
||||
recordInvalidatedImg.setCreateTime(DateUtils.getNowDate());
|
||||
return recordInvalidatedImgMapper.insertRecordInvalidatedImg(recordInvalidatedImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改轮挡报废图片记录
|
||||
*
|
||||
* @param recordInvalidatedImg 轮挡报废图片记录
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateRecordInvalidatedImg(RecordInvalidatedImg recordInvalidatedImg) {
|
||||
return recordInvalidatedImgMapper.updateRecordInvalidatedImg(recordInvalidatedImg);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量删除轮挡报废图片记录
|
||||
*
|
||||
* @param objids 需要删除的轮挡报废图片记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteRecordInvalidatedImgByObjids(String objids) {
|
||||
return recordInvalidatedImgMapper.deleteRecordInvalidatedImgByObjids(Convert.toStrArray(objids));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除轮挡报废图片记录信息
|
||||
*
|
||||
* @param objid 轮挡报废图片记录主键
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteRecordInvalidatedImgByObjid(Long objid) {
|
||||
return recordInvalidatedImgMapper.deleteRecordInvalidatedImgByObjid(objid);
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
-- 菜单 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片', '2026', '1', '/manage/record_inspection_img', 'C', '0', 'manage:record_inspection_img:view', '#', 'admin', sysdate(), '', null, '巡检历史图片菜单');
|
||||
|
||||
-- 按钮父菜单ID
|
||||
SELECT @parentId := LAST_INSERT_ID();
|
||||
|
||||
-- 按钮 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片查询', @parentId, '1', '#', 'F', '0', 'manage:record_inspection_img:list', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片新增', @parentId, '2', '#', 'F', '0', 'manage:record_inspection_img:add', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片修改', @parentId, '3', '#', 'F', '0', 'manage:record_inspection_img:edit', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片删除', @parentId, '4', '#', 'F', '0', 'manage:record_inspection_img:remove', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('巡检历史图片导出', @parentId, '5', '#', 'F', '0', 'manage:record_inspection_img:export', '#', 'admin', sysdate(), '', null, '');
|
@ -0,0 +1,22 @@
|
||||
-- 菜单 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录', '2026', '1', '/manage/record_invalidated_img', 'C', '0', 'manage:record_invalidated_img:view', '#', 'admin', sysdate(), '', null, '轮挡报废图片记录菜单');
|
||||
|
||||
-- 按钮父菜单ID
|
||||
SELECT @parentId := LAST_INSERT_ID();
|
||||
|
||||
-- 按钮 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录查询', @parentId, '1', '#', 'F', '0', 'manage:record_invalidated_img:list', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录新增', @parentId, '2', '#', 'F', '0', 'manage:record_invalidated_img:add', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录修改', @parentId, '3', '#', 'F', '0', 'manage:record_invalidated_img:edit', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录删除', @parentId, '4', '#', 'F', '0', 'manage:record_invalidated_img:remove', '#', 'admin', sysdate(), '', null, '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('轮挡报废图片记录导出', @parentId, '5', '#', 'F', '0', 'manage:record_invalidated_img:export', '#', 'admin', sysdate(), '', null, '');
|
@ -0,0 +1,73 @@
|
||||
<?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.ruoyi.manage.mapper.RecordInspectionImgMapper">
|
||||
|
||||
<resultMap type="RecordInspectionImg" id="RecordInspectionImgResult">
|
||||
<result property="inspectionId" column="inspection_id" />
|
||||
<result property="taskId" column="task_id" />
|
||||
<result property="imgPath" column="img_path" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectRecordInspectionImgVo">
|
||||
select inspection_id, task_id, img_path, create_by, create_time from record_inspection_img
|
||||
</sql>
|
||||
|
||||
<select id="selectRecordInspectionImgList" parameterType="RecordInspectionImg" resultMap="RecordInspectionImgResult">
|
||||
<include refid="selectRecordInspectionImgVo"/>
|
||||
<where>
|
||||
<if test="inspectionId != null "> and inspection_id = #{inspectionId}</if>
|
||||
<if test="taskId != null "> and task_id = #{taskId}</if>
|
||||
<if test="imgPath != null and imgPath != ''"> and img_path = #{imgPath}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectRecordInspectionImgByInspectionId" parameterType="Long" resultMap="RecordInspectionImgResult">
|
||||
<include refid="selectRecordInspectionImgVo"/>
|
||||
where inspection_id = #{inspectionId}
|
||||
</select>
|
||||
|
||||
<insert id="insertRecordInspectionImg" parameterType="RecordInspectionImg">
|
||||
insert into record_inspection_img
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="inspectionId != null">inspection_id,</if>
|
||||
<if test="taskId != null">task_id,</if>
|
||||
<if test="imgPath != null">img_path,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="inspectionId != null">#{inspectionId},</if>
|
||||
<if test="taskId != null">#{taskId},</if>
|
||||
<if test="imgPath != null">#{imgPath},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateRecordInspectionImg" parameterType="RecordInspectionImg">
|
||||
update record_inspection_img
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="taskId != null">task_id = #{taskId},</if>
|
||||
<if test="imgPath != null">img_path = #{imgPath},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
</trim>
|
||||
where inspection_id = #{inspectionId}
|
||||
</update>
|
||||
|
||||
<delete id="deleteRecordInspectionImgByInspectionId" parameterType="Long">
|
||||
delete from record_inspection_img where inspection_id = #{inspectionId}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteRecordInspectionImgByInspectionIds" parameterType="String">
|
||||
delete from record_inspection_img where inspection_id in
|
||||
<foreach item="inspectionId" collection="array" open="(" separator="," close=")">
|
||||
#{inspectionId}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,75 @@
|
||||
<?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.ruoyi.manage.mapper.RecordInvalidatedImgMapper">
|
||||
|
||||
<resultMap type="RecordInvalidatedImg" id="RecordInvalidatedImgResult">
|
||||
<result property="objid" column="objid" />
|
||||
<result property="invalidatedId" column="invalidated_id" />
|
||||
<result property="epc" column="epc" />
|
||||
<result property="imgPath" column="img_path" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectRecordInvalidatedImgVo">
|
||||
select objid, invalidated_id, epc, img_path, create_by, create_time from record_invalidated_img
|
||||
</sql>
|
||||
|
||||
<select id="selectRecordInvalidatedImgList" parameterType="RecordInvalidatedImg" resultMap="RecordInvalidatedImgResult">
|
||||
<include refid="selectRecordInvalidatedImgVo"/>
|
||||
<where>
|
||||
<if test="invalidatedId != null "> and invalidated_id = #{invalidatedId}</if>
|
||||
<if test="epc != null and epc != ''"> and epc = #{epc}</if>
|
||||
<if test="imgPath != null and imgPath != ''"> and img_path = #{imgPath}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectRecordInvalidatedImgByObjid" parameterType="Long" resultMap="RecordInvalidatedImgResult">
|
||||
<include refid="selectRecordInvalidatedImgVo"/>
|
||||
where objid = #{objid}
|
||||
</select>
|
||||
|
||||
<insert id="insertRecordInvalidatedImg" parameterType="RecordInvalidatedImg" useGeneratedKeys="true" keyProperty="objid">
|
||||
insert into record_invalidated_img
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="invalidatedId != null">invalidated_id,</if>
|
||||
<if test="epc != null and epc != ''">epc,</if>
|
||||
<if test="imgPath != null and imgPath != ''">img_path,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="invalidatedId != null">#{invalidatedId},</if>
|
||||
<if test="epc != null and epc != ''">#{epc},</if>
|
||||
<if test="imgPath != null and imgPath != ''">#{imgPath},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateRecordInvalidatedImg" parameterType="RecordInvalidatedImg">
|
||||
update record_invalidated_img
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="invalidatedId != null">invalidated_id = #{invalidatedId},</if>
|
||||
<if test="epc != null and epc != ''">epc = #{epc},</if>
|
||||
<if test="imgPath != null and imgPath != ''">img_path = #{imgPath},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
</trim>
|
||||
where objid = #{objid}
|
||||
</update>
|
||||
|
||||
<delete id="deleteRecordInvalidatedImgByObjid" parameterType="Long">
|
||||
delete from record_invalidated_img where objid = #{objid}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteRecordInvalidatedImgByObjids" parameterType="String">
|
||||
delete from record_invalidated_img where objid in
|
||||
<foreach item="objid" collection="array" open="(" separator="," close=")">
|
||||
#{objid}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue