docs: 添加员工信息导入结果弹窗自适应优化设计文档

- 分析现有问题:弹窗内容过多时超出视口
- 设计固定高度+内容可滚动的Flexbox布局方案
- 提供完整的CSS样式和响应式设计
- 包含实施计划、验收标准和技术要点

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
wkc
2026-02-05 16:09:40 +08:00
parent bed3ab5ed8
commit 1e691f9697
23 changed files with 2890 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.ruoyi.common.annotation;
import java.lang.annotation.*;
/**
* 必填字段注解
* 用于标注Excel导入导出实体类中的必填字段
* 在生成导入模板时,会为必填字段的表头添加红色星号(*)标记
*
* @author ruoyi
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Required {
}