diff --git a/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java b/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java index cf2b5d0..e3326d0 100644 --- a/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java +++ b/ruoyi-api/src/main/java/com/ruoyi/api/controller/ApiController.java @@ -172,18 +172,6 @@ public class ApiController { @Autowired private IRecordInvalidatedService recordInvalidatedService; - @PostMapping("/bf/submit") - public AjaxResult bfSubmit(String epc, String user, String remark) { - //插入记录 - RecordInvalidated recordInvalidated = new RecordInvalidated(); - recordInvalidated.setEpc(epc); - recordInvalidated.setCreateBy(user); - recordInvalidated.setRemark(remark); - recordInvalidatedService.insertRecordInvalidated(recordInvalidated); - //修改台账 - apiService.updataLedgerForBf(epc, "2"); - return success(); - } @PostMapping("/xj/selectLite") @@ -208,8 +196,6 @@ public class ApiController { //存储图片,插库 String filePath = RuoYiConfig.getUploadPath() + "/inspection"; - Date date = new Date(); - if (files != null && files.size() > 0) { for (MultipartFile multipartFile : files) { String pathName = null; @@ -276,6 +262,43 @@ public class ApiController { return success("创建成功", insertNumber); } + /** + * 轮挡报废 + * @param epc + * @param user + * @param remark + * @return + */ + @PostMapping("/bf/submit") + public AjaxResult bfSubmit(String epc, String reason,String user, String remark,List files) { + //插入记录 + RecordInvalidated recordInvalidated = new RecordInvalidated(); + recordInvalidated.setEpc(epc); + recordInvalidated.setCreateBy(user); + recordInvalidated.setRemark(remark); + recordInvalidatedService.insertRecordInvalidated(recordInvalidated); + // + + //修改台账 + apiService.updataLedgerForBf(epc, "2"); + + //存储图片,插库 + String filePath = RuoYiConfig.getUploadPath() + "/inspection"; + if (files != null && files.size() > 0) { + for (MultipartFile multipartFile : files) { + String pathName = null; + try { + pathName = FileUploadUtils.upload(filePath, multipartFile); + } catch (IOException e) { + e.printStackTrace(); + } + System.out.println("上传图片路径:" + pathName); + apiService.insertBfImg(recordInvalidated.getObjid(),epc,user, pathName); + } + } + + return success(); + } @PostMapping("/fpin/select") public AjaxResult fpInSelect(String epc) { diff --git a/ruoyi-api/src/main/java/com/ruoyi/api/mapper/ApiMapper.java b/ruoyi-api/src/main/java/com/ruoyi/api/mapper/ApiMapper.java index b5b171e..11e431f 100644 --- a/ruoyi-api/src/main/java/com/ruoyi/api/mapper/ApiMapper.java +++ b/ruoyi-api/src/main/java/com/ruoyi/api/mapper/ApiMapper.java @@ -69,4 +69,9 @@ public interface ApiMapper { @Param("tableId") long tableId, @Param("user") String user, @Param("pathName") String pathName); + + void insertBfImg(@Param("objid") Long objid, + @Param("epc") String epc, + @Param("user") String user, + @Param("pathName") String pathName); } diff --git a/ruoyi-api/src/main/java/com/ruoyi/api/service/impl/ApiService.java b/ruoyi-api/src/main/java/com/ruoyi/api/service/impl/ApiService.java index d0fdc2f..38122db 100644 --- a/ruoyi-api/src/main/java/com/ruoyi/api/service/impl/ApiService.java +++ b/ruoyi-api/src/main/java/com/ruoyi/api/service/impl/ApiService.java @@ -124,4 +124,8 @@ public class ApiService { public void insertInspetionPictrue(long inspectionId, long tableId, String user, String pathName) { mapper.insertInspetionPictrue(inspectionId, tableId,user, pathName); } + + public void insertBfImg(Long objid, String epc, String user, String pathName) { + mapper.insertBfImg(objid,epc,user, pathName); + } } diff --git a/ruoyi-api/src/main/resources/mapper/ApiMapper.xml b/ruoyi-api/src/main/resources/mapper/ApiMapper.xml index fba52cf..066798a 100644 --- a/ruoyi-api/src/main/resources/mapper/ApiMapper.xml +++ b/ruoyi-api/src/main/resources/mapper/ApiMapper.xml @@ -236,13 +236,18 @@ where is_scrap = 1 and location_code = #{code} - - + + UPDATE record_inspection_task SET task_state = '完成' WHERE objid = #{tableId}; - + INSERT INTO record_inspection_img (inspection_id, task_id, img_path, create_by) VALUES (#{inspetionId},#{tableId}, #{pathName}, #{user}); + + + INSERT INTO bg_wheel_chocks.record_invalidated_img (invalidated_id, epc, img_path, create_by) + VALUES (#{objid}, #{epc},#{pathName},#{user}); + \ No newline at end of file diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInspectionImgController.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInspectionImgController.java new file mode 100644 index 0000000..47de512 --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInspectionImgController.java @@ -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 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 list = recordInspectionImgService.selectRecordInspectionImgList(recordInspectionImg); + ExcelUtil util = new ExcelUtil(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)); + } +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedImgController.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedImgController.java new file mode 100644 index 0000000..fc76650 --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/controller/RecordInvalidatedImgController.java @@ -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 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 list = recordInvalidatedImgService.selectRecordInvalidatedImgList(recordInvalidatedImg); + ExcelUtil util = new ExcelUtil(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)); + } +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInspectionImg.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInspectionImg.java new file mode 100644 index 0000000..19a19a7 --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInspectionImg.java @@ -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(); + } +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java index a5676ad..c7ee98b 100644 --- a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidated.java @@ -22,7 +22,18 @@ public class RecordInvalidated extends BaseEntity @Excel(name = "RFID") private String epc; - public void setObjid(Long objid) + private String reason; + + + public String getReason() { + return reason; + } + + public void setReason(String reason) { + this.reason = reason; + } + + public void setObjid(Long objid) { this.objid = objid; } diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidatedImg.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidatedImg.java new file mode 100644 index 0000000..57b48de --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/domain/RecordInvalidatedImg.java @@ -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(); + } +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInspectionImgMapper.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInspectionImgMapper.java new file mode 100644 index 0000000..dc12c93 --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInspectionImgMapper.java @@ -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 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); +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedImgMapper.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedImgMapper.java new file mode 100644 index 0000000..111199e --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/mapper/RecordInvalidatedImgMapper.java @@ -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 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); +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInspectionImgService.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInspectionImgService.java new file mode 100644 index 0000000..425b8ee --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInspectionImgService.java @@ -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 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); +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedImgService.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedImgService.java new file mode 100644 index 0000000..f083ea8 --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/IRecordInvalidatedImgService.java @@ -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 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); +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInspectionImgServiceImpl.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInspectionImgServiceImpl.java new file mode 100644 index 0000000..ae3f4dc --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInspectionImgServiceImpl.java @@ -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 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); + } +} diff --git a/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedImgServiceImpl.java b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedImgServiceImpl.java new file mode 100644 index 0000000..8edea4b --- /dev/null +++ b/ruoyi-manage/src/main/java/com/ruoyi/manage/service/impl/RecordInvalidatedImgServiceImpl.java @@ -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 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); + } +} diff --git a/ruoyi-manage/src/main/resources/create_menu_sql/record_inspection_imgMenu.sql b/ruoyi-manage/src/main/resources/create_menu_sql/record_inspection_imgMenu.sql new file mode 100644 index 0000000..19a7925 --- /dev/null +++ b/ruoyi-manage/src/main/resources/create_menu_sql/record_inspection_imgMenu.sql @@ -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, ''); diff --git a/ruoyi-manage/src/main/resources/create_menu_sql/record_invalidated_imgMenu.sql b/ruoyi-manage/src/main/resources/create_menu_sql/record_invalidated_imgMenu.sql new file mode 100644 index 0000000..9d0c0cd --- /dev/null +++ b/ruoyi-manage/src/main/resources/create_menu_sql/record_invalidated_imgMenu.sql @@ -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, ''); diff --git a/ruoyi-manage/src/main/resources/mapper/manage/RecordInspectionImgMapper.xml b/ruoyi-manage/src/main/resources/mapper/manage/RecordInspectionImgMapper.xml new file mode 100644 index 0000000..ad53f55 --- /dev/null +++ b/ruoyi-manage/src/main/resources/mapper/manage/RecordInspectionImgMapper.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + select inspection_id, task_id, img_path, create_by, create_time from record_inspection_img + + + + + + + + insert into record_inspection_img + + inspection_id, + task_id, + img_path, + create_by, + create_time, + + + #{inspectionId}, + #{taskId}, + #{imgPath}, + #{createBy}, + #{createTime}, + + + + + update record_inspection_img + + task_id = #{taskId}, + img_path = #{imgPath}, + create_by = #{createBy}, + create_time = #{createTime}, + + where inspection_id = #{inspectionId} + + + + delete from record_inspection_img where inspection_id = #{inspectionId} + + + + delete from record_inspection_img where inspection_id in + + #{inspectionId} + + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedImgMapper.xml b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedImgMapper.xml new file mode 100644 index 0000000..f7e3f40 --- /dev/null +++ b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedImgMapper.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + select objid, invalidated_id, epc, img_path, create_by, create_time from record_invalidated_img + + + + + + + + insert into record_invalidated_img + + invalidated_id, + epc, + img_path, + create_by, + create_time, + + + #{invalidatedId}, + #{epc}, + #{imgPath}, + #{createBy}, + #{createTime}, + + + + + update record_invalidated_img + + invalidated_id = #{invalidatedId}, + epc = #{epc}, + img_path = #{imgPath}, + create_by = #{createBy}, + create_time = #{createTime}, + + where objid = #{objid} + + + + delete from record_invalidated_img where objid = #{objid} + + + + delete from record_invalidated_img where objid in + + #{objid} + + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml index c0b6f95..8723136 100644 --- a/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml +++ b/ruoyi-manage/src/main/resources/mapper/manage/RecordInvalidatedMapper.xml @@ -9,10 +9,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + + - select objid, epc, create_by, create_time from record_invalidated + select objid, epc, create_by, create_time,reason,remark from record_invalidated + + +
+ +
+ +
+
+
+ +
+ +
+
+ + + + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/edit.html b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/edit.html new file mode 100644 index 0000000..ce93fe2 --- /dev/null +++ b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/edit.html @@ -0,0 +1,44 @@ + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/record_inspection_img.html b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/record_inspection_img.html new file mode 100644 index 0000000..f1cdf9e --- /dev/null +++ b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_img/record_inspection_img.html @@ -0,0 +1,105 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_inspection_task/record_inspection_task.html b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_task/record_inspection_task.html index f0a7e40..d146b9a 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/record_inspection_task/record_inspection_task.html +++ b/ruoyi-manage/src/main/resources/templates/manage/record_inspection_task/record_inspection_task.html @@ -1,86 +1,99 @@ - + -
-
-
-
-
-
    - -
  • - - -
  • -
  • - - -
  • -
  • - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
+
+
+
+
+
+
    + +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
- -
-
-
+ +
+
- - + initinspectionTable = function (index, row, $detail) { + var childTable = $detail.html('
').find('table'); + + $(childTable).bootstrapTable({ + url: ctx + "manage/record_inspection_img/list", + method: 'post', + sidePagination: "server", + contentType: "application/x-www-form-urlencoded", + queryParams: { + taskId: row.objid + }, + columns: [ + { + title: '序号', + formatter: function (value, row, index) { + return index + 1 + } + }, + + { + field: 'imgPath', + title: '路径', + formatter: function (value, row, index) { + + return $.table.imageView(value, 818, 460, null); + + } + }, + { + field: 'createBy', + title: '上传人' + }, + { + field: 'createTime', + title: '上传时间' + }] + }); + }; + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html index d873656..a8c58ac 100644 --- a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated/record_invalidated.html @@ -1,76 +1,87 @@ - + -
-
-
-
-
-
    -
  • - - -
  • -
  • - - -
  • -
  • - - - - - -
  • -
  • -  搜索 -  重置 -
  • -
-
-
-
+
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + + - + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
- -
-
-
+ +
+
- - + }; + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/add.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/add.html new file mode 100644 index 0000000..aedbfca --- /dev/null +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/add.html @@ -0,0 +1,43 @@ + + + + + + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/edit.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/edit.html new file mode 100644 index 0000000..ad011ec --- /dev/null +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/edit.html @@ -0,0 +1,44 @@ + + + + + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/record_invalidated_img.html b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/record_invalidated_img.html new file mode 100644 index 0000000..16bfe81 --- /dev/null +++ b/ruoyi-manage/src/main/resources/templates/manage/record_invalidated_img/record_invalidated_img.html @@ -0,0 +1,110 @@ + + + + + + +
+
+
+
+
+
    +
  • + + +
  • +
  • + + +
  • +
  • + + +
  • +
  • +  搜索 +  重置 +
  • +
+
+
+
+ + +
+
+
+
+
+ + + + \ No newline at end of file