- 修复 sys-config 接口参数对齐(configKey/configValue) - 添加 dict 字典项管理 API - 修复 logs 接口参数格式(批量删除/清理日志) - 添加 request.ts postForm/putForm 方法支持 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
45 lines
493 B
Plaintext
45 lines
493 B
Plaintext
# Maven
|
|
target/
|
|
*.class
|
|
*.log
|
|
.mvn/
|
|
mvnw*
|
|
pom.xml.tag
|
|
pom.xml.releaseBackup
|
|
pom.xml.versionsBackup
|
|
pom.xml.next
|
|
release.properties
|
|
dependency-reduced-pom.xml
|
|
buildNumber.properties
|
|
.mvn/timing.properties
|
|
|
|
# IDE
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# 配置文件(敏感信息)
|
|
src/main/resources/application-local.yml
|
|
src/main/resources/application-prod.yml.local
|
|
|
|
# 日志
|
|
logs/
|
|
*.log
|
|
|
|
# 临时文件
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*~
|