|
|
@@ -14,8 +14,10 @@ import com.punchsettle.server.pojo.account.TransferRequest;
|
|
|
import com.punchsettle.server.pojo.punchIn.AccountQuery;
|
|
|
import com.punchsettle.server.service.manager.IAccountManager;
|
|
|
import com.punchsettle.server.utiis.UserUtils;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
@@ -31,6 +33,8 @@ import java.util.stream.Collectors;
|
|
|
* @date 2025/4/24 17:40
|
|
|
* @description 账户 服务类
|
|
|
*/
|
|
|
+@Slf4j
|
|
|
+@Component
|
|
|
public class AccountManagerImpl implements IAccountManager {
|
|
|
|
|
|
@Autowired
|