chore(czcf82): Spring profiles, migration docs, and shop URLs

Add per-shop application YAML, company data migration notes and SQL
supplements, and point admin, API, and uni-app at czcf82 endpoints.

Made-with: Cursor
This commit is contained in:
danaisuiyuan
2026-04-26 15:55:22 +08:00
parent 18b74a131a
commit eb349ffa74
30 changed files with 3376 additions and 24 deletions

View File

@@ -0,0 +1,37 @@
# 公司名称:宝应晨召春商贸
## mysql数据库配置信息
host ip: 8.136.120.231
datasource:
name: yangtangyoupin
username: yangtangyoupin
password: 5Fn8eWrbYFtAhCZw
## 数据清理任务
- 保留的**用户数据范围**wa_users.id in (92485,92494,92815,93125,92917,92322,92807,92599,92991,93048,93089,93180,93187,93185,93147,92806,92871,93184,93017,93023,93109,93177,93202,93086,93156,93197,93050,93058,93112,93210,93115,93195,93203,93192,93188,93183,93181,93178,93175,93174),删除其余用户数据
- wa_order
只保留“created_at >= 2026-03-31”并且 user_id 在用户数据范围的订单,删除其余数据
(库表对应 `seller_id` / `buyer_id`,任一侧在保留用户集合内即保留该订单。)
- wa_merchandise
只保留“created_at >= 2026-03-31”并且seller_id或buyer_id在用户数据范围的寄售商品删除其余数据
(当前库表字段为 `user_id` 表示卖家,实现时按 `user_id` 与日期条件过滤。)
- wa_selfbonus_log
只保留 `user_id` 在用户数据范围内的记录,删除其余数据
- wa_sharebonus_log
只保留 `user_id` 在用户数据范围内的记录,删除其余数据
- wa_coupon_log
只保留 `user_id` 在用户数据范围内的记录,删除其余数据
- 写一个sql在eb_user_integral_record中通过uid字段查询用户看哪些用户在eb_user中不存在批量删除这些记录
## 相关文件
- company-info.md