Aucune description

skyline 95e050d862 feat: 结算确认步骤 — 待结算金额需财务确认后才转入站点可提现余额 il y a 12 heures
.mvn 894ce444ee 初始迁移提交 il y a 1 an
admin-h5 4b2f2317bc feat: 首页看板增加洗车人数和今日退款,修复公众号客服浮标点击无反应 il y a 5 jours
admin-web 95e050d862 feat: 结算确认步骤 — 待结算金额需财务确认后才转入站点可提现余额 il y a 12 heures
admin-web-new 95e050d862 feat: 结算确认步骤 — 待结算金额需财务确认后才转入站点可提现余额 il y a 12 heures
car-wash-admin 95e050d862 feat: 结算确认步骤 — 待结算金额需财务确认后才转入站点可提现余额 il y a 12 heures
car-wash-common 9f09cd195c fix: ResponseResultHandler 拦截 String 返回类型导致 ClassCastException il y a 1 mois
car-wash-entity 3f969cd3d1 feat: 结算记录新增微信提现手续费(0.6%),结算金额扣减该费用 il y a 21 heures
car-wash-mapper 69fb46e153 fix: 修复权限模块6个缺陷 — v-auth指令短路、SQL参数绑定错误、getRoleList未实现等 il y a 3 semaines
car-wash-miniapp c3879d6e2f fix: 结算状态改为待结算、日志按日压缩归档、站点列显示优化 il y a 21 heures
car-wash-mp 4b2f2317bc feat: 首页看板增加洗车人数和今日退款,修复公众号客服浮标点击无反应 il y a 5 jours
car-wash-service 95e050d862 feat: 结算确认步骤 — 待结算金额需财务确认后才转入站点可提现余额 il y a 12 heures
doc ddad10d05d feat: 新增专属充值优惠活动和线下充值功能 il y a 1 mois
docs 22799de7e1 feat: 菜单新增"去洗车"按钮,miniprogram 类型跳转小程序首页 il y a 1 mois
.gitignore 8abd70693c chore: gitignore 忽略 AI/Agent 工具生成文件 il y a 5 jours
CLAUDE.md 4b820dc9ca fix: 修正结算公式,提现手续费在平台费之前扣除 il y a 12 heures
DESIGN.md f8fafe2818 admin-mp页面调试 il y a 2 mois
PRODUCT.md fc913e2226 PureAdmin版PC前端优化 il y a 2 mois
README.md 894ce444ee 初始迁移提交 il y a 1 an
deploy.sh f1af707f83 fix: miniapp Metaspace OOM — 移除无用的exposeProxy并提高Metaspace上限 il y a 3 semaines
jdbc.md 6bd6827749 jdbc 说明文档 il y a 1 an
mvnw 894ce444ee 初始迁移提交 il y a 1 an
mvnw.cmd 894ce444ee 初始迁移提交 il y a 1 an
package-lock.json 5f1624016e 自助洗车运营移动端小程序初始化提交 il y a 6 mois
pom.xml 0d07d20e3c java17升级至java21 il y a 6 mois

README.md

admin手动编译打包步骤

  • 清空旧版本

    rm -r  ./charge-java/admin/src/main/resources/static
    
  • 编译前端

    cd   ./charge-java/admin-web
    npm install 
    npm run build
    
  • 编译后端

    cd  ./charge-java/admin
    mvn clean package -DskipTests
    

miniapp手动编译打包步骤

cd  ./charge-java/miniapp
mvn clean package -DskipTests

docker启动脚本

##jenkins
docker run  -u 1001 --name jenkins -d -p 8099:8080 -p 50099:50000 -v /home/kym/jenkins1:/var/jenkins_home  jenkins/jenkins:jdk17-preview

##mysql
 docker run -u 1000  -p 3306:3306 --name mymysql  \
-v /usr/local/docker/mysql/mysql-files:/var/lib/mysql-files \
-v  /usr/local/docker/mysql/conf/my.cnf:/etc/mysql/my.cnf \
 -v  /usr/local/docker/mysql/logs:/var/log/mysql \
 -v /usr/local/docker/mysql/data:/var/lib/mysql  \
-d mysql

##redis
docker run -u 1000 -p 6379:6379 --name myredis \
-v /home/redis/myredis/redis.conf:/etc/redis/redis.conf \
-v /home/redis/myredis/data:/data \
-d redis redis-server /etc/redis/redis.conf \
--appendonly yes