zhibing.pu
2024-08-23 daf38357323ae9f1ef03c00960f9e7d8bc444702
ManagementIGOTravel/guns-admin/src/main/java/com/stylefeng/guns/modular/system/controller/TReportLossController.java
@@ -145,12 +145,16 @@
    public Object detail(@PathVariable("tReportLossId") Integer tReportLossId) {
        return tReportLossService.selectById(tReportLossId);
    }
    @RequestMapping(value = "/dispose")
    @ResponseBody
    public Object dispose(Integer id,String info) {
        TReportLoss tReportLoss = tReportLossService.selectById(id);
        tReportLoss.setDisposeInfo(info);
        tReportLoss.setStatus(2);
        tReportLoss.setHandleTime(new Date());
        tReportLoss.setHandleUserId(ShiroKit.getUser().getObjectId());
        boolean b = tReportLossService.updateById(tReportLoss);
        if(b){