feat: 首付分期功能实现 - 项目初始化提交
- 添加首付分期功能相关表结构和数据 - 实现首付分期策略管理 - 添加首付分期支付详情管理 - 完善项目相关功能模块 - 修复外键类型问题 - 添加相关初始化脚本和文档
This commit is contained in:
78
.gitignore
vendored
Normal file
78
.gitignore
vendored
Normal file
@ -0,0 +1,78 @@
|
||||
######################################################################
|
||||
# Build Tools
|
||||
|
||||
.gradle
|
||||
/build/
|
||||
!gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
|
||||
######################################################################
|
||||
# IDE
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### JRebel ###
|
||||
rebel.xml
|
||||
|
||||
### NetBeans ###
|
||||
nbproject/private/
|
||||
build/*
|
||||
nbbuild/
|
||||
nbdist/
|
||||
.nb-gradle/
|
||||
|
||||
######################################################################
|
||||
# Others
|
||||
*.log
|
||||
*.xml.versionsBackup
|
||||
*.swp
|
||||
|
||||
!*/build/*.java
|
||||
!*/build/*.html
|
||||
!*/build/*.xml
|
||||
|
||||
.flattened-pom.xml
|
||||
|
||||
######################################################################
|
||||
# Node.js
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Runtime files
|
||||
hs_err_pid*
|
||||
*.tmp
|
||||
*.temp
|
||||
*.cache
|
||||
.cache/
|
||||
|
||||
# Build directories
|
||||
ruoyi-ui/dist/
|
||||
ruoyi-ui/dist-ssr/
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
|
||||
# Local configuration
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
Reference in New Issue
Block a user