Merge pull request 'v1.0.24' (#34) from dev into master

Reviewed-on: #34
This commit was merged in pull request #34.
This commit is contained in:
2026-08-22 09:56:13 +00:00
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
<groupId>com.imyeyu.timiserverapi</groupId> <groupId>com.imyeyu.timiserverapi</groupId>
<artifactId>TimiServerAPI</artifactId> <artifactId>TimiServerAPI</artifactId>
<version>1.0.23</version> <version>1.0.24</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>TimiServerAPI</name> <name>TimiServerAPI</name>
<description>imyeyu.com API</description> <description>imyeyu.com API</description>
@@ -25,6 +25,7 @@ import com.imyeyu.spring.mapper.BaseMapper;
import com.imyeyu.spring.service.AbstractEntityService; import com.imyeyu.spring.service.AbstractEntityService;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -54,7 +55,7 @@ public class GaoStoreServiceImplement extends AbstractEntityService<GaoStore, St
private final GaoPointAccountService pointAccountService; private final GaoPointAccountService pointAccountService;
private final GaoPointRuleService pointRuleService; private final GaoPointRuleService pointRuleService;
private final GaoStoreBusinessDayService businessDayService; private final GaoStoreBusinessDayService businessDayService;
private final GaoUserService gaoUserService; private final ObjectProvider<GaoUserService> gaoUserServiceProvider;
private final TagService tagService; private final TagService tagService;
private final GaoStoreMapper mapper; private final GaoStoreMapper mapper;
@@ -190,7 +191,7 @@ public class GaoStoreServiceImplement extends AbstractEntityService<GaoStore, St
/// ///
/// @param storeId 门店 ID /// @param storeId 门店 ID
private void deleteGaoUsers(String storeId) { private void deleteGaoUsers(String storeId) {
gaoUserService.deleteByStoreId(storeId); gaoUserServiceProvider.getObject().deleteByStoreId(storeId);
} }
/// 清理门店下未被客户删除逻辑覆盖的积分账户 /// 清理门店下未被客户删除逻辑覆盖的积分账户