|
|
@ -1,26 +1,26 @@ |
|
|
|
package org.dromara.platform.controller; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import jakarta.servlet.http.HttpServletResponse; |
|
|
|
import jakarta.validation.constraints.*; |
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.dromara.common.idempotent.annotation.RepeatSubmit; |
|
|
|
import org.dromara.common.log.annotation.Log; |
|
|
|
import org.dromara.common.web.core.BaseController; |
|
|
|
import org.dromara.common.mybatis.core.page.PageQuery; |
|
|
|
import jakarta.validation.constraints.NotEmpty; |
|
|
|
import jakarta.validation.constraints.NotNull; |
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
import org.dromara.common.core.domain.R; |
|
|
|
import org.dromara.common.core.validate.AddGroup; |
|
|
|
import org.dromara.common.core.validate.EditGroup; |
|
|
|
import org.dromara.common.log.enums.BusinessType; |
|
|
|
import org.dromara.common.excel.utils.ExcelUtil; |
|
|
|
import org.dromara.platform.domain.vo.DocumentInfoVo; |
|
|
|
import org.dromara.common.idempotent.annotation.RepeatSubmit; |
|
|
|
import org.dromara.common.log.annotation.Log; |
|
|
|
import org.dromara.common.log.enums.BusinessType; |
|
|
|
import org.dromara.common.mybatis.core.page.PageQuery; |
|
|
|
import org.dromara.common.mybatis.core.page.TableDataInfo; |
|
|
|
import org.dromara.common.web.core.BaseController; |
|
|
|
import org.dromara.platform.domain.bo.DocumentInfoBo; |
|
|
|
import org.dromara.platform.domain.vo.DocumentInfoVo; |
|
|
|
import org.dromara.platform.service.IDocumentInfoService; |
|
|
|
import org.dromara.common.mybatis.core.page.TableDataInfo; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* 文档信息 |
|
|
|