Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods
Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口
Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则
Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)
Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口
Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单
Made-with: Cursor
4.6 KiB
4.6 KiB
CHANGELOG
6.0
- Remove
DoctrineProviderandDoctrineAdapter - Remove support of Doctrine DBAL in
PdoAdapter
5.4
- Deprecate
DoctrineProviderandDoctrineAdapterbecause these classes have been added to thedoctrine/cachepackage - Add
DoctrineDbalAdapteridentical toPdoAdapterforDoctrine\DBAL\Connectionor DBAL URL - Deprecate usage of
PdoAdapterwithDoctrine\DBAL\Connectionor DBAL URL
5.3
- added support for connecting to Redis Sentinel clusters when using the Redis PHP extension
- add support for a custom serializer to the
ApcuAdapterclass
5.2.0
- added integration with Messenger to allow computing cached values in a worker
- allow ISO 8601 time intervals to specify default lifetime
5.1.0
- added max-items + LRU + max-lifetime capabilities to
ArrayCache - added
CouchbaseBucketAdapter - added context
cache-adapterto log messages
5.0.0
- removed all PSR-16 implementations in the
Simplenamespace - removed
SimpleCacheAdapter - removed
AbstractAdapter::unserialize() - removed
CacheItem::getPreviousTags()
4.4.0
- added support for connecting to Redis Sentinel clusters
- added argument
$prefixtoAdapterInterface::clear() - improved
RedisTagAwareAdapterto support Redis server >= 2.8 and up to 4B items per tag - added
TagAwareMarshallerfor optimized data storage when usingAbstractTagAwareAdapter - added
DeflateMarshallerto compress serialized values - removed support for phpredis 4
compression - [BC BREAK]
RedisTagAwareAdapteris not compatible withRedisClusterfromPredisanymore, usephpredisinstead - Marked the
CacheDataCollectorclass as@final. - added
SodiumMarshallerto encrypt/decrypt values using libsodium
4.3.0
- removed
psr/simple-cachedependency, runcomposer require psr/simple-cacheif you need it - deprecated all PSR-16 adapters, use
Psr16CacheorSymfony\Contracts\Cache\CacheInterfaceimplementations instead - deprecated
SimpleCacheAdapter, usePsr16Adapterinstead
4.2.0
- added support for connecting to Redis clusters via DSN
- added support for configuring multiple Memcached servers via DSN
- added
MarshallerInterfaceandDefaultMarshallerto allow changing the serializer and provide one that automatically uses igbinary when available - implemented
CacheInterface, which provides stampede protection via probabilistic early expiration and should become the preferred way to use a cache - added sub-second expiry accuracy for backends that support it
- added support for phpredis 4
compressionandtcp_keepaliveoptions - added automatic table creation when using Doctrine DBAL with PDO-based backends
- throw
LogicExceptionwhenCacheItem::tag()is called on an item coming from a non tag-aware pool - deprecated
CacheItem::getPreviousTags(), useCacheItem::getMetadata()instead - deprecated the
AbstractAdapter::unserialize()andAbstractCache::unserialize()methods - added
CacheCollectorPass(originally inFrameworkBundle) - added
CachePoolClearerPass(originally inFrameworkBundle) - added
CachePoolPass(originally inFrameworkBundle) - added
CachePoolPrunerPass(originally inFrameworkBundle)
3.4.0
- added using options from Memcached DSN
- added PruneableInterface so PSR-6 or PSR-16 cache implementations can declare support for manual stale cache pruning
- added prune logic to FilesystemTrait, PhpFilesTrait, PdoTrait, TagAwareAdapter and ChainTrait
- now FilesystemAdapter, PhpFilesAdapter, FilesystemCache, PhpFilesCache, PdoAdapter, PdoCache, ChainAdapter, and ChainCache implement PruneableInterface and support manual stale cache pruning
3.3.0
- added CacheItem::getPreviousTags() to get bound tags coming from the pool storage if any
- added PSR-16 "Simple Cache" implementations for all existing PSR-6 adapters
- added Psr6Cache and SimpleCacheAdapter for bidirectional interoperability between PSR-6 and PSR-16
- added MemcachedAdapter (PSR-6) and MemcachedCache (PSR-16)
- added TraceableAdapter (PSR-6) and TraceableCache (PSR-16)
3.2.0
- added TagAwareAdapter for tags-based invalidation
- added PdoAdapter with PDO and Doctrine DBAL support
- added PhpArrayAdapter and PhpFilesAdapter for OPcache-backed shared memory storage (PHP 7+ only)
- added NullAdapter
3.1.0
- added the component with strict PSR-6 implementations
- added ApcuAdapter, ArrayAdapter, FilesystemAdapter and RedisAdapter
- added AbstractAdapter, ChainAdapter and ProxyAdapter
- added DoctrineAdapter and DoctrineProvider for bidirectional interoperability with Doctrine Cache