xg
“linengliang”
2024-03-15 6a3591c42a84b36d24d75f4584f0eeb145bb4de7
lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/OperationCertificateApplyController.java
@@ -12,6 +12,7 @@
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.jeecg.modules.eam.vo.EquipmentDisposalPage;
import org.jeecgframework.poi.excel.ExcelImportUtil;
import org.jeecgframework.poi.excel.def.NormalExcelConstants;
import org.jeecgframework.poi.excel.entity.ExportParams;
@@ -262,4 +263,17 @@
      return Result.OK("文件导入失败!");
    }
    /**
     * 提交、审核、审批
     *
     * @param operationCertificateApply
     * @return
     */
    @AutoLog(value = "提交、审核、审批")
    @PostMapping(value = "/approve")
    public Result<String> submit(@RequestBody OperationCertificateApply operationCertificateApply) {
       this.operationCertificateApplyService.updateById(operationCertificateApply);
       return Result.OK("操作成功!");
    }
}