1.0.0:first commit

This commit is contained in:
2026-03-26 01:23:19 +08:00
commit f8d5b11567
23562 changed files with 2853775 additions and 0 deletions

View File

@@ -0,0 +1,96 @@
# Design Document
## Overview
[High-level description of the feature and its place in the overall system]
## Steering Document Alignment
### Technical Standards (tech.md)
[How the design follows documented technical patterns and standards]
### Project Structure (structure.md)
[How the implementation will follow project organization conventions]
## Code Reuse Analysis
[What existing code will be leveraged, extended, or integrated with this feature]
### Existing Components to Leverage
- **[Component/Utility Name]**: [How it will be used]
- **[Service/Helper Name]**: [How it will be extended]
### Integration Points
- **[Existing System/API]**: [How the new feature will integrate]
- **[Database/Storage]**: [How data will connect to existing schemas]
## Architecture
[Describe the overall architecture and design patterns used]
### Modular Design Principles
- **Single File Responsibility**: Each file should handle one specific concern or domain
- **Component Isolation**: Create small, focused components rather than large monolithic files
- **Service Layer Separation**: Separate data access, business logic, and presentation layers
- **Utility Modularity**: Break utilities into focused, single-purpose modules
```mermaid
graph TD
A[Component A] --> B[Component B]
B --> C[Component C]
```
## Components and Interfaces
### Component 1
- **Purpose:** [What this component does]
- **Interfaces:** [Public methods/APIs]
- **Dependencies:** [What it depends on]
- **Reuses:** [Existing components/utilities it builds upon]
### Component 2
- **Purpose:** [What this component does]
- **Interfaces:** [Public methods/APIs]
- **Dependencies:** [What it depends on]
- **Reuses:** [Existing components/utilities it builds upon]
## Data Models
### Model 1
```
[Define the structure of Model1 in your language]
- id: [unique identifier type]
- name: [string/text type]
- [Additional properties as needed]
```
### Model 2
```
[Define the structure of Model2 in your language]
- id: [unique identifier type]
- [Additional properties as needed]
```
## Error Handling
### Error Scenarios
1. **Scenario 1:** [Description]
- **Handling:** [How to handle]
- **User Impact:** [What user sees]
2. **Scenario 2:** [Description]
- **Handling:** [How to handle]
- **User Impact:** [What user sees]
## Testing Strategy
### Unit Testing
- [Unit testing approach]
- [Key components to test]
### Integration Testing
- [Integration testing approach]
- [Key flows to test]
### End-to-End Testing
- [E2E testing approach]
- [User scenarios to test]

View File

@@ -0,0 +1,51 @@
# Product Overview
## Product Purpose
[Describe the core purpose of this product/project. What problem does it solve?]
## Target Users
[Who are the primary users of this product? What are their needs and pain points?]
## Key Features
[List the main features that deliver value to users]
1. **Feature 1**: [Description]
2. **Feature 2**: [Description]
3. **Feature 3**: [Description]
## Business Objectives
[What are the business goals this product aims to achieve?]
- [Objective 1]
- [Objective 2]
- [Objective 3]
## Success Metrics
[How will we measure the success of this product?]
- [Metric 1]: [Target]
- [Metric 2]: [Target]
- [Metric 3]: [Target]
## Product Principles
[Core principles that guide product decisions]
1. **[Principle 1]**: [Explanation]
2. **[Principle 2]**: [Explanation]
3. **[Principle 3]**: [Explanation]
## Monitoring & Visibility (if applicable)
[How do users track progress and monitor the system?]
- **Dashboard Type**: [e.g., Web-based, CLI, Desktop app]
- **Real-time Updates**: [e.g., WebSocket, polling, push notifications]
- **Key Metrics Displayed**: [What information is most important to surface]
- **Sharing Capabilities**: [e.g., read-only links, exports, reports]
## Future Vision
[Where do we see this product evolving in the future?]
### Potential Enhancements
- **Remote Access**: [e.g., Tunnel features for sharing dashboards with stakeholders]
- **Analytics**: [e.g., Historical trends, performance metrics]
- **Collaboration**: [e.g., Multi-user support, commenting]

View File

@@ -0,0 +1,50 @@
# Requirements Document
## Introduction
[Provide a brief overview of the feature, its purpose, and its value to users]
## Alignment with Product Vision
[Explain how this feature supports the goals outlined in product.md]
## Requirements
### Requirement 1
**User Story:** As a [role], I want [feature], so that [benefit]
#### Acceptance Criteria
1. WHEN [event] THEN [system] SHALL [response]
2. IF [precondition] THEN [system] SHALL [response]
3. WHEN [event] AND [condition] THEN [system] SHALL [response]
### Requirement 2
**User Story:** As a [role], I want [feature], so that [benefit]
#### Acceptance Criteria
1. WHEN [event] THEN [system] SHALL [response]
2. IF [precondition] THEN [system] SHALL [response]
## Non-Functional Requirements
### Code Architecture and Modularity
- **Single Responsibility Principle**: Each file should have a single, well-defined purpose
- **Modular Design**: Components, utilities, and services should be isolated and reusable
- **Dependency Management**: Minimize interdependencies between modules
- **Clear Interfaces**: Define clean contracts between components and layers
### Performance
- [Performance requirements]
### Security
- [Security requirements]
### Reliability
- [Reliability requirements]
### Usability
- [Usability requirements]

View File

@@ -0,0 +1,145 @@
# Project Structure
## Directory Organization
```
[Define your project's directory structure. Examples below - adapt to your project type]
Example for a library/package:
project-root/
├── src/ # Source code
├── tests/ # Test files
├── docs/ # Documentation
├── examples/ # Usage examples
└── [build/dist/out] # Build output
Example for an application:
project-root/
├── [src/app/lib] # Main source code
├── [assets/resources] # Static resources
├── [config/settings] # Configuration
├── [scripts/tools] # Build/utility scripts
└── [tests/spec] # Test files
Common patterns:
- Group by feature/module
- Group by layer (UI, business logic, data)
- Group by type (models, controllers, views)
- Flat structure for simple projects
```
## Naming Conventions
### Files
- **Components/Modules**: [e.g., `PascalCase`, `snake_case`, `kebab-case`]
- **Services/Handlers**: [e.g., `UserService`, `user_service`, `user-service`]
- **Utilities/Helpers**: [e.g., `dateUtils`, `date_utils`, `date-utils`]
- **Tests**: [e.g., `[filename]_test`, `[filename].test`, `[filename]Test`]
### Code
- **Classes/Types**: [e.g., `PascalCase`, `CamelCase`, `snake_case`]
- **Functions/Methods**: [e.g., `camelCase`, `snake_case`, `PascalCase`]
- **Constants**: [e.g., `UPPER_SNAKE_CASE`, `SCREAMING_CASE`, `PascalCase`]
- **Variables**: [e.g., `camelCase`, `snake_case`, `lowercase`]
## Import Patterns
### Import Order
1. External dependencies
2. Internal modules
3. Relative imports
4. Style imports
### Module/Package Organization
```
[Describe your project's import/include patterns]
Examples:
- Absolute imports from project root
- Relative imports within modules
- Package/namespace organization
- Dependency management approach
```
## Code Structure Patterns
[Define common patterns for organizing code within files. Below are examples - choose what applies to your project]
### Module/Class Organization
```
Example patterns:
1. Imports/includes/dependencies
2. Constants and configuration
3. Type/interface definitions
4. Main implementation
5. Helper/utility functions
6. Exports/public API
```
### Function/Method Organization
```
Example patterns:
- Input validation first
- Core logic in the middle
- Error handling throughout
- Clear return points
```
### File Organization Principles
```
Choose what works for your project:
- One class/module per file
- Related functionality grouped together
- Public API at the top/bottom
- Implementation details hidden
```
## Code Organization Principles
1. **Single Responsibility**: Each file should have one clear purpose
2. **Modularity**: Code should be organized into reusable modules
3. **Testability**: Structure code to be easily testable
4. **Consistency**: Follow patterns established in the codebase
## Module Boundaries
[Define how different parts of your project interact and maintain separation of concerns]
Examples of boundary patterns:
- **Core vs Plugins**: Core functionality vs extensible plugins
- **Public API vs Internal**: What's exposed vs implementation details
- **Platform-specific vs Cross-platform**: OS-specific code isolation
- **Stable vs Experimental**: Production code vs experimental features
- **Dependencies direction**: Which modules can depend on which
## Code Size Guidelines
[Define your project's guidelines for file and function sizes]
Suggested guidelines:
- **File size**: [Define maximum lines per file]
- **Function/Method size**: [Define maximum lines per function]
- **Class/Module complexity**: [Define complexity limits]
- **Nesting depth**: [Maximum nesting levels]
## Dashboard/Monitoring Structure (if applicable)
[How dashboard or monitoring components are organized]
### Example Structure:
```
src/
└── dashboard/ # Self-contained dashboard subsystem
├── server/ # Backend server components
├── client/ # Frontend assets
├── shared/ # Shared types/utilities
└── public/ # Static assets
```
### Separation of Concerns
- Dashboard isolated from core business logic
- Own CLI entry point for independent operation
- Minimal dependencies on main application
- Can be disabled without affecting core functionality
## Documentation Standards
- All public APIs must have documentation
- Complex logic should include inline comments
- README files for major modules
- Follow language-specific documentation conventions

View File

@@ -0,0 +1,139 @@
# Tasks Document
- [ ] 1. Create core interfaces in src/types/feature.ts
- File: src/types/feature.ts
- Define TypeScript interfaces for feature data structures
- Extend existing base interfaces from base.ts
- Purpose: Establish type safety for feature implementation
- _Leverage: src/types/base.ts_
- _Requirements: 1.1_
- _Prompt: Role: TypeScript Developer specializing in type systems and interfaces | Task: Create comprehensive TypeScript interfaces for the feature data structures following requirements 1.1, extending existing base interfaces from src/types/base.ts | Restrictions: Do not modify existing base interfaces, maintain backward compatibility, follow project naming conventions | Success: All interfaces compile without errors, proper inheritance from base types, full type coverage for feature requirements_
- [ ] 2. Create base model class in src/models/FeatureModel.ts
- File: src/models/FeatureModel.ts
- Implement base model extending BaseModel class
- Add validation methods using existing validation utilities
- Purpose: Provide data layer foundation for feature
- _Leverage: src/models/BaseModel.ts, src/utils/validation.ts_
- _Requirements: 2.1_
- _Prompt: Role: Backend Developer with expertise in Node.js and data modeling | Task: Create a base model class extending BaseModel and implementing validation following requirement 2.1, leveraging existing patterns from src/models/BaseModel.ts and src/utils/validation.ts | Restrictions: Must follow existing model patterns, do not bypass validation utilities, maintain consistent error handling | Success: Model extends BaseModel correctly, validation methods implemented and tested, follows project architecture patterns_
- [ ] 3. Add specific model methods to FeatureModel.ts
- File: src/models/FeatureModel.ts (continue from task 2)
- Implement create, update, delete methods
- Add relationship handling for foreign keys
- Purpose: Complete model functionality for CRUD operations
- _Leverage: src/models/BaseModel.ts_
- _Requirements: 2.2, 2.3_
- _Prompt: Role: Backend Developer with expertise in ORM and database operations | Task: Implement CRUD methods and relationship handling in FeatureModel.ts following requirements 2.2 and 2.3, extending patterns from src/models/BaseModel.ts | Restrictions: Must maintain transaction integrity, follow existing relationship patterns, do not duplicate base model functionality | Success: All CRUD operations work correctly, relationships are properly handled, database operations are atomic and efficient_
- [ ] 4. Create model unit tests in tests/models/FeatureModel.test.ts
- File: tests/models/FeatureModel.test.ts
- Write tests for model validation and CRUD methods
- Use existing test utilities and fixtures
- Purpose: Ensure model reliability and catch regressions
- _Leverage: tests/helpers/testUtils.ts, tests/fixtures/data.ts_
- _Requirements: 2.1, 2.2_
- _Prompt: Role: QA Engineer with expertise in unit testing and Jest/Mocha frameworks | Task: Create comprehensive unit tests for FeatureModel validation and CRUD methods covering requirements 2.1 and 2.2, using existing test utilities from tests/helpers/testUtils.ts and fixtures from tests/fixtures/data.ts | Restrictions: Must test both success and failure scenarios, do not test external dependencies directly, maintain test isolation | Success: All model methods are tested with good coverage, edge cases covered, tests run independently and consistently_
- [ ] 5. Create service interface in src/services/IFeatureService.ts
- File: src/services/IFeatureService.ts
- Define service contract with method signatures
- Extend base service interface patterns
- Purpose: Establish service layer contract for dependency injection
- _Leverage: src/services/IBaseService.ts_
- _Requirements: 3.1_
- _Prompt: Role: Software Architect specializing in service-oriented architecture and TypeScript interfaces | Task: Design service interface contract following requirement 3.1, extending base service patterns from src/services/IBaseService.ts for dependency injection | Restrictions: Must maintain interface segregation principle, do not expose internal implementation details, ensure contract compatibility with DI container | Success: Interface is well-defined with clear method signatures, extends base service appropriately, supports all required service operations_
- [ ] 6. Implement feature service in src/services/FeatureService.ts
- File: src/services/FeatureService.ts
- Create concrete service implementation using FeatureModel
- Add error handling with existing error utilities
- Purpose: Provide business logic layer for feature operations
- _Leverage: src/services/BaseService.ts, src/utils/errorHandler.ts, src/models/FeatureModel.ts_
- _Requirements: 3.2_
- _Prompt: Role: Backend Developer with expertise in service layer architecture and business logic | Task: Implement concrete FeatureService following requirement 3.2, using FeatureModel and extending BaseService patterns with proper error handling from src/utils/errorHandler.ts | Restrictions: Must implement interface contract exactly, do not bypass model validation, maintain separation of concerns from data layer | Success: Service implements all interface methods correctly, robust error handling implemented, business logic is well-encapsulated and testable_
- [ ] 7. Add service dependency injection in src/utils/di.ts
- File: src/utils/di.ts (modify existing)
- Register FeatureService in dependency injection container
- Configure service lifetime and dependencies
- Purpose: Enable service injection throughout application
- _Leverage: existing DI configuration in src/utils/di.ts_
- _Requirements: 3.1_
- _Prompt: Role: DevOps Engineer with expertise in dependency injection and IoC containers | Task: Register FeatureService in DI container following requirement 3.1, configuring appropriate lifetime and dependencies using existing patterns from src/utils/di.ts | Restrictions: Must follow existing DI container patterns, do not create circular dependencies, maintain service resolution efficiency | Success: FeatureService is properly registered and resolvable, dependencies are correctly configured, service lifetime is appropriate for use case_
- [ ] 8. Create service unit tests in tests/services/FeatureService.test.ts
- File: tests/services/FeatureService.test.ts
- Write tests for service methods with mocked dependencies
- Test error handling scenarios
- Purpose: Ensure service reliability and proper error handling
- _Leverage: tests/helpers/testUtils.ts, tests/mocks/modelMocks.ts_
- _Requirements: 3.2, 3.3_
- _Prompt: Role: QA Engineer with expertise in service testing and mocking frameworks | Task: Create comprehensive unit tests for FeatureService methods covering requirements 3.2 and 3.3, using mocked dependencies from tests/mocks/modelMocks.ts and test utilities | Restrictions: Must mock all external dependencies, test business logic in isolation, do not test framework code | Success: All service methods tested with proper mocking, error scenarios covered, tests verify business logic correctness and error handling_
- [ ] 4. Create API endpoints
- Design API structure
- _Leverage: src/api/baseApi.ts, src/utils/apiUtils.ts_
- _Requirements: 4.0_
- _Prompt: Role: API Architect specializing in RESTful design and Express.js | Task: Design comprehensive API structure following requirement 4.0, leveraging existing patterns from src/api/baseApi.ts and utilities from src/utils/apiUtils.ts | Restrictions: Must follow REST conventions, maintain API versioning compatibility, do not expose internal data structures directly | Success: API structure is well-designed and documented, follows existing patterns, supports all required operations with proper HTTP methods and status codes_
- [ ] 4.1 Set up routing and middleware
- Configure application routes
- Add authentication middleware
- Set up error handling middleware
- _Leverage: src/middleware/auth.ts, src/middleware/errorHandler.ts_
- _Requirements: 4.1_
- _Prompt: Role: Backend Developer with expertise in Express.js middleware and routing | Task: Configure application routes and middleware following requirement 4.1, integrating authentication from src/middleware/auth.ts and error handling from src/middleware/errorHandler.ts | Restrictions: Must maintain middleware order, do not bypass security middleware, ensure proper error propagation | Success: Routes are properly configured with correct middleware chain, authentication works correctly, errors are handled gracefully throughout the request lifecycle_
- [ ] 4.2 Implement CRUD endpoints
- Create API endpoints
- Add request validation
- Write API integration tests
- _Leverage: src/controllers/BaseController.ts, src/utils/validation.ts_
- _Requirements: 4.2, 4.3_
- _Prompt: Role: Full-stack Developer with expertise in API development and validation | Task: Implement CRUD endpoints following requirements 4.2 and 4.3, extending BaseController patterns and using validation utilities from src/utils/validation.ts | Restrictions: Must validate all inputs, follow existing controller patterns, ensure proper HTTP status codes and responses | Success: All CRUD operations work correctly, request validation prevents invalid data, integration tests pass and cover all endpoints_
- [ ] 5. Add frontend components
- Plan component architecture
- _Leverage: src/components/BaseComponent.tsx, src/styles/theme.ts_
- _Requirements: 5.0_
- _Prompt: Role: Frontend Architect with expertise in React component design and architecture | Task: Plan comprehensive component architecture following requirement 5.0, leveraging base patterns from src/components/BaseComponent.tsx and theme system from src/styles/theme.ts | Restrictions: Must follow existing component patterns, maintain design system consistency, ensure component reusability | Success: Architecture is well-planned and documented, components are properly organized, follows existing patterns and theme system_
- [ ] 5.1 Create base UI components
- Set up component structure
- Implement reusable components
- Add styling and theming
- _Leverage: src/components/BaseComponent.tsx, src/styles/theme.ts_
- _Requirements: 5.1_
- _Prompt: Role: Frontend Developer specializing in React and component architecture | Task: Create reusable UI components following requirement 5.1, extending BaseComponent patterns and using existing theme system from src/styles/theme.ts | Restrictions: Must use existing theme variables, follow component composition patterns, ensure accessibility compliance | Success: Components are reusable and properly themed, follow existing architecture, accessible and responsive_
- [ ] 5.2 Implement feature-specific components
- Create feature components
- Add state management
- Connect to API endpoints
- _Leverage: src/hooks/useApi.ts, src/components/BaseComponent.tsx_
- _Requirements: 5.2, 5.3_
- _Prompt: Role: React Developer with expertise in state management and API integration | Task: Implement feature-specific components following requirements 5.2 and 5.3, using API hooks from src/hooks/useApi.ts and extending BaseComponent patterns | Restrictions: Must use existing state management patterns, handle loading and error states properly, maintain component performance | Success: Components are fully functional with proper state management, API integration works smoothly, user experience is responsive and intuitive_
- [ ] 6. Integration and testing
- Plan integration approach
- _Leverage: src/utils/integrationUtils.ts, tests/helpers/testUtils.ts_
- _Requirements: 6.0_
- _Prompt: Role: Integration Engineer with expertise in system integration and testing strategies | Task: Plan comprehensive integration approach following requirement 6.0, leveraging integration utilities from src/utils/integrationUtils.ts and test helpers | Restrictions: Must consider all system components, ensure proper test coverage, maintain integration test reliability | Success: Integration plan is comprehensive and feasible, all system components work together correctly, integration points are well-tested_
- [ ] 6.1 Write end-to-end tests
- Set up E2E testing framework
- Write user journey tests
- Add test automation
- _Leverage: tests/helpers/testUtils.ts, tests/fixtures/data.ts_
- _Requirements: All_
- _Prompt: Role: QA Automation Engineer with expertise in E2E testing and test frameworks like Cypress or Playwright | Task: Implement comprehensive end-to-end tests covering all requirements, setting up testing framework and user journey tests using test utilities and fixtures | Restrictions: Must test real user workflows, ensure tests are maintainable and reliable, do not test implementation details | Success: E2E tests cover all critical user journeys, tests run reliably in CI/CD pipeline, user experience is validated from end-to-end_
- [ ] 6.2 Final integration and cleanup
- Integrate all components
- Fix any integration issues
- Clean up code and documentation
- _Leverage: src/utils/cleanup.ts, docs/templates/_
- _Requirements: All_
- _Prompt: Role: Senior Developer with expertise in code quality and system integration | Task: Complete final integration of all components and perform comprehensive cleanup covering all requirements, using cleanup utilities and documentation templates | Restrictions: Must not break existing functionality, ensure code quality standards are met, maintain documentation consistency | Success: All components are fully integrated and working together, code is clean and well-documented, system meets all requirements and quality standards_

View File

@@ -0,0 +1,99 @@
# Technology Stack
## Project Type
[Describe what kind of project this is: web application, CLI tool, desktop application, mobile app, library, API service, embedded system, game, etc.]
## Core Technologies
### Primary Language(s)
- **Language**: [e.g., Python 3.11, Go 1.21, TypeScript, Rust, C++]
- **Runtime/Compiler**: [if applicable]
- **Language-specific tools**: [package managers, build tools, etc.]
### Key Dependencies/Libraries
[List the main libraries and frameworks your project depends on]
- **[Library/Framework name]**: [Purpose and version]
- **[Library/Framework name]**: [Purpose and version]
### Application Architecture
[Describe how your application is structured - this could be MVC, event-driven, plugin-based, client-server, standalone, microservices, monolithic, etc.]
### Data Storage (if applicable)
- **Primary storage**: [e.g., PostgreSQL, files, in-memory, cloud storage]
- **Caching**: [e.g., Redis, in-memory, disk cache]
- **Data formats**: [e.g., JSON, Protocol Buffers, XML, binary]
### External Integrations (if applicable)
- **APIs**: [External services you integrate with]
- **Protocols**: [e.g., HTTP/REST, gRPC, WebSocket, TCP/IP]
- **Authentication**: [e.g., OAuth, API keys, certificates]
### Monitoring & Dashboard Technologies (if applicable)
- **Dashboard Framework**: [e.g., React, Vue, vanilla JS, terminal UI]
- **Real-time Communication**: [e.g., WebSocket, Server-Sent Events, polling]
- **Visualization Libraries**: [e.g., Chart.js, D3, terminal graphs]
- **State Management**: [e.g., Redux, Vuex, file system as source of truth]
## Development Environment
### Build & Development Tools
- **Build System**: [e.g., Make, CMake, Gradle, npm scripts, cargo]
- **Package Management**: [e.g., pip, npm, cargo, go mod, apt, brew]
- **Development workflow**: [e.g., hot reload, watch mode, REPL]
### Code Quality Tools
- **Static Analysis**: [Tools for code quality and correctness]
- **Formatting**: [Code style enforcement tools]
- **Testing Framework**: [Unit, integration, and/or end-to-end testing tools]
- **Documentation**: [Documentation generation tools]
### Version Control & Collaboration
- **VCS**: [e.g., Git, Mercurial, SVN]
- **Branching Strategy**: [e.g., Git Flow, GitHub Flow, trunk-based]
- **Code Review Process**: [How code reviews are conducted]
### Dashboard Development (if applicable)
- **Live Reload**: [e.g., Hot module replacement, file watchers]
- **Port Management**: [e.g., Dynamic allocation, configurable ports]
- **Multi-Instance Support**: [e.g., Running multiple dashboards simultaneously]
## Deployment & Distribution (if applicable)
- **Target Platform(s)**: [Where/how the project runs: cloud, on-premise, desktop, mobile, embedded]
- **Distribution Method**: [How users get your software: download, package manager, app store, SaaS]
- **Installation Requirements**: [Prerequisites, system requirements]
- **Update Mechanism**: [How updates are delivered]
## Technical Requirements & Constraints
### Performance Requirements
- [e.g., response time, throughput, memory usage, startup time]
- [Specific benchmarks or targets]
### Compatibility Requirements
- **Platform Support**: [Operating systems, architectures, versions]
- **Dependency Versions**: [Minimum/maximum versions of dependencies]
- **Standards Compliance**: [Industry standards, protocols, specifications]
### Security & Compliance
- **Security Requirements**: [Authentication, encryption, data protection]
- **Compliance Standards**: [GDPR, HIPAA, SOC2, etc. if applicable]
- **Threat Model**: [Key security considerations]
### Scalability & Reliability
- **Expected Load**: [Users, requests, data volume]
- **Availability Requirements**: [Uptime targets, disaster recovery]
- **Growth Projections**: [How the system needs to scale]
## Technical Decisions & Rationale
[Document key architectural and technology choices]
### Decision Log
1. **[Technology/Pattern Choice]**: [Why this was chosen, alternatives considered]
2. **[Architecture Decision]**: [Rationale, trade-offs accepted]
3. **[Tool/Library Selection]**: [Reasoning, evaluation criteria]
## Known Limitations
[Document any technical debt, limitations, or areas for improvement]
- [Limitation 1]: [Impact and potential future solutions]
- [Limitation 2]: [Why it exists and when it might be addressed]

View File

@@ -0,0 +1,64 @@
# User Templates
This directory allows you to create custom templates that override the default Spec Workflow templates.
## How to Use Custom Templates
1. **Create your custom template file** in this directory with the exact same name as the default template you want to override:
- `requirements-template.md` - Override requirements document template
- `design-template.md` - Override design document template
- `tasks-template.md` - Override tasks document template
- `product-template.md` - Override product steering template
- `tech-template.md` - Override tech steering template
- `structure-template.md` - Override structure steering template
2. **Template Loading Priority**:
- The system first checks this `user-templates/` directory
- If a matching template is found here, it will be used
- Otherwise, the default template from `templates/` will be used
## Example Custom Template
To create a custom requirements template:
1. Create a file named `requirements-template.md` in this directory
2. Add your custom structure, for example:
```markdown
# Requirements Document
## Executive Summary
[Your custom section]
## Business Requirements
[Your custom structure]
## Technical Requirements
[Your custom fields]
## Custom Sections
[Add any sections specific to your workflow]
```
## Template Variables
Templates can include placeholders that will be replaced when documents are created:
- `{{projectName}}` - The name of your project
- `{{featureName}}` - The name of the feature being specified
- `{{date}}` - The current date
- `{{author}}` - The document author
## Best Practices
1. **Start from defaults**: Copy a default template from `../templates/` as a starting point
2. **Keep structure consistent**: Maintain similar section headers for tool compatibility
3. **Document changes**: Add comments explaining why sections were added/modified
4. **Version control**: Track your custom templates in version control
5. **Test thoroughly**: Ensure custom templates work with the spec workflow tools
## Notes
- Custom templates are project-specific and not included in the package distribution
- The `templates/` directory contains the default templates which are updated with each version
- Your custom templates in this directory are preserved during updates
- If a custom template has errors, the system will fall back to the default template

187
data/import-alipay.js Executable file
View File

@@ -0,0 +1,187 @@
const fs = require('fs');
const API_BASE = 'http://localhost:3000/api';
const USER = '猪2';
const CAT = {
餐饮: 5, 交通: 6, 购物: 7, 房租: 8, 水电燃气: 9, 话费: 10,
亚马逊物流费: 11, 亚马逊广告费: 12, 亚马逊货款: 13, 其他支出: 14,
工资: 1, 亚马逊转账: 2, 利息: 3, 其他收入: 4,
};
function parseCSV(text) {
const lines = text.split('\n');
// 找到表头行
let headerIdx = -1;
for (let i = 0; i < lines.length; i++) {
if (lines[i].startsWith('交易时间,')) { headerIdx = i; break; }
}
if (headerIdx === -1) throw new Error('找不到表头');
const records = [];
for (let i = headerIdx + 1; i < lines.length; i++) {
const line = lines[i].trim();
if (!line || line.startsWith('---')) continue;
// 支付宝CSV用逗号分隔但商品说明中可能没有逗号问题支付宝导出格式较规范
const parts = line.split(',');
if (parts.length < 11) continue;
records.push({
time: parts[0].trim(),
txCategory: parts[1].trim(),
counterparty: parts[2].trim(),
account: parts[3].trim(),
product: parts[4].trim(),
direction: parts[5].trim(), // 收/支/不计收支
amount: parseFloat(parts[6].trim()),
payMethod: parts[7].trim(),
status: parts[8].trim(),
orderId: parts[9].trim(),
merchantId: parts[10].trim(),
remark: (parts[11] || '').trim(),
});
}
return records;
}
function classify(r) {
const { txCategory, counterparty, product, direction, status } = r;
const combined = counterparty + product;
// === 余额宝收益 → 利息(收入) ===
if (product.includes('收益发放') && combined.includes('天弘基金')) {
return { type: 'income', id: CAT.利息, note: product };
}
// === 淘宝签到提现 / 芭芭农场 → 利息(收入) ===
if (product.includes('淘宝签到提现') || product.includes('芭芭农场')) {
return { type: 'income', id: CAT.利息, note: product };
}
// === 跳过其他"不计收支"记录 ===
if (direction === '不计收支') {
return null; // 退款、花呗还款、余额宝自动转入等
}
// === 收入 ===
if (direction === '收入') {
if (combined.includes('红包') || combined.includes('火把购')) {
return { type: 'income', id: CAT.其他收入, note: `${counterparty}-${product}` };
}
if (combined.includes('收钱码')) {
return { type: 'income', id: CAT.其他收入, note: `收钱码-${counterparty}` };
}
return { type: 'income', id: CAT.其他收入, note: `${counterparty}-${product}` };
}
// === 支出 ===
// 亚马逊货款
if (product.includes('亚马逊') || (counterparty.includes('郦鸿飞') && product.includes('亚马逊'))) {
return { type: 'expense', id: CAT.亚马逊货款, note: `亚马逊货款-${counterparty}` };
}
// 餐饮
if (txCategory === '餐饮美食') {
return { type: 'expense', id: CAT.餐饮, note: product.length > 30 ? counterparty : product };
}
// 交通
if (txCategory === '交通出行') {
return { type: 'expense', id: CAT.交通, note: `${counterparty}-${product}`.substring(0, 50) };
}
if (product.includes('交通一码通')) {
return { type: 'expense', id: CAT.交通, note: '杭州市民卡交通充值' };
}
// 话费
if (txCategory === '充值缴费' && combined.includes('话费')) {
return { type: 'expense', id: CAT.话费, note: product };
}
// 水电燃气
if (txCategory === '充值缴费' && (combined.includes('国网') || combined.includes('电费') || combined.includes('燃气') || combined.includes('水费'))) {
return { type: 'expense', id: CAT.水电燃气, note: product };
}
// 保险
if (txCategory === '保险') {
return { type: 'expense', id: CAT.其他支出, note: `保险-${product}`.substring(0, 50) };
}
// 转账红包(支出)
if (txCategory === '转账红包' && direction === '支出') {
if (combined.includes('亚马逊')) {
return { type: 'expense', id: CAT.亚马逊货款, note: `亚马逊货款-${counterparty}` };
}
return { type: 'expense', id: CAT.其他支出, note: `转账-${counterparty}-${product}`.substring(0, 50) };
}
// 购物类(日用百货/服饰/家居/数码/运动/美容/宠物/母婴/文化休闲/信用借还以外的充值缴费)
const shoppingCategories = ['日用百货', '服饰装扮', '家居家装', '数码电器', '运动户外', '美容美发', '宠物', '母婴亲子', '文化休闲'];
if (shoppingCategories.includes(txCategory)) {
return { type: 'expense', id: CAT.购物, note: product.length > 40 ? counterparty : product.substring(0, 40) };
}
// 兜底
return { type: 'expense', id: CAT.其他支出, note: `${txCategory}-${counterparty}-${product}`.substring(0, 50) };
}
async function main() {
const buf = fs.readFileSync('支付宝交易明细(20260101-20260321).csv');
const text = new TextDecoder('gbk').decode(buf);
const rawRecords = parseCSV(text);
console.log(`共解析 ${rawRecords.length} 条原始记录`);
const toImport = [];
let skipped = 0;
for (const r of rawRecords) {
// 跳过金额为0
if (r.amount === 0 || isNaN(r.amount)) { skipped++; continue; }
// 跳过交易关闭
if (r.status === '交易关闭') { skipped++; continue; }
const result = classify(r);
if (!result) { skipped++; continue; } // 不计收支被跳过
const date = r.time.substring(0, 10); // YYYY-MM-DD
toImport.push({
date,
type: result.type,
category_id: result.id,
amount: r.amount,
note: result.note,
user: USER,
});
}
console.log(`需导入 ${toImport.length} 条,跳过 ${skipped}\n`);
let success = 0, fail = 0;
for (let i = 0; i < toImport.length; i++) {
const r = toImport[i];
try {
const res = await fetch(`${API_BASE}/records`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(r),
});
if (res.ok) {
success++;
const label = r.type === 'income' ? '收入' : '支出';
console.log(`[${i + 1}/${toImport.length}] OK ${r.date} ${label} ¥${r.amount} ${r.note}`);
} else {
fail++;
const err = await res.json();
console.log(`[${i + 1}/${toImport.length}] FAIL ${r.date} ¥${r.amount} - ${err.error}`);
}
} catch (e) {
fail++;
console.log(`[${i + 1}/${toImport.length}] FAIL ${r.date} ¥${r.amount} - ${e.message}`);
}
}
console.log(`\n导入完成!成功: ${success}, 失败: ${fail}`);
}
main().catch(console.error);

148
data/import-wechat.js Executable file
View File

@@ -0,0 +1,148 @@
const XLSX = require('xlsx');
const API_BASE = 'http://localhost:3000/api';
const USER = '猪2';
// 分类ID映射
const CAT = {
// 支出
餐饮: 5, 交通: 6, 购物: 7, 房租: 8, 水电燃气: 9, 话费: 10,
亚马逊物流费: 11, 亚马逊广告费: 12, 亚马逊货款: 13, 其他支出: 14,
// 收入
工资: 1, 亚马逊转账: 2, 利息: 3, 其他收入: 4,
};
// Excel序列号转日期
function excelDateToStr(serial) {
const utcDays = Math.floor(serial - 25569);
const d = new Date(utcDays * 86400 * 1000);
const y = d.getUTCFullYear();
const m = String(d.getUTCMonth() + 1).padStart(2, '0');
const day = String(d.getUTCDate()).padStart(2, '0');
return `${y}-${m}-${day}`;
}
// 根据交易对方和商品智能分类
function classify(row) {
const counterparty = (row[2] || '').toString();
const product = (row[3] || '').toString();
const direction = (row[4] || '').toString(); // 收/支
const status = (row[7] || '').toString();
const txType = (row[1] || '').toString();
const isIncome = direction === '收入';
const combined = counterparty + product;
if (isIncome) {
// 收入分类
if (txType.includes('退款')) {
return { id: CAT.其他收入, note: `${counterparty}退款` };
}
if (txType.includes('红包') || combined.includes('红包')) {
return { id: CAT.其他收入, note: `微信红包-${counterparty}` };
}
return { id: CAT.其他收入, note: counterparty };
}
// 支出分类
// 交通
if (combined.includes('12306') || combined.includes('中铁网络')) {
return { id: CAT.交通, note: '12306火车票' };
}
if (combined.includes('货拉拉')) {
return { id: CAT.交通, note: `货拉拉-${product}` };
}
// 餐饮
if (combined.includes('肯德基') || combined.includes('KFC')) {
return { id: CAT.餐饮, note: '肯德基' };
}
if (combined.includes('美团') || combined.includes('大众点评')) {
return { id: CAT.餐饮, note: `美团-${counterparty}` };
}
if (combined.includes('菜馆') || combined.includes('米线') || combined.includes('羊肉')
|| combined.includes('餐') || combined.includes('饭') || combined.includes('食')
|| combined.includes('厨') || combined.includes('锅')) {
return { id: CAT.餐饮, note: counterparty };
}
if (counterparty.includes('农夫山泉')) {
return { id: CAT.餐饮, note: '农夫山泉饮用水' };
}
if (combined.includes('腐乳') || combined.includes('杨伯雪')) {
return { id: CAT.餐饮, note: `${counterparty}-转账购买` };
}
// 购物
if (combined.includes('拼多多')) {
return { id: CAT.购物, note: `拼多多-${product}` };
}
if (combined.includes('山姆') || combined.includes('Sams')) {
return { id: CAT.购物, note: '山姆会员商店' };
}
// 其他支出(带具体备注)
if (combined.includes('丰巢') || combined.includes('寄件')) {
return { id: CAT.其他支出, note: `快递寄件-${counterparty}` };
}
if (combined.includes('淘宝退货') || combined.includes('退货')) {
return { id: CAT.其他支出, note: '淘宝退货运费' };
}
if (combined.includes('文化') || combined.includes('地图') || combined.includes('门票')) {
return { id: CAT.其他支出, note: `旅游/门票-${counterparty}` };
}
if (counterparty.includes('倾城山')) {
return { id: CAT.其他支出, note: '景点门票-倾城山' };
}
// 兜底
return { id: CAT.其他支出, note: `${counterparty}-${product}` };
}
async function main() {
const wb = XLSX.readFile('微信支付账单流水文件(20260101-20260321).xlsx');
const ws = wb.Sheets[wb.SheetNames[0]];
const data = XLSX.utils.sheet_to_json(ws, { header: 1 });
const records = [];
for (let i = 18; i < data.length; i++) {
const row = data[i];
if (!row || row.length < 6) continue;
const dateStr = excelDateToStr(row[0]);
const direction = (row[4] || '').toString();
const amount = parseFloat(row[5]);
const type = direction === '收入' ? 'income' : 'expense';
const { id: category_id, note } = classify(row);
records.push({ date: dateStr, type, category_id, amount, note, user: USER });
}
console.log(`共解析 ${records.length} 条记录,开始导入...\n`);
let success = 0, fail = 0;
for (let i = 0; i < records.length; i++) {
const r = records[i];
try {
const res = await fetch(`${API_BASE}/records`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(r),
});
if (res.ok) {
success++;
console.log(`[${i + 1}/${records.length}] ✓ ${r.date} ${r.type === 'income' ? '收入' : '支出'} ¥${r.amount} ${r.note}`);
} else {
fail++;
const err = await res.json();
console.log(`[${i + 1}/${records.length}] ✗ ${r.date} ¥${r.amount} - ${err.error}`);
}
} catch (e) {
fail++;
console.log(`[${i + 1}/${records.length}] ✗ ${r.date} ¥${r.amount} - ${e.message}`);
}
}
console.log(`\n导入完成!成功: ${success}, 失败: ${fail}`);
}
main().catch(console.error);

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,314 @@
------------------------------------------------------------------------------------
导出信息:
姓名:郦红影
支付宝账户18856303932
起始时间:[2026-01-01 00:00:00] 终止时间:[2026-03-21 23:59:59]
导出交易类型:[全部]
导出时间:[2026-03-21 18:47:08]
共289笔记录
收入10笔 152.21元
支出170笔 39439.13元
不计收支109笔 7786.33元
特别提示:
1.本回单内容可表明支付宝受理了相应支付交易申请,因系统原因或通讯故障等偶发因素导致本回单与实际交易结果不符时,以实际交易情况为准;
2.请勿将本回单作为收款方发货的凭据使用,请查证账户实际到账情况后再进行发货操作;
3.支付宝快捷支付等非余额支付方式可能既产生支付宝交易也同步产生银行交易,因此请勿使用本回单进行重复记账;
4.本回单如经任何涂改、编造,均立即失去效力;
5.部分账单如:充值提现、账户转存或者个人设置收支等不计入为收入或者支出,记为不计收支类;
6.因统计逻辑不同,明细金额直接累加后,可能会和下方统计金额不一致,请以实际交易金额为准;
7.禁止将本回单用于非法用途;
8.本明细仅展示当前账单中的交易,不包括已删除的记录;
9.本明细仅供个人对账使用。
------------------------支付宝支付科技有限公司 电子客户回单------------------------
交易时间,交易分类,交易对方,对方账号,商品说明,收/支,金额,收/付款方式,交易状态,交易订单号,商家订单号,备注,
2026-03-21 05:55:20,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.20-收益发放,不计收支,3.39,余额宝,交易成功,20260321311765750561 , ,,
2026-03-20 13:29:14,日用百货,爱尔**店,155***@sohu.com,【活动价】爱尔奇氧化酶小白鞋边去黄鞋子发黄去氧化还原剂粉洗白鞋神器清洗,支出,13.20,余额宝,支付成功,20260320300000005485561214226171 ,T200P4502112950122009820 ,,
2026-03-20 04:57:27,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.19-收益发放,不计收支,3.12,余额宝,交易成功,20260320305008748561 , ,,
2026-03-19 22:40:34,日用百货,co**店,cor***@163.com,【百亿】corou乳霜纸婴儿保湿柔纸巾云柔巾鼻子纸宝宝专用便携装,支出,0.00,,支付成功,2026031922001185561446932831 ,T200P4502183976005009820 ,,
2026-03-19 05:07:47,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.18-收益发放,不计收支,3.16,余额宝,交易成功,20260319394235545561 , ,,
2026-03-18 17:56:00,餐饮美食,盒马,shh***@163.com,盒马工坊 卤鸭翅中(黑鸭风味) 160g等多件,支出,60.10,余额宝,交易成功,2026031822001185561443035219 ,T200P4502167275044009820 ,,
2026-03-18 09:00:30,服饰装扮,海澜**店,qdp***@163.com,海澜之家皮带男士真皮腰带2026新款高档正品牛皮商务潮年轻人裤带,支出,0.00,,支付成功,2026031822001185561441553223 ,T200P4502168317035009820 ,,
2026-03-18 05:47:29,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.17-收益发放,不计收支,3.14,余额宝,交易成功,20260318388398497561 , ,,
2026-03-17 06:02:35,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.16-收益发放,不计收支,3.13,余额宝,交易成功,20260317383084166561 , ,,
2026-03-16 16:30:14,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,8.44,余额宝&红包,交易成功,2026031622001485561434372059 ,94126600004836000083620260316797093408 ,,
2026-03-16 14:56:41,家居家装,木林**馆,n17***@163.com,花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子,支出,14.30,余额宝,等待确认收货,2026031622001185561432409002 ,T200P4502145855016019002 ,,
2026-03-16 14:55:53,退款,木林**馆,n17***@163.com,退款-花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子,不计收支,17.76,余额宝,退款成功,2026031322001185561422728923_4502118638269009820_380081268946034866 ,T200P4502118638269009820 ,,
2026-03-16 05:42:11,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.15-收益发放,不计收支,3.00,余额宝,交易成功,20260316376815264561 , ,,
2026-03-15 17:51:02,日用百货,芙蓉兴盛,152******78,收钱码收款,支出,8.00,余额宝,交易成功,2026031522001485561429283813 ,17735682628722329485567 ,,
2026-03-15 10:37:46,餐饮美食,包大大小吃店,/,西湖区抚生路包达人小吃店,支出,12.50,余额宝,交易成功,2026031523001485561427383047 ,90201705120722075914242026031510374616627403945 ,,
2026-03-15 09:09:27,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,0.07,账户余额,交易成功,20260315019130101000560056104968 ,20260315009130501000560078359000 ,,
2026-03-15 06:13:32,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.14-收益发放,不计收支,3.00,余额宝,交易成功,20260315371290002561 , ,,
2026-03-14 16:24:33,交通出行,南昌轨道交通集团有限公司运营分公司,dt1***@aliyun.com,八一广场站--南昌大桥东,支出,2.00,余额宝,交易成功,2026031422001485561425103545 ,A025795705037006 ,,
2026-03-14 11:47:26,交通出行,南昌轨道交通集团有限公司运营分公司,dt1***@aliyun.com,南昌东站--八一广场站,支出,4.00,余额宝,交易成功,2026031422001485561424774512 ,A02578D82BC28159 ,,
2026-03-14 08:08:40,转账红包,火把购,zz8***@antgroup-inc.com,现金红包-来自火把购,收入,0.07,账户余额,交易成功,20260227200040011100560061980938 ,202603140206383115101304560055304196S ,,
2026-03-14 07:50:00,日用百货,小仓**店,let***@163.com,小仓熊厕所卫生间智能马桶清洗清洁剂洁厕宝挂球挂篮神器洁厕灵,支出,22.90,余额宝,等待确认收货,2026031422001185561422863216 ,T200P4502119501263019002 ,,
2026-03-14 05:17:14,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.13-收益发放,不计收支,3.27,余额宝,交易成功,20260314364468229561 , ,,
2026-03-14 01:14:44,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,10.00,账户余额,交易成功,20260314019130101000560055029766 ,20260314009130501000560077980387 ,,
2026-03-13 21:03:06,家居家装,木林**馆,n17***@163.com,花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子,支出,17.76,余额宝,交易关闭,2026031322001185561422728923 ,T200P4502118638269009820 ,,
2026-03-13 15:49:18,转账红包,淘宝(中国)软件有限公司,/,淘宝签到提现,收入,10.00,,交易成功,20260313020070011550560049706372 ,FP301_8186003442090258 ,,
2026-03-13 05:40:44,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.12-收益发放,不计收支,3.12,余额宝,交易成功,20260313360131379561 , ,,
2026-03-12 12:29:44,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,何文田·白切鸡X卤肉饭(西溪天虹店)外卖订单,支出,19.30,花呗,交易成功,2026031222001185561415282195 ,13120600726031260151819221526 ,,
2026-03-12 05:40:48,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.11-收益发放,不计收支,3.17,余额宝,交易成功,20260312353759216561 , ,,
2026-03-11 15:48:16,数码电器,套**,132******80,线条小狗适用苹果17promax手机壳iPhone16iQOO15华为pura80mate70小米17荣耀500OP,支出,0.00,,支付成功,2026031122001185561413855591 ,T200P4502112770162009820 ,,
2026-03-11 05:46:28,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.10-收益发放,不计收支,3.15,余额宝,交易成功,20260311347580823561 , ,,
2026-03-10 11:58:33,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,0.02,账户余额,交易成功,20260310019130101000560052194912 ,20260310009130501000560075243385 ,,
2026-03-10 11:10:00,日用百货,爱尔**店,155***@sohu.com,【活动价】爱尔奇氧化酶小白鞋边去黄鞋子发黄去氧化还原剂粉洗白鞋神器清洗,支出,0.00,,支付成功,2026031022001185561406779614 ,T200P4502112950122009820 ,,
2026-03-10 10:28:54,家居家装,木林**馆,n17***@163.com,花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子,支出,14.30,余额宝,交易成功,2026031022001185561405552458 ,T200P4502106975103009820 ,,
2026-03-10 09:39:09,日用百货,华东物美西溪欢乐城店1,zfb***@dmall.com,多点订单976818032034,支出,36.30,花呗,交易成功,2026031023001485561404243930 ,19000217731067480000976818032034 ,,
2026-03-10 08:13:39,信用借还,花呗,/,花呗自动还款-2026年03月账单,不计收支,2801.11,余额宝,还款成功,2026031029020999560128569081 , ,,
2026-03-10 04:35:22,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.09-收益发放,不计收支,3.20,余额宝,交易成功,20260310341619072561 , ,,
2026-03-09 18:53:46,日用百货,集美**城,jim***@163.com,厨房壁挂式垃圾桶卫生间柜门悬挂橱柜门花边纸篓家用高颜值收纳桶,支出,2.87,花呗,交易成功,2026030922001185561405014056 ,T200P4502117163094009820 ,,
2026-03-09 12:05:33,转账红包,淘宝(中国)软件有限公司,/,淘宝签到提现,收入,0.02,,交易成功,20260309020070011540560010100358 ,FP301_8163111185840258 ,,
2026-03-09 05:53:19,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.08-收益发放,不计收支,3.10,余额宝,交易成功,20260309336353898561 , ,,
2026-03-08 21:36:20,美容美发,至本**店,121***@qq.com,【活动价】至本特安修护洁面泡 温和清洁水润舒适男女士泡沫洁净慕斯洗面奶,支出,48.40,花呗,交易成功,2026030822001185561403183779 ,T200P4502125585064055012 ,,
2026-03-08 17:40:23,餐饮美食,霖江牛肉小馆,/,美团收银909700210189550470,支出,72.00,花呗,交易成功,2026030822001485561400264448 ,4720180330024764010461368606430262729606261 ,,
2026-03-08 17:29:59,充值缴费,杭州市民卡,hzp***@96225.com,交通一码通充值,支出,50.00,余额宝,交易成功,2026030822001485561402422398 ,833177433759 ,,
2026-03-08 16:53:32,日用百货,罗森便利店,law***@lawson.com.cn,支付宝支付杭州西溪天堂店消费,支出,4.30,花呗,交易成功,2026030822001485561400786503 ,729209424388 ,,
2026-03-08 05:22:38,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.07-收益发放,不计收支,3.10,余额宝,交易成功,20260308329744537561 , ,,
2026-03-07 11:57:07,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,0.02,账户余额,交易成功,20260307019130101000560049751509 ,20260307009130501000560073195519 ,,
2026-03-07 05:00:42,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.06-收益发放,不计收支,3.29,余额宝,交易成功,20260307324413803561 , ,,
2026-03-06 11:38:31,转账红包,淘宝(中国)软件有限公司,/,淘宝签到提现,收入,0.02,,交易成功,20260306020070011530560081974969 ,FP301_8147976340120258 ,,
2026-03-06 05:51:31,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.05-收益发放,不计收支,3.21,余额宝,交易成功,20260306319092836561 , ,,
2026-03-05 23:31:06,充值缴费,国网汇通金财(北京)信息科技有限公司,cui***@sgec.sgcc.com.cn,网上国网,支出,29.99,花呗&支付宝随机抽立减,交易成功,2026030522001485561451315923 ,202603050179551775 ,,
2026-03-05 15:08:24,保险,众安在线财产保险股份有限公司,/,2026.3月保费缴清-宠物医保-**影,支出,34.75,花呗,交易成功,20260305102553010685560064048761 ,26030569385922710619 ,,
2026-03-05 15:06:53,保险,众安在线财产保险股份有限公司,/,2026.3月保费缴清-宠物医保-**影,支出,34.75,花呗,交易成功,20260305102553010685560064153159 ,26030569503407310968 ,,
2026-03-05 11:49:33,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,何文田·白切鸡X卤肉饭(西溪天虹店)外卖订单,支出,18.30,花呗,交易成功,2026030522001185561448595768 ,13110600726030510117286221526 ,,
2026-03-05 05:44:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.04-收益发放,不计收支,3.26,余额宝,交易成功,20260305313048180561 , ,,
2026-03-05 00:49:06,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,100.00,账户余额,交易成功,20260305019130101000560047759934 ,20260305009130501000560071665097 ,,
2026-03-04 13:35:07,转账红包,杭州南锦电子商务有限公司,/,淘宝签到提现,收入,100.00,,交易成功,20260304020070011540560065610549 ,FP301_8141867281630258 ,,
2026-03-04 13:34:53,日用百货,顺兴**店,276***@qq.com,美纹纸胶带美术生专用水彩绘画用美文纸胶布喷漆装修遮蔽专用批发手撕无痕婚房耐高温油漆瓷砖美文贴纸不伤纸,支出,1.87,花呗,支付成功,20260304300000005585561210177863 ,T200P5087184806097036648 ,,
2026-03-04 13:34:45,母婴亲子,沐童**店,380***@qq.com,【活动价】移动门锁扣衣柜推拉门固定器防猫锁防儿童宠物开门开窗神器滑门锁,支出,4.22,花呗,支付成功,20260304300000005585561208195175 ,T200P5083606944911036648 ,,
2026-03-04 13:32:18,宠物,tb**8,135***@163.com,猫玩具自嗨解闷悬挂弹簧兔毛球猫咪自嗨玩具猫玩具球猫咪用品大全,支出,6.90,花呗,支付成功,20260304300000005585561212722331 ,T200P5087789139467036648 ,,
2026-03-04 05:40:25,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.03-收益发放,不计收支,3.22,余额宝,交易成功,20260304307025829561 , ,,
2026-03-03 23:51:39,交通出行,滴滴出行,chu***@didichuxing.com,特惠快车打车-吴师傅-03月03日行程,支出,12.90,花呗,交易成功,2026030323001485561442561088 ,212_202603038581888101737370 ,,
2026-03-03 05:34:17,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.02-收益发放,不计收支,3.20,余额宝,交易成功,20260303399647452561 , ,,
2026-03-02 20:28:19,充值缴费,中国移动,zyd***@163.com,为188****3932话费充值,支出,99.80,余额宝,交易成功,2026030222001485561435512041 ,00552026030220281150451032382108 ,,
2026-03-02 19:13:08,交通出行,滴滴出行,chu***@didichuxing.com,特惠快车打车-余师傅-03月02日行程,支出,13.40,花呗,交易成功,2026030222001485561436691466 ,212_202603028580762201716030 ,,
2026-03-02 13:07:38,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,乔峰小吃·湖南米粉外卖订单,支出,22.80,花呗,交易成功,2026030222001185561437034237 ,13130600726030205706774221526 ,,
2026-03-02 12:46:20,日用百货,天**,tmc***@service.aliyun.com,老管家洗衣机清洗洁剂375g*4盒波轮滚筒洗衣机强力除垢送消毒液,支出,33.80,余额宝,交易成功,2026030222001185561436608937 ,T200P5092334389791036648 ,,
2026-03-02 05:42:40,投资理财,天弘基金管理有限公司,/,余额宝-2026.03.01-收益发放,不计收支,3.13,余额宝,交易成功,20260302394364784561 , ,,
2026-03-01 18:52:00,日用百货,山姆会员商店,mp3***@walmart.com,商品,支出,110.80,花呗,交易成功,2026030123001485561430849792 ,X3239895496463108175X100 ,,
2026-03-01 05:20:45,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.28-收益发放,不计收支,3.14,余额宝,交易成功,20260301382667782561 , ,,
2026-02-28 09:38:17,宠物,tb**8,135***@163.com,猫玩具自嗨解闷悬挂弹簧兔毛球猫咪自嗨玩具猫玩具球猫咪用品大全,支出,0.00,,支付成功,2026022822001185561427577899 ,T200P5087789139467036648 ,,
2026-02-28 05:42:44,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.27-收益发放,不计收支,3.26,余额宝,交易成功,20260228382506950561 , ,,
2026-02-27 18:02:58,日用百货,顺兴**店,276***@qq.com,美纹纸胶带美术生专用水彩绘画用美文纸胶布喷漆装修遮蔽专用批发手撕无痕婚房耐高温油漆瓷砖美文贴纸不伤纸,支出,0.00,,支付成功,2026022722001185561425255663 ,T200P5087184806097036648 ,,
2026-02-27 11:56:31,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,乔峰小吃·湖南米粉外卖订单,支出,22.30,花呗,交易成功,2026022722001185561423074313 ,13110600726022736918530221526 ,,
2026-02-27 05:41:42,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.26-收益发放,不计收支,3.15,余额宝,交易成功,20260227374884799561 , ,,
2026-02-26 22:19:59,服饰装扮,乖才**店,lin***@163.com,【活动价】灰色短袖t恤女2026新款爆款夏季纯棉宽松半袖超好看独特漂亮上衣,不计收支,48.30,,交易关闭,2026022622001185561421512159 ,T200P5085839918759036648 ,,
2026-02-26 12:16:45,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,乔峰小吃·湖南米粉外卖订单,支出,23.22,交通银行信用卡(0315)&交通银行立减金,交易成功,2026022622001185561422075044 ,13120600726022602755647221526 ,,
2026-02-26 12:04:27,服饰装扮,静啦**店,199***@163.com,秋冬花朵鸭嘴夹发夹女2026新款高级感头发抓夹后脑勺一字夹子头饰,支出,4.62,花呗,交易成功,2026022622001185561419508481 ,T200P5084910000396036648 ,,
2026-02-26 04:55:26,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.25-收益发放,不计收支,3.27,余额宝,交易成功,20260226369579641561 , ,,
2026-02-25 16:08:25,母婴亲子,沐童**店,380***@qq.com,【活动价】移动门锁扣衣柜推拉门固定器防猫锁防儿童宠物开门开窗神器滑门锁,支出,0.00,,支付成功,2026022522001185561415762382 ,T200P5083606944911036648 ,,
2026-02-25 15:51:09,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,紫燕百味鸡(杭州东莲街店)外卖订单,支出,33.76,花呗,交易成功,2026022522001185561418297552 ,13150600726022500851053221526 ,,
2026-02-25 15:43:44,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,绝味鸭脖(闲林山水店)外卖订单,支出,35.50,花呗,交易成功,2026022522001185561418573678 ,13150600726022508665491221526 ,,
2026-02-25 15:37:49,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,霸王茶姬(杭州余杭仓南里MEET636店)外卖订单,支出,1.90,花呗,交易成功,2026022522001185561417956776 ,13150600726022506217227221526 ,,
2026-02-25 10:53:09,日用百货,恒品**店,184***@qq.com,一次性手套乳胶丁腈橡胶PVC食品级专用餐饮家务厨房洗碗加厚耐用,支出,39.80,花呗,支付成功,20260225300000004485561215288889 ,T200P5072318101559036648 ,,
2026-02-25 05:00:43,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.24-收益发放,不计收支,3.22,余额宝,交易成功,20260225363003297561 , ,,
2026-02-24 16:00:37,餐饮美食,上海华铁旅客服务有限公司,/,二维码支付,支出,8.00,花呗,交易成功,2026022422001485561414015581 ,20P2088721085226061W03_10500004112126526022431384010H ,,
2026-02-24 10:45:56,日用百货,植护**店,mas***@163.com,植护大包悬挂式抽纸家用餐巾纸面巾纸整箱实惠装宿舍擦手卫生纸巾,支出,4.80,花呗,交易成功,2026022422001185561414565054 ,T200P5081293477384036648 ,,
2026-02-24 10:20:04,日用百货,兴源便利万达总店,/,兴源便利万达总店,支出,11.00,花呗,交易成功,2026022423001485561414934963 ,8012660000489000000000266216926055 ,,
2026-02-24 05:56:47,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.23-收益发放,不计收支,3.21,余额宝,交易成功,20260224357976172561 , ,,
2026-02-23 15:16:59,日用百货,万嘉便利,/,万嘉便利,支出,1.00,花呗,交易成功,2026022322001485561407962352 ,942017092208872157140204038039000082602230238223 ,,
2026-02-23 12:38:08,日用百货,福建博物院文创商店,/,省博店-63172287888012602231238081071,支出,96.00,花呗,交易成功,2026022323001485561407496762 ,7612660000489000000000523074226054 ,,
2026-02-23 05:21:40,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.22-收益发放,不计收支,3.21,余额宝,交易成功,20260223351599880561 , ,,
2026-02-22 23:26:37,餐饮美食,川悦海鲜集市火锅仓山万达店,/,川悦海鲜集市火锅(仓山万达店),支出,6.00,花呗,交易成功,2026022222001485561403675235 ,112017092208872157140206029129002052602220020913 ,,
2026-02-22 23:26:11,餐饮美食,川悦海鲜集市火锅仓山万达店,/,川悦海鲜集市火锅(仓山万达店),支出,463.08,余额宝,交易成功,2026022222001485561406488051 ,372017092208872157140206029129002082602220019183 ,,
2026-02-22 07:23:54,运动户外,吴老头手工鱼丸,185******13,经营码交易,支出,56.00,花呗,交易成功,2026022222001485561405320595 ,17717162333722329485567 ,,
2026-02-22 05:54:40,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.21-收益发放,不计收支,3.22,余额宝,交易成功,20260222346590562561 , ,,
2026-02-21 12:27:09,运动户外,吴老头手工鱼丸,185******13,经营码交易,支出,15.00,花呗,交易成功,2026022122001485561402612482 ,17716480286722329485567 ,,
2026-02-21 12:25:02,餐饮美食,海鲜水产,/,海鲜水产,支出,45.00,花呗,交易成功,2026022122001485561402764914 ,26126600001417390030310202602211225AC031170 ,,
2026-02-21 12:17:22,运动户外,吴老头手工鱼丸,185******13,经营码交易,支出,33.00,花呗,交易成功,2026022122001485561401035993 ,17716474411722329485567 ,,
2026-02-21 05:28:32,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.20-收益发放,不计收支,3.22,余额宝,交易成功,20260221341405464561 , ,,
2026-02-20 13:54:51,日用百货,丽水服务区(南区),cic***@163.com,浙江高速商贸-消费,支出,20.00,花呗,交易成功,2026022022001485561458700965 ,G0086260220135454 ,,
2026-02-20 09:42:30,服饰装扮,乖才**店,lin***@163.com,【活动价】灰色短袖t恤女2026新款爆款夏季纯棉宽松半袖超好看独特漂亮上衣,支出,59.90,花呗,交易成功,2026022022001185561458194406 ,T200P5076116642983036648 ,,
2026-02-20 05:41:44,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.19-收益发放,不计收支,3.22,余额宝,交易成功,20260220335254981561 , ,,
2026-02-19 15:01:42,退款,乔朋**店,qps***@163.com,退款-【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶,不计收支,11.40,花呗,退款成功,2026021822001185561451051360_5074439403775036648_376836051426034866 ,T200P5074439403775036648 ,,
2026-02-19 05:19:23,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.18-收益发放,不计收支,3.22,余额宝,交易成功,20260219330278282561 , ,,
2026-02-18 14:41:57,餐饮美食,**平,134******53,收钱码收款,支出,12.50,花呗,交易成功,2026021822001485561450689354 ,17713969171722329485567 ,,
2026-02-18 12:48:26,日用百货,梦创**店,bdw***@163.com,砂锅炖锅家用燃气耐高温干烧煲仔饭煤气灶专用陶瓷煲汤锅商用沙锅,支出,33.44,余额宝,支付成功,20260218300000005285561228788334 ,T200P5060400519030036648 ,,
2026-02-18 10:53:10,数码电器,乔朋**店,qps***@163.com,【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶,支出,11.40,花呗,交易关闭,2026021822001185561451051360 ,T200P5074439403775036648 ,,
2026-02-18 10:51:46,退款,乔朋**店,qps***@163.com,退款-【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶,不计收支,11.40,花呗,退款成功,2026021822001185561449209053_5074850161943036648 ,T200P5074850161943036648 ,,
2026-02-18 10:45:52,数码电器,乔朋**店,qps***@163.com,【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶,支出,11.40,花呗,交易关闭,2026021822001185561449209053 ,T200P5074850161943036648 ,,
2026-02-18 10:35:22,日用百货,万家福超市,188******38,收钱码收款,支出,260.00,余额宝,交易成功,2026021822001485561449630338 ,17713821215722329485567 ,,
2026-02-18 05:52:19,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.17-收益发放,不计收支,3.22,余额宝,交易成功,20260218323977091561 , ,,
2026-02-17 16:37:39,日用百货,陈永成,www***@qq.com,收钱码收款,支出,246.00,花呗,交易成功,2026021722001485561446184616 ,17713174593722329485567 ,,
2026-02-17 05:53:27,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.16-收益发放,不计收支,3.22,余额宝,交易成功,20260217318455468561 , ,,
2026-02-16 15:59:27,日用百货,啊敏的店,138******18,经营码交易,支出,50.00,花呗,交易成功,2026021622001485561441923265 ,17712287669722329485567 ,,
2026-02-16 06:01:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.15-收益发放,不计收支,3.22,余额宝,交易成功,20260216313290084561 , ,,
2026-02-15 19:15:56,日用百货,啊敏的店,138******18,经营码交易,支出,500.00,花呗,交易成功,2026021522001485561438706014 ,17711541556722329485567 ,,
2026-02-15 06:10:40,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.14-收益发放,不计收支,3.22,余额宝,交易成功,20260215308510239561 , ,,
2026-02-15 01:53:33,日用百货,恒品**店,184***@qq.com,一次性手套乳胶丁腈橡胶PVC食品级专用餐饮家务厨房洗碗加厚耐用,支出,0.00,,支付成功,2026021522001185561437005608 ,T200P5072318101559036648 ,,
2026-02-14 15:31:40,交通出行,永康市公共交通有限公司,694***@qq.com,K7路-2026-02-14 15:31:30,支出,1.50,花呗,交易成功,2026021422001485561434940187 ,2602142109905761 ,,
2026-02-14 05:06:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.13-收益发放,不计收支,3.22,余额宝,交易成功,20260214302125126561 , ,,
2026-02-13 19:04:45,餐饮美食,司乎?日式鲜吐司(西嘉广场店),/,美团收银909700209492943490,支出,57.54,花呗&红包,交易成功,2026021323001485561430157853 ,8820180330024764010461368606385308555904422 ,,
2026-02-13 18:20:38,日用百货,山姆会员商店,mp3***@walmart.com,商品,支出,143.70,花呗,交易成功,2026021322001485561431007090 ,X3216671195886918735X100 ,,
2026-02-13 13:15:54,转账红包,郦鸿飞(郦鸿飞),462***@qq.com,亚马逊,支出,29502.00,中国银行储蓄卡(8029)&中国银行立减金,交易成功,20260213200040011100560050895958 , ,,
2026-02-13 09:15:02,家居家装,十色**店,177***@163.com,吐司专用保鲜盒面包馒头收纳盒冰箱冷藏盒食品储存密封盒子带盖,支出,28.00,花呗,支付成功,20260213300000003885561242292263 ,T200P5050444212108036648 ,,
2026-02-13 05:54:27,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.12-收益发放,不计收支,6.42,余额宝,交易成功,20260213395638154561 , ,,
2026-02-12 19:38:49,餐饮美食,荆九爷爆炒桥头三嫩(未来科技城店),/,美团收银909700209463114232,支出,183.00,花呗,交易成功,2026021222001485561426755696 ,3820180330024764010461368606383300376207333 ,,
2026-02-12 18:57:32,餐饮美食,嵊州小吃三维未来店,/,嵊州小吃三维未来店,支出,8.54,花呗&红包,交易成功,2026021223001485561427824306 ,9012660000483300037895211731538363 ,,
2026-02-12 11:45:26,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,17.00,账户余额,交易成功,20260212019130101000560032853213 ,20260212009130501000560056429797 ,,
2026-02-12 10:11:07,保险,众安在线财产保险股份有限公司,/,2026.2月保费缴清-宠物医保-**影,支出,34.08,花呗,交易成功,20260212102553010485560083601385 ,202602121100300709430131529571 ,,
2026-02-12 10:10:58,保险,众安在线财产保险股份有限公司,/,2026.2月保费缴清-宠物医保-**影,支出,34.08,花呗,交易成功,20260212102553010485560083744895 ,202602121100300702370129963572 ,,
2026-02-12 05:39:47,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.11-收益发放,不计收支,3.12,余额宝,交易成功,20260212389471487561 , ,,
2026-02-12 01:05:00,数码电器,二三十,243***@qq.com,收钱码收款,支出,0.20,余额宝&红包,交易成功,2026021222001485561422752057 ,47708295003722329485567 ,,
2026-02-12 01:01:32,收入,**泓,243***@qq.com,收钱码收款,收入,17.00,,交易成功,2026021222001466391430123271 ,47708292923802313866391 ,,
2026-02-11 05:47:18,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.10-收益发放,不计收支,3.29,余额宝,交易成功,20260211382413286561 , ,,
2026-02-10 14:00:46,服饰装扮,刘杰**4,241***@qq.com,LITIANDI 美拉德边斜辑牛仔裤男宽松直筒潮牌加绒加厚裤子男秋冬,支出,151.63,花呗,支付成功,20260210300000005785561217051473 ,T200P5045163123420036648 ,,
2026-02-10 11:46:14,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,霸王茶姬(杭州闲林七彩汇店)外卖订单,支出,0.50,花呗,交易成功,2026021022001185561418162559 ,13110600726021069985831221526 ,,
2026-02-10 11:45:51,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,5.00,账户余额,交易成功,20260210019130101000560031517534 ,20260210009130501000560054818802 ,,
2026-02-10 11:16:08,信用借还,花呗,/,花呗自动还款-2026年02月账单,不计收支,1688.16,余额宝,还款成功,2026021029020999560163345553 , ,,
2026-02-10 05:38:31,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.09-收益发放,不计收支,3.38,余额宝,交易成功,20260210377012517561 , ,,
2026-02-09 19:22:48,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,36.00,花呗,交易成功,2026020922001485561412555184 ,79126600004836000083620260209317749549 ,,
2026-02-09 13:32:11,日用百货,华东物美西溪欢乐城店1,zfb***@dmall.com,多点订单968831536034,支出,9.71,花呗&红包,交易成功,2026020923001485561412408658 ,19000217706151300000968831536034 ,,
2026-02-09 13:13:22,收入,**洋,153******65,收钱码收款,收入,5.00,,交易成功,2026020922001436901418764000 ,47706140024152335536908 ,,
2026-02-09 05:44:38,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.08-收益发放,不计收支,3.19,余额宝,交易成功,20260209370515014561 , ,,
2026-02-08 20:24:44,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,13.10,花呗,交易成功,2026020822001485561409511373 ,90126600004836000083620260208305023501 ,,
2026-02-08 19:43:29,餐饮美食,西北牛肉面,176******28,经营码交易,支出,16.00,余额宝,交易成功,2026020822001485561407325558 ,17705510087722329485567 ,,
2026-02-08 14:42:31,退款,ai**n,hui***@163.com,退款-HUIXI绘系 高领德绒长袖T恤女2025秋冬新款百搭简约内搭打底上衣,不计收支,73.75,余额宝,退款成功,2026020522001185561455801798_5054272023069036648_advance ,T200P5054272023069036648 ,,
2026-02-08 14:36:48,退款,欧茹**店,our***@163.com,退款-【优惠价】老钱风灰色高领中长款毛衣女遮屁股上衣冬季宽松慵懒加厚针织内搭,不计收支,103.98,余额宝,退款成功,2026020522001185561455415126_5054272023068036648_advance ,T200P5054272023068036648 ,,
2026-02-08 14:36:12,退款,ma**1,yuh***@163.com,退款-重磅推出100%纯羊毛定纺针织打底衫上衣内搭毛衣纯色秋冬女高级,不计收支,87.08,余额宝,退款成功,2026020522001185561453696800_5054272023066036648_advance ,T200P5054272023066036648 ,,
2026-02-08 14:35:33,退款,伊索**店,yis***@163.com,退款-【优惠价】黑色短裤女秋冬2025新款高腰显瘦小个子春秋辣妹打底靴裤性感热裤,不计收支,30.01,余额宝,退款成功,2026020522001185561455027993_5054272023061036648_advance ,T200P5054272023061036648 ,,
2026-02-08 13:04:52,日用百货,沃尔玛(浙江)百货有限公司,mp4***@walmart.com,杭州西溪山姆会员商店,支出,168.90,余额宝,交易成功,2026020823001485561408458655 ,806001480809177052706098995 ,,
2026-02-08 12:25:59,餐饮美食,煮物_创造美食创造快乐,/,煮物西溪印象城店,支出,35.00,花呗,交易成功,2026020823001485561407181865 ,59126600004836000083620260208690788804 ,,
2026-02-08 10:50:53,日用百货,梦创**店,bdw***@163.com,砂锅炖锅家用燃气耐高温干烧煲仔饭煤气灶专用陶瓷煲汤锅商用沙锅,支出,0.00,,支付成功,2026020822001185561407944138 ,T200P5060400519030036648 ,,
2026-02-08 10:42:38,服饰装扮,朵莲**店,duo***@qq.com,【优惠价】加绒打底裤女外穿秋冬款绒裤秋裤2025新款冬季加厚羊羔绒保暖棉裤 等多件,支出,121.48,余额宝,交易成功,2026020822001185561405995555 ,T200P5060502722606036648 ,,
2026-02-08 10:42:38,运动户外,ex**店,178***@163.com,【优惠价】德国户外徒步登山护膝髌骨带运动女膝盖跑步专业爬山专用关节保护,支出,60.74,余额宝,交易成功,2026020822001185561406331852 ,T200P5060502722609036648 ,,
2026-02-08 10:42:38,服饰装扮,姚**,zjm***@163.com,SW灰色打底裤女秋冬显瘦压力薄裤袜加绒加厚保暖可外穿瘦腿连裤袜 等多件,支出,49.56,余额宝,交易成功,2026020822001185561406632600 ,T200P5060502722603036648 ,,
2026-02-08 06:07:30,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.07-收益发放,不计收支,3.19,余额宝,交易成功,20260208364881532561 , ,,
2026-02-07 20:50:44,日用百货,浙江杭州余杭良睦路美宜佳,511***@qq.com,美宜佳浙01238店,支出,4.50,花呗,交易成功,2026020722001485561403913883 ,af2091cd9aaa449b93f18b37cf880715 ,,
2026-02-07 20:33:43,餐饮美食,司乎?日式鲜吐司(西嘉广场店),/,美团收银909700209290610522,支出,62.00,花呗,交易成功,2026020723001485561403470382 ,9220180330024764010461368606372798845804422 ,,
2026-02-07 05:22:13,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.06-收益发放,不计收支,3.46,余额宝,交易成功,20260207358296989561 , ,,
2026-02-07 00:58:21,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,10.00,账户余额,交易成功,20260207019130101000560028679719 ,20260207009130501000560052505635 ,,
2026-02-06 22:05:21,充值缴费,杭州市民卡,hzp***@96225.com,交通一码通充值,支出,50.00,余额宝,交易成功,2026020622001485561401600189 ,833175585273 ,,
2026-02-06 21:39:32,日用百货,沃尔玛(浙江)百货有限公司,mp4***@walmart.com,杭州西溪山姆会员商店,支出,873.80,余额宝,交易成功,2026020623001485561400880968 ,806001480816177038514053250 ,,
2026-02-06 13:58:01,充值缴费,国网汇通金财(北京)信息科技有限公司,cui***@sgec.sgcc.com.cn,网上国网,支出,99.99,花呗&支付宝随机抽立减,交易成功,2026020622001485561403100049 ,202602060109428338 ,,
2026-02-06 11:57:16,转账红包,淘宝(中国)软件有限公司,/,淘宝签到提现,收入,10.00,,交易成功,20260206020070011530560069122816 ,FP301_8039981466710258 ,,
2026-02-06 05:25:13,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.05-收益发放,不计收支,3.35,余额宝,交易成功,20260206351001793561 , ,,
2026-02-06 01:18:51,转账红包,小猪猪(曹建泓),243***@qq.com,转账,支出,500.00,余额宝,交易成功,20260206200040011100560047528961 , ,,
2026-02-06 01:17:37,投资理财,余额宝,/,余额宝-单次转入,不计收支,99.94,招商银行储蓄卡(4353)&红包,交易成功,20260206019130100010560028180400 ,c20ee74e-9962-45ef-b178-3a39a1f9e283 ,,
2026-02-05 10:47:25,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,甬台温·小海鲜排挡(桃源小镇店)外卖订单,支出,47.40,余额宝,交易成功,2026020522001185561455068243 ,13100600726020593007663221526 ,,
2026-02-05 10:17:12,服饰装扮,ma**1,yuh***@163.com,重磅推出100%纯羊毛定纺针织打底衫上衣内搭毛衣纯色秋冬女高级,支出,87.08,余额宝,交易关闭,2026020522001185561453696800 ,T200P5054272023066036648 ,,
2026-02-05 10:17:12,日用百货,福涵**司,799***@qq.com,316不锈钢泼油小锅家用热油专用神器厨房浇油榨油烧油迷你淋油锅,支出,23.09,余额宝,交易成功,2026020522001185561454444812 ,T200P5054272023071036648 ,,
2026-02-05 10:17:12,服饰装扮,杰哥**举,xie***@qq.com,法式奶奶灰柔软亲肤打底衫女半高领修身内搭毛衣秋冬简约针织上衣,支出,56.13,余额宝,交易成功,2026020522001185561454711508 ,T200P5054272023064036648 ,,
2026-02-05 10:17:12,服饰装扮,恋丽**店,zru***@163.com,【优惠价】灰色毛呢半身裙女春秋冬2026新款高腰显瘦小个子加厚a字包臀短裙,支出,30.12,余额宝,交易成功,2026020522001185561455004020 ,T200P5054272023070036648 ,,
2026-02-05 10:17:12,服饰装扮,伊索**店,yis***@163.com,【优惠价】黑色短裤女秋冬2025新款高腰显瘦小个子春秋辣妹打底靴裤性感热裤,支出,30.01,余额宝,交易关闭,2026020522001185561455027993 ,T200P5054272023061036648 ,,
2026-02-05 10:17:12,服饰装扮,gu**店,guk***@163.com,【优惠价】果壳保暖内衣本命年红品女士2026秋冬新款秋衣女棉毛衫打底内搭,支出,77.72,余额宝,交易成功,2026020522001185561455135712 ,T200P5054272023062036648 ,,
2026-02-05 10:17:12,服饰装扮,捷成**衫,157******45,iiiamX灰色立领高领半拉链麻花针织毛衣女秋冬季套头上衣2025新款,支出,87.79,余额宝,交易成功,2026020522001185561455235413 ,T200P5054272023065036648 ,,
2026-02-05 10:17:12,保险,国泰**司,fin***@cathay-ins.com.cn,保险-买家版运费险-YOLO SHOP 古早辣妹 蝙蝠袖包臀打底短款连衣裙女秋冬气质裙子等,支出,4.40,余额宝,交易成功,2026020522001185561455320502 ,T1100P5054272023073036648 ,,
2026-02-05 10:17:12,服饰装扮,欧茹**店,our***@163.com,【优惠价】老钱风灰色高领中长款毛衣女遮屁股上衣冬季宽松慵懒加厚针织内搭,支出,103.98,余额宝,交易关闭,2026020522001185561455415126 ,T200P5054272023068036648 ,,
2026-02-05 10:17:12,服饰装扮,ai**n,hui***@163.com,HUIXI绘系 高领德绒长袖T恤女2025秋冬新款百搭简约内搭打底上衣,支出,73.75,余额宝,交易关闭,2026020522001185561455801798 ,T200P5054272023069036648 ,,
2026-02-05 10:17:12,日用百货,cl**店,cli***@merry-penguins.com,Cliton电动黑胡椒粉海盐研磨器亚麻籽厨房家用不锈钢研磨自动调料,支出,52.60,余额宝,交易成功,2026020522001185561456304262 ,T200P5054272023072036648 ,,
2026-02-05 10:17:12,服饰装扮,tb**6,159***@163.com,YOLO SHOP 古早辣妹 蝙蝠袖包臀打底短款连衣裙女秋冬气质裙子,支出,180.89,余额宝,交易成功,2026020522001185561456773596 ,T200P5054272023063036648 ,,
2026-02-05 10:17:12,服饰装扮,安悦**店,135***@163.com,【优惠价】深灰色短裤女2025新款秋冬针织小个子显瘦外穿辣妹休闲简约毛衣裤,支出,35.90,余额宝,交易成功,2026020522001185561456816560 ,T200P5054272023060036648 ,,
2026-02-05 10:17:12,服饰装扮,wx**e,186******17,乌77气质百搭高领蝙蝠袖针织衫女2025新款秋通勤收腰显瘦打底上衣,支出,77.18,余额宝,交易成功,2026020522001185561456869225 ,T200P5054272023067036648 ,,
2026-02-05 05:22:39,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.04-收益发放,不计收支,3.36,余额宝,交易成功,20260205345306478561 , ,,
2026-02-04 04:55:40,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.03-收益发放,不计收支,3.29,余额宝,交易成功,20260204338714314561 , ,,
2026-02-03 15:57:40,运动户外,kd**店,ykl***@163.com,【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材,支出,87.00,花呗,支付成功,20260203300000006485561229116149 ,T200P5031347690699036648 ,,
2026-02-03 15:42:02,美容美发,tb**2,190******68,适用小米MEO701 F300冲牙器标准喷头米家洗牙器通用替换喷头喷嘴,支出,6.86,花呗,交易成功,2026020322001185561448577239 ,T200P5051364987952036648 ,,
2026-02-03 15:42:02,日用百货,宝家**店,bjj***@boomjoy.com,【优惠价】宝家洁静电除尘纸拖把一次性吸尘吸灰纸拖地擦墙家用开荒保洁神器,支出,51.15,花呗,交易成功,2026020322001185561449189089 ,T200P5051364987948036648 ,,
2026-02-03 15:42:02,家居家装,巨星**店,jxw***@sina.com,【优惠价】小铲刀清洁刀铲子除胶垢油烟机刮刀刮地美缝保洁清洁厨房油污工具,支出,5.86,花呗,交易成功,2026020322001185561450419083 ,T200P5051364987947036648 ,,
2026-02-03 15:42:02,日用百货,佳帮**店,yil***@163.com,佳帮手玻璃刮墙面刮水器家用刮水板保洁专用工具台面擦刮玻璃神器,支出,9.70,花呗,交易成功,2026020322001185561450544200 ,T200P5051364987949036648 ,,
2026-02-03 15:42:02,日用百货,佳帮**店,duo***@163.com,佳帮手卫生间魔术扫把刮地板刮水器地面刮水神器浴室扫水刮板地刮,支出,19.70,花呗,交易成功,2026020322001185561451199818 ,T200P5051364987950036648 ,,
2026-02-03 15:42:02,日用百货,乐点**店,ykj***@163.com,【优惠价】纳米海绵魔力擦去污神奇魔术擦鞋厨房清洁棉茶杯海绵擦块洗碗神器,支出,10.19,花呗,交易成功,2026020322001185561451227055 ,T200P5051364987951036648 ,,
2026-02-03 04:51:16,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.02-收益发放,不计收支,3.30,余额宝,交易成功,20260203331540545561 , ,,
2026-02-02 20:27:47,家居家装,十色**店,177***@163.com,吐司专用保鲜盒面包馒头收纳盒冰箱冷藏盒食品储存密封盒子带盖,支出,0.00,,支付成功,2026020222001185561445959323 ,T200P5050444212108036648 ,,
2026-02-02 20:23:23,母婴亲子,卡威**店,xsm***@163.com,【优惠价】卡威工程车玩具儿童玩具车套装挖掘机男孩合金搅拌车吊车挖机大号,支出,165.00,余额宝,交易成功,2026020222001185561445088602 ,T200P5050125399665036648 ,,
2026-02-02 20:23:23,文化休闲,影**,986***@qq.com,故宫淘宝|故宫猫笔记本礼盒博物馆文创生日女孩初中女生新年礼物,支出,83.14,余额宝,交易成功,2026020222001185561445391673 ,T200P5050125399670036648 ,,
2026-02-02 20:23:23,服饰装扮,ub**店,you***@ubras.com.cn,ubras本命年红色含羊毛保暖内衣套装男女结婚生肖马新年秋衣秋裤,支出,234.00,余额宝,交易成功,2026020222001185561446654355 ,T200P5050125399669036648 ,,
2026-02-02 20:23:23,日用百货,ec**店,leq***@139.com,ecoco厨房计时器机械做饭定时提醒器学习时间管理闹钟磁吸定时器,支出,25.42,余额宝&优惠,交易成功,2026020222001185561446842946 ,T200P5050125399672036648 ,,
2026-02-02 20:23:23,日用百货,ge**店,s2f***@163.com,丙烯马克笔专用绘画本翻翻乐画本水彩本画画本彩铅手绘速写本随身便携式小本子空白插画填色笔记本图画本成人,支出,12.80,余额宝,交易成功,2026020222001185561447004973 ,T200P5050125399668036648 ,,
2026-02-02 20:23:23,母婴亲子,贵灵**店,264***@qq.com,三丽鸥涂色本库洛米美乐蒂画画本儿童3-6岁临摹本宝宝填色涂鸦本,支出,19.80,余额宝,交易成功,2026020222001185561447417578 ,T200P5050125399667036648 ,,
2026-02-02 20:23:23,日用百货,to**店,sha***@126.com,touchmark油性马克笔美术专用48/60/80色画笔水彩笔大墨王双头专业动漫画笔套装儿童小学生初中生专用马克笔,支出,48.80,余额宝,交易成功,2026020222001185561447499107 ,T200P5050125399671036648 ,,
2026-02-02 20:23:23,服饰装扮,安**,159******18,白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2026新款冬季加厚保暖,支出,336.00,余额宝,交易成功,2026020222001185561447654982 ,T200P5050125399666036648 ,,
2026-02-02 09:01:33,退款,tb**3,153******05,退款-MANCHER 美式复古工装立领黑色羽绒服男潮牌宽松冬季90白鸭绒外套,不计收支,282.13,余额宝,退款成功,2026013122001185561436291131_5045163123421036648_advance ,T200P5045163123421036648 ,,
2026-02-02 08:59:38,退款,安**,159******18,退款-白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2025新款冬季加厚保暖,不计收支,0.00,,退款成功,2026013122001185561433398852_5045163123422036648_advance ,T200P5045163123422036648 ,,
2026-02-02 05:45:24,投资理财,天弘基金管理有限公司,/,余额宝-2026.02.01-收益发放,不计收支,3.26,余额宝,交易成功,20260202326194995561 , ,,
2026-02-01 16:52:39,日用百货,华东物美西溪欢乐城店1,zfb***@dmall.com,多点订单966499834634,支出,109.02,花呗,交易成功,2026020123001485561441688890 ,19000217699359590000966499834634 ,,
2026-02-01 13:18:51,退款,支付宝红包,/,退款-发普通红包,不计收支,500.00,余额宝,退款成功,20260201300002005485561243751092 ,202601310206302239507839560010108151 ,,
2026-02-01 05:36:16,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.31-收益发放,不计收支,3.26,余额宝,交易成功,20260201319078312561 , ,,
2026-01-31 17:39:06,退款,淘宝闪购,ele***@service.aliyun.com,退款-叮咚买菜(五常站),不计收支,0.94,花呗,退款成功,2026013122001185561437496512_13170601326013158902082221526 ,13170600726013163020398221526 ,,
2026-01-31 17:37:19,日用百货,淘宝闪购,ele***@service.aliyun.com,叮咚买菜(五常站),支出,62.93,花呗,交易成功,2026013122001185561437496512 ,13170600726013163020398221526 ,,
2026-01-31 13:13:20,转账红包,支付宝红包,/,发普通红包,支出,500.00,余额宝,交易成功,20260131200040031100560003932271 ,202601310206302239507839560010108151 ,,
2026-01-31 13:08:43,退款,ja**舰,bes***@bestseller.com.cn,退款-[商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006,不计收支,399.00,余额宝,退款成功,2026013122001185561435964563_5045163123419036648 ,T200P5045163123419036648 ,,
2026-01-31 13:07:23,服饰装扮,ja**舰,bes***@bestseller.com.cn,[商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006,支出,366.00,花呗,交易成功,2026013122001185561435078534 ,T200P5045504509354036648 ,,
2026-01-31 13:02:28,服饰装扮,安**,159******18,白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2025新款冬季加厚保暖,支出,0.00,,支付成功,2026013122001185561433398852 ,T200P5045163123422036648 ,,
2026-01-31 13:02:28,服饰装扮,刘杰**4,241***@qq.com,LITIANDI 美拉德边斜辑牛仔裤男宽松直筒潮牌加绒加厚裤子男秋冬,支出,0.00,,支付成功,2026013122001185561435444443 ,T200P5045163123420036648 ,,
2026-01-31 13:02:28,服饰装扮,ja**舰,bes***@bestseller.com.cn,[商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006,支出,399.00,余额宝,交易关闭,2026013122001185561435964563 ,T200P5045163123419036648 ,,
2026-01-31 13:02:28,服饰装扮,yo**6,171******10,GWIT 美式休闲解构切割春秋上衣打底衫套头潮牌长袖圆领卫衣男,支出,160.82,余额宝,交易成功,2026013122001185561435994063 ,T200P5045163123418036648 ,,
2026-01-31 13:02:28,服饰装扮,tb**3,153******05,MANCHER 美式复古工装立领黑色羽绒服男潮牌宽松冬季90白鸭绒外套,支出,282.13,余额宝,交易关闭,2026013122001185561436291131 ,T200P5045163123421036648 ,,
2026-01-31 12:13:40,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,朱阿根烧饼·米线·瘦肉丸(西溪欢乐城店)外卖订单,支出,23.88,花呗,交易成功,2026013122001185561434052242 ,13120600726013141995411221526 ,,
2026-01-31 05:32:20,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.30-收益发放,不计收支,3.49,余额宝,交易成功,20260131312185527561 , ,,
2026-01-30 05:26:12,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.29-收益发放,不计收支,3.40,余额宝,交易成功,20260130306008693561 , ,,
2026-01-29 05:16:17,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.28-收益发放,不计收支,3.41,余额宝,交易成功,20260129399310901561 , ,,
2026-01-28 05:46:23,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.27-收益发放,不计收支,3.31,余额宝,交易成功,20260128394191423561 , ,,
2026-01-27 04:46:35,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.26-收益发放,不计收支,3.31,余额宝,交易成功,20260127387288546561 , ,,
2026-01-26 13:45:51,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,甬台温·小海鲜排挡桃源小镇店外卖订单,支出,60.04,花呗,交易成功,2026012622001185561416789445 ,13130600726012676136603221526 ,,
2026-01-26 13:45:51,餐饮美食,淘宝闪购,pin***@service.alibaba.com,超级吃货卡,支出,0.10,花呗,交易成功,2026012622001185561416977422 ,13130600726012676136604221526 ,,
2026-01-26 05:32:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.25-收益发放,不计收支,3.29,余额宝,交易成功,20260126381262176561 , ,,
2026-01-25 06:02:23,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.24-收益发放,不计收支,3.29,余额宝,交易成功,20260125373833639561 , ,,
2026-01-24 14:43:11,运动户外,kd**店,ykl***@163.com,【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材,支出,0.00,,支付成功,2026012422001185561409738053 ,T200P5031347690699036648 ,,
2026-01-24 14:41:13,退款,kd**店,ykl***@163.com,退款-【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材,不计收支,0.00,,退款成功,2026012422001185561407459527_5031608077586036648 ,T200P5031608077586036648 ,,
2026-01-24 14:40:28,运动户外,kd**店,ykl***@163.com,【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材,支出,0.00,,支付成功,2026012422001185561407459527 ,T200P5031608077586036648 ,,
2026-01-24 05:25:34,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.23-收益发放,不计收支,3.47,余额宝,交易成功,20260124368541123561 , ,,
2026-01-23 12:50:31,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,绝味鸭脖(闲林山水店)外卖订单,支出,36.50,花呗,交易成功,2026012322001185561405277179 ,13120600726012334355127221526 ,,
2026-01-23 05:25:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.22-收益发放,不计收支,3.40,余额宝,交易成功,20260123361898240561 , ,,
2026-01-23 01:19:42,日用百货,山姆会员商店,mp3***@walmart.com,商品,支出,508.60,花呗,交易成功,2026012322001485561402525006 ,X3185202884112433231X100 ,,
2026-01-22 05:21:48,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.21-收益发放,不计收支,3.45,余额宝,交易成功,20260122347340978561 , ,,
2026-01-21 05:28:33,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.20-收益发放,不计收支,3.28,余额宝,交易成功,20260121345697227561 , ,,
2026-01-20 05:31:34,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.19-收益发放,不计收支,3.34,余额宝,交易成功,20260120339428767561 , ,,
2026-01-19 19:34:26,餐饮美食,单羊世家.单县羊肉汤(联胜店),/,美团收银909700208661236511,支出,2.00,花呗,交易成功,2026011922001485561449116269 ,1920180330024764010461368606333826364909406 ,,
2026-01-19 05:29:15,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.18-收益发放,不计收支,3.30,余额宝,交易成功,20260119334252093561 , ,,
2026-01-18 21:56:27,餐饮美食,杭州余杭炎曦餐饮店(个体工商户),/,杭州余杭炎曦餐饮店(个体工商户)-消费,支出,72.00,花呗,交易成功,2026011822001485561443315015 ,1212660000010500020520260118000013442923 ,,
2026-01-18 05:23:19,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.17-收益发放,不计收支,3.30,余额宝,交易成功,20260118327986647561 , ,,
2026-01-17 10:39:09,交通出行,百度平台商家,bds***@baidu.com,百度地图打车,支出,22.00,花呗,交易成功,2026011722001485561438570817 ,2601173385785826 ,,
2026-01-17 05:28:28,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.16-收益发放,不计收支,3.44,余额宝,交易成功,20260117322363149561 , ,,
2026-01-16 05:39:18,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.15-收益发放,不计收支,3.38,余额宝,交易成功,20260116315399996561 , ,,
2026-01-15 17:04:04,退款,淘宝闪购,ele***@service.aliyun.com,退款-叮咚买菜(五常站),不计收支,0.08,中国银行储蓄卡(8029),退款成功,2026011522001185561432725954_13170601326011586633068221526 ,13170600726011517606533221526 ,,
2026-01-15 17:01:39,日用百货,淘宝闪购,ele***@service.aliyun.com,叮咚买菜(五常站),支出,107.78,中国银行储蓄卡(8029)&中国银行立减金,交易成功,2026011522001185561432725954 ,13170600726011517606533221526 ,,
2026-01-15 10:58:18,家居家装,佳立**店,ycy***@163.com,网纱四件套收纳袋换季衣服衣物整理袋衣柜棉被防尘分格带提手储物,支出,33.04,余额宝,交易成功,2026011522001185561429306435 ,T200P5011556619010036648 ,,
2026-01-15 04:54:22,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.14-收益发放,不计收支,3.45,余额宝,交易成功,20260115309652691561 , ,,
2026-01-14 18:42:37,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,20.50,花呗,交易成功,2026011422001485561430676892 ,86126600004836000083620260114974500152 ,,
2026-01-14 14:38:50,充值缴费,国网汇通金财(北京)信息科技有限公司,cui***@sgec.sgcc.com.cn,网上国网,支出,199.98,花呗&支付宝随机抽立减,交易成功,2026011422001485561429254604 ,202601140135549859 ,,
2026-01-14 05:19:36,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.13-收益发放,不计收支,3.30,余额宝,交易成功,20260114303530490561 , ,,
2026-01-13 18:14:38,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,乡村基·新鲜现炒(西溪天虹店)外卖订单,支出,55.90,花呗,交易成功,2026011322001185561427706236 ,13180600726011383901647221526 ,,
2026-01-13 05:33:38,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.12-收益发放,不计收支,3.34,余额宝,交易成功,20260113396573469561 , ,,
2026-01-12 10:12:49,保险,众安在线财产保险股份有限公司,/,2026.1月保费缴清-宠物医保-**影,支出,34.08,花呗,交易成功,20260112102553010485560041953995 ,202601121100300709430121773422 ,,
2026-01-12 10:12:40,保险,众安在线财产保险股份有限公司,/,2026.1月保费缴清-宠物医保-**影,支出,34.08,花呗,交易成功,20260112102553010485560041656904 ,202601121100300702370120277941 ,,
2026-01-12 10:11:25,日用百货,go**店,gdr***@163.com,古迪双头棉签掏耳朵化妆一次性卫生棉棒小细尖头挖耳勺棉花棒专用,支出,5.80,花呗,支付成功,20260112300000004185561233041639 ,T200P4983150639068036648 ,,
2026-01-12 06:03:17,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.11-收益发放,不计收支,3.32,余额宝,交易成功,20260112391598131561 , ,,
2026-01-11 05:40:18,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.10-收益发放,不计收支,3.32,余额宝,交易成功,20260111385986117561 , ,,
2026-01-10 13:26:35,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,14.84,花呗&碰一下立减,交易成功,2026011022001485561408690222 ,17126600004836000083620260110302578694 ,,
2026-01-10 12:27:21,餐饮美食,横板桥农贸市场水果,184******45,经营码交易,支出,19.50,花呗,交易成功,2026011022001485561409611194 ,17680192406722329485567 ,,
2026-01-10 08:29:31,信用借还,花呗,/,花呗自动还款-2026年01月账单,不计收支,1212.75,余额宝,还款成功,2026011029020999560182007932 , ,,
2026-01-10 04:32:45,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.09-收益发放,不计收支,3.45,余额宝,交易成功,20260110378677424561 , ,,
2026-01-09 20:40:01,日用百货,康润华联超市合景轩店,/,康润华联超市合景轩店,支出,4.50,花呗&碰友日立减,交易成功,2026010922001485561404329660 ,88126600004836000083620260109995860363 ,,
2026-01-09 05:42:19,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.08-收益发放,不计收支,3.40,余额宝,交易成功,20260109372672548561 , ,,
2026-01-08 20:55:26,日用百货,植护**店,ahy***@163.com,植护大包悬挂式抽纸整箱批餐巾纸面巾纸家用实惠擦手卫生纸巾厕纸,支出,9.90,花呗,交易成功,2026010822001185561459345152 ,T200P4997684017003036648 ,,
2026-01-08 20:32:39,日用百货,浙江杭州余杭良睦路美宜佳,511***@qq.com,美宜佳浙01238店,支出,4.50,花呗,交易成功,2026010822001485561458169746 ,68158fcfcf474d5f9204615076cf6035 ,,
2026-01-08 19:57:09,餐饮美食,盒马,shh***@163.com,盒马 杭州老面小笼包 500g(20个)等3类商品,支出,41.19,余额宝,交易成功,2026010823001485561401350618 ,P18M6666031260108453529036648 ,,
2026-01-08 05:14:18,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.07-收益发放,不计收支,3.46,余额宝,交易成功,20260108366691748561 , ,,
2026-01-07 05:50:42,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.06-收益发放,不计收支,3.48,余额宝,交易成功,20260107360753807561 , ,,
2026-01-06 23:40:07,运动户外,um**店,you***@umayfit.com,【优惠价】无绳跳绳减肥专用计数绳子负重成人女生专业燃脂健身中考学生跳神,支出,28.89,花呗,交易成功,2026010622001185561451158978 ,T200P4993578759699036648 ,,
2026-01-06 12:59:00,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,甬台温·小海鲜排挡(桃源小镇店)外卖订单,支出,88.40,花呗,交易成功,2026010622001185561453711020 ,13120600726010671459786221526 ,,
2026-01-06 05:05:47,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.05-收益发放,不计收支,3.54,余额宝,交易成功,20260106353700027561 , ,,
2026-01-05 05:27:34,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.04-收益发放,不计收支,3.53,余额宝,交易成功,20260105347013908561 , ,,
2026-01-04 05:53:13,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.03-收益发放,不计收支,3.53,余额宝,交易成功,20260104342036375561 , ,,
2026-01-03 17:19:27,餐饮美食,临安土猪肉,131******82,经营码交易,支出,10.53,花呗&现金抵价券,交易成功,2026010322001485561438140654 ,17674319674722329485567 ,,
2026-01-03 15:50:49,充值缴费,中国移动,zyd***@163.com,为188****3932话费充值,支出,99.95,花呗&花呗立减,交易成功,2026010322001485561439747210 ,00552026010315504297880262463593 ,,
2026-01-03 05:53:39,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.02-收益发放,不计收支,3.53,余额宝,交易成功,20260103335068476561 , ,,
2026-01-03 03:19:47,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,10.00,账户余额,交易成功,20260103019130101000560098151559 ,20260103009130501000560025760927 ,,
2026-01-03 01:58:00,转账红包,淘宝(中国)软件有限公司,/,淘宝签到提现,收入,10.00,,交易成功,20260103020070011500560052380299 ,FP301_7879121951870258 ,,
2026-01-02 15:22:59,餐饮美食,安琪**店,hea***@angelyeast.com,【优惠价】【官方自营】安琪高活性耐高糖型干酵母面包专用发酵粉孝母5g小包,支出,3.14,花呗,支付成功,20260102300000006285561219174963 ,T200P4963323710720036648 ,,
2026-01-02 13:01:41,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,一席地·鸡汤饭·鲜鸡火锅(西溪欢乐城店)外卖订单,支出,21.82,花呗&花呗立减,交易成功,2026010222001185561433883722 ,13130600726010200072388221526 ,,
2026-01-02 05:54:21,投资理财,天弘基金管理有限公司,/,余额宝-2026.01.01-收益发放,不计收支,3.53,余额宝,交易成功,20260102329977863561 , ,,
2026-01-02 02:42:26,投资理财,余额宝,fun***@thfund.com.cn,余额宝-自动转入,不计收支,0.10,账户余额,交易成功,20260102019130101000560097591179 ,20260102009130501000560025289611 ,,
2026-01-02 00:49:51,转账红包,淘宝(中国)软件有限公司,/,淘宝芭芭农场领现金,收入,0.10,,交易成功,20260102020070011500560044023971 ,FP301_7874687192910258 ,,
2026-01-02 00:33:56,日用百货,go**店,gdr***@163.com,古迪双头棉签掏耳朵化妆一次性卫生棉棒小细尖头挖耳勺棉花棒专用,支出,0.00,,支付成功,2026010222001185561428788321 ,T200P4983150639068036648 ,,
2026-01-01 20:59:19,交通出行,杭州地铁,l3g***@hzmetro.com,地铁-全丰-20:59:22-正常行程票款扣费,支出,3.00,花呗,交易成功,2026010122001485561431398194 ,031701162601012059181020000001522662385 ,,
2026-01-01 17:44:37,餐饮美食,蜜雪冰城952618店,/,蜜雪冰城952618店,支出,203.90,花呗,交易成功,2026010122001485561431528326 ,16106600004857000220260101MMav6dua ,,
2026-01-01 13:21:18,餐饮美食,淘宝闪购,e50***@alibaba-inc.com,肥叔锅贴翡翠天地店外卖订单,支出,37.74,花呗&红包&优惠,交易成功,2026010122001185561426636189 ,13130600726010127710100221526 ,,
2026-01-01 13:21:18,餐饮美食,淘宝闪购,pin***@service.alibaba.com,超级吃货卡,支出,0.10,花呗,交易成功,2026010122001185561429822359 ,13130600726010127710101221526 ,,
2026-01-01 05:14:43,投资理财,天弘基金管理有限公司,/,余额宝-2025.12.31-收益发放,不计收支,3.62,余额宝,交易成功,20260101323384752561 , ,,
1 ------------------------------------------------------------------------------------
2 导出信息:
3 姓名:郦红影
4 支付宝账户:18856303932
5 起始时间:[2026-01-01 00:00:00] 终止时间:[2026-03-21 23:59:59]
6 导出交易类型:[全部]
7 导出时间:[2026-03-21 18:47:08]
8 共289笔记录
9 收入:10笔 152.21元
10 支出:170笔 39439.13元
11 不计收支:109笔 7786.33元
12 特别提示:
13 1.本回单内容可表明支付宝受理了相应支付交易申请,因系统原因或通讯故障等偶发因素导致本回单与实际交易结果不符时,以实际交易情况为准;
14 2.请勿将本回单作为收款方发货的凭据使用,请查证账户实际到账情况后再进行发货操作;
15 3.支付宝快捷支付等非余额支付方式可能既产生支付宝交易也同步产生银行交易,因此请勿使用本回单进行重复记账;
16 4.本回单如经任何涂改、编造,均立即失去效力;
17 5.部分账单如:充值提现、账户转存或者个人设置收支等不计入为收入或者支出,记为不计收支类;
18 6.因统计逻辑不同,明细金额直接累加后,可能会和下方统计金额不一致,请以实际交易金额为准;
19 7.禁止将本回单用于非法用途;
20 8.本明细仅展示当前账单中的交易,不包括已删除的记录;
21 9.本明细仅供个人对账使用。
22 ------------------------支付宝支付科技有限公司 电子客户回单------------------------
23 交易时间 交易分类 交易对方 对方账号 商品说明 收/支 金额 收/付款方式 交易状态 交易订单号 商家订单号 备注
24 2026-03-21 05:55:20 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.20-收益发放 不计收支 3.39 余额宝 交易成功 20260321311765750561
25 2026-03-20 13:29:14 日用百货 爱尔**店 155***@sohu.com 【活动价】爱尔奇氧化酶小白鞋边去黄鞋子发黄去氧化还原剂粉洗白鞋神器清洗 支出 13.20 余额宝 支付成功 20260320300000005485561214226171 T200P4502112950122009820
26 2026-03-20 04:57:27 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.19-收益发放 不计收支 3.12 余额宝 交易成功 20260320305008748561
27 2026-03-19 22:40:34 日用百货 co**店 cor***@163.com 【百亿】corou乳霜纸婴儿保湿柔纸巾云柔巾鼻子纸宝宝专用便携装 支出 0.00 支付成功 2026031922001185561446932831 T200P4502183976005009820
28 2026-03-19 05:07:47 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.18-收益发放 不计收支 3.16 余额宝 交易成功 20260319394235545561
29 2026-03-18 17:56:00 餐饮美食 盒马 shh***@163.com 盒马工坊 卤鸭翅中(黑鸭风味) 160g等多件 支出 60.10 余额宝 交易成功 2026031822001185561443035219 T200P4502167275044009820
30 2026-03-18 09:00:30 服饰装扮 海澜**店 qdp***@163.com 海澜之家皮带男士真皮腰带2026新款高档正品牛皮商务潮年轻人裤带 支出 0.00 支付成功 2026031822001185561441553223 T200P4502168317035009820
31 2026-03-18 05:47:29 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.17-收益发放 不计收支 3.14 余额宝 交易成功 20260318388398497561
32 2026-03-17 06:02:35 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.16-收益发放 不计收支 3.13 余额宝 交易成功 20260317383084166561
33 2026-03-16 16:30:14 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 8.44 余额宝&红包 交易成功 2026031622001485561434372059 94126600004836000083620260316797093408
34 2026-03-16 14:56:41 家居家装 木林**馆 n17***@163.com 花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子 支出 14.30 余额宝 等待确认收货 2026031622001185561432409002 T200P4502145855016019002
35 2026-03-16 14:55:53 退款 木林**馆 n17***@163.com 退款-花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子 不计收支 17.76 余额宝 退款成功 2026031322001185561422728923_4502118638269009820_380081268946034866 T200P4502118638269009820
36 2026-03-16 05:42:11 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.15-收益发放 不计收支 3.00 余额宝 交易成功 20260316376815264561
37 2026-03-15 17:51:02 日用百货 芙蓉兴盛 152******78 收钱码收款 支出 8.00 余额宝 交易成功 2026031522001485561429283813 17735682628722329485567
38 2026-03-15 10:37:46 餐饮美食 包大大小吃店 / 西湖区抚生路包达人小吃店 支出 12.50 余额宝 交易成功 2026031523001485561427383047 90201705120722075914242026031510374616627403945
39 2026-03-15 09:09:27 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 0.07 账户余额 交易成功 20260315019130101000560056104968 20260315009130501000560078359000
40 2026-03-15 06:13:32 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.14-收益发放 不计收支 3.00 余额宝 交易成功 20260315371290002561
41 2026-03-14 16:24:33 交通出行 南昌轨道交通集团有限公司运营分公司 dt1***@aliyun.com 八一广场站--南昌大桥东 支出 2.00 余额宝 交易成功 2026031422001485561425103545 A025795705037006
42 2026-03-14 11:47:26 交通出行 南昌轨道交通集团有限公司运营分公司 dt1***@aliyun.com 南昌东站--八一广场站 支出 4.00 余额宝 交易成功 2026031422001485561424774512 A02578D82BC28159
43 2026-03-14 08:08:40 转账红包 火把购 zz8***@antgroup-inc.com 现金红包-来自火把购 收入 0.07 账户余额 交易成功 20260227200040011100560061980938 202603140206383115101304560055304196S
44 2026-03-14 07:50:00 日用百货 小仓**店 let***@163.com 小仓熊厕所卫生间智能马桶清洗清洁剂洁厕宝挂球挂篮神器洁厕灵 支出 22.90 余额宝 等待确认收货 2026031422001185561422863216 T200P4502119501263019002
45 2026-03-14 05:17:14 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.13-收益发放 不计收支 3.27 余额宝 交易成功 20260314364468229561
46 2026-03-14 01:14:44 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 10.00 账户余额 交易成功 20260314019130101000560055029766 20260314009130501000560077980387
47 2026-03-13 21:03:06 家居家装 木林**馆 n17***@163.com 花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子 支出 17.76 余额宝 交易关闭 2026031322001185561422728923 T200P4502118638269009820
48 2026-03-13 15:49:18 转账红包 淘宝(中国)软件有限公司 / 淘宝签到提现 收入 10.00 交易成功 20260313020070011550560049706372 FP301_8186003442090258
49 2026-03-13 05:40:44 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.12-收益发放 不计收支 3.12 余额宝 交易成功 20260313360131379561
50 2026-03-12 12:29:44 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 何文田·白切鸡X卤肉饭(西溪天虹店)外卖订单 支出 19.30 花呗 交易成功 2026031222001185561415282195 13120600726031260151819221526
51 2026-03-12 05:40:48 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.11-收益发放 不计收支 3.17 余额宝 交易成功 20260312353759216561
52 2026-03-11 15:48:16 数码电器 套** 132******80 线条小狗适用苹果17promax手机壳iPhone16iQOO15华为pura80mate70小米17荣耀500OP 支出 0.00 支付成功 2026031122001185561413855591 T200P4502112770162009820
53 2026-03-11 05:46:28 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.10-收益发放 不计收支 3.15 余额宝 交易成功 20260311347580823561
54 2026-03-10 11:58:33 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 0.02 账户余额 交易成功 20260310019130101000560052194912 20260310009130501000560075243385
55 2026-03-10 11:10:00 日用百货 爱尔**店 155***@sohu.com 【活动价】爱尔奇氧化酶小白鞋边去黄鞋子发黄去氧化还原剂粉洗白鞋神器清洗 支出 0.00 支付成功 2026031022001185561406779614 T200P4502112950122009820
56 2026-03-10 10:28:54 家居家装 木林**馆 n17***@163.com 花架置物架实木碳化阶梯多层阳台落地防腐木室内户外绿萝花盆架子 支出 14.30 余额宝 交易成功 2026031022001185561405552458 T200P4502106975103009820
57 2026-03-10 09:39:09 日用百货 华东物美西溪欢乐城店1 zfb***@dmall.com 多点订单:976818032034 支出 36.30 花呗 交易成功 2026031023001485561404243930 19000217731067480000976818032034
58 2026-03-10 08:13:39 信用借还 花呗 / 花呗自动还款-2026年03月账单 不计收支 2801.11 余额宝 还款成功 2026031029020999560128569081
59 2026-03-10 04:35:22 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.09-收益发放 不计收支 3.20 余额宝 交易成功 20260310341619072561
60 2026-03-09 18:53:46 日用百货 集美**城 jim***@163.com 厨房壁挂式垃圾桶卫生间柜门悬挂橱柜门花边纸篓家用高颜值收纳桶 支出 2.87 花呗 交易成功 2026030922001185561405014056 T200P4502117163094009820
61 2026-03-09 12:05:33 转账红包 淘宝(中国)软件有限公司 / 淘宝签到提现 收入 0.02 交易成功 20260309020070011540560010100358 FP301_8163111185840258
62 2026-03-09 05:53:19 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.08-收益发放 不计收支 3.10 余额宝 交易成功 20260309336353898561
63 2026-03-08 21:36:20 美容美发 至本**店 121***@qq.com 【活动价】至本特安修护洁面泡 温和清洁水润舒适男女士泡沫洁净慕斯洗面奶 支出 48.40 花呗 交易成功 2026030822001185561403183779 T200P4502125585064055012
64 2026-03-08 17:40:23 餐饮美食 霖江牛肉小馆 / 美团收银909700210189550470 支出 72.00 花呗 交易成功 2026030822001485561400264448 4720180330024764010461368606430262729606261
65 2026-03-08 17:29:59 充值缴费 杭州市民卡 hzp***@96225.com 交通一码通充值 支出 50.00 余额宝 交易成功 2026030822001485561402422398 833177433759
66 2026-03-08 16:53:32 日用百货 罗森便利店 law***@lawson.com.cn 支付宝支付杭州西溪天堂店消费 支出 4.30 花呗 交易成功 2026030822001485561400786503 729209424388
67 2026-03-08 05:22:38 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.07-收益发放 不计收支 3.10 余额宝 交易成功 20260308329744537561
68 2026-03-07 11:57:07 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 0.02 账户余额 交易成功 20260307019130101000560049751509 20260307009130501000560073195519
69 2026-03-07 05:00:42 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.06-收益发放 不计收支 3.29 余额宝 交易成功 20260307324413803561
70 2026-03-06 11:38:31 转账红包 淘宝(中国)软件有限公司 / 淘宝签到提现 收入 0.02 交易成功 20260306020070011530560081974969 FP301_8147976340120258
71 2026-03-06 05:51:31 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.05-收益发放 不计收支 3.21 余额宝 交易成功 20260306319092836561
72 2026-03-05 23:31:06 充值缴费 国网汇通金财(北京)信息科技有限公司 cui***@sgec.sgcc.com.cn 网上国网 支出 29.99 花呗&支付宝随机抽立减 交易成功 2026030522001485561451315923 202603050179551775
73 2026-03-05 15:08:24 保险 众安在线财产保险股份有限公司 / 2026.3月保费缴清-宠物医保-**影 支出 34.75 花呗 交易成功 20260305102553010685560064048761 26030569385922710619
74 2026-03-05 15:06:53 保险 众安在线财产保险股份有限公司 / 2026.3月保费缴清-宠物医保-**影 支出 34.75 花呗 交易成功 20260305102553010685560064153159 26030569503407310968
75 2026-03-05 11:49:33 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 何文田·白切鸡X卤肉饭(西溪天虹店)外卖订单 支出 18.30 花呗 交易成功 2026030522001185561448595768 13110600726030510117286221526
76 2026-03-05 05:44:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.04-收益发放 不计收支 3.26 余额宝 交易成功 20260305313048180561
77 2026-03-05 00:49:06 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 100.00 账户余额 交易成功 20260305019130101000560047759934 20260305009130501000560071665097
78 2026-03-04 13:35:07 转账红包 杭州南锦电子商务有限公司 / 淘宝签到提现 收入 100.00 交易成功 20260304020070011540560065610549 FP301_8141867281630258
79 2026-03-04 13:34:53 日用百货 顺兴**店 276***@qq.com 美纹纸胶带美术生专用水彩绘画用美文纸胶布喷漆装修遮蔽专用批发手撕无痕婚房耐高温油漆瓷砖美文贴纸不伤纸 支出 1.87 花呗 支付成功 20260304300000005585561210177863 T200P5087184806097036648
80 2026-03-04 13:34:45 母婴亲子 沐童**店 380***@qq.com 【活动价】移动门锁扣衣柜推拉门固定器防猫锁防儿童宠物开门开窗神器滑门锁 支出 4.22 花呗 支付成功 20260304300000005585561208195175 T200P5083606944911036648
81 2026-03-04 13:32:18 宠物 tb**8 135***@163.com 猫玩具自嗨解闷悬挂弹簧兔毛球猫咪自嗨玩具猫玩具球猫咪用品大全 支出 6.90 花呗 支付成功 20260304300000005585561212722331 T200P5087789139467036648
82 2026-03-04 05:40:25 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.03-收益发放 不计收支 3.22 余额宝 交易成功 20260304307025829561
83 2026-03-03 23:51:39 交通出行 滴滴出行 chu***@didichuxing.com 特惠快车打车-吴师傅-03月03日行程 支出 12.90 花呗 交易成功 2026030323001485561442561088 212_202603038581888101737370
84 2026-03-03 05:34:17 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.02-收益发放 不计收支 3.20 余额宝 交易成功 20260303399647452561
85 2026-03-02 20:28:19 充值缴费 中国移动 zyd***@163.com 为188****3932话费充值 支出 99.80 余额宝 交易成功 2026030222001485561435512041 00552026030220281150451032382108
86 2026-03-02 19:13:08 交通出行 滴滴出行 chu***@didichuxing.com 特惠快车打车-余师傅-03月02日行程 支出 13.40 花呗 交易成功 2026030222001485561436691466 212_202603028580762201716030
87 2026-03-02 13:07:38 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 乔峰小吃·湖南米粉外卖订单 支出 22.80 花呗 交易成功 2026030222001185561437034237 13130600726030205706774221526
88 2026-03-02 12:46:20 日用百货 天** tmc***@service.aliyun.com 老管家洗衣机清洗洁剂375g*4盒波轮滚筒洗衣机强力除垢送消毒液 支出 33.80 余额宝 交易成功 2026030222001185561436608937 T200P5092334389791036648
89 2026-03-02 05:42:40 投资理财 天弘基金管理有限公司 / 余额宝-2026.03.01-收益发放 不计收支 3.13 余额宝 交易成功 20260302394364784561
90 2026-03-01 18:52:00 日用百货 山姆会员商店 mp3***@walmart.com 商品 支出 110.80 花呗 交易成功 2026030123001485561430849792 X3239895496463108175X100
91 2026-03-01 05:20:45 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.28-收益发放 不计收支 3.14 余额宝 交易成功 20260301382667782561
92 2026-02-28 09:38:17 宠物 tb**8 135***@163.com 猫玩具自嗨解闷悬挂弹簧兔毛球猫咪自嗨玩具猫玩具球猫咪用品大全 支出 0.00 支付成功 2026022822001185561427577899 T200P5087789139467036648
93 2026-02-28 05:42:44 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.27-收益发放 不计收支 3.26 余额宝 交易成功 20260228382506950561
94 2026-02-27 18:02:58 日用百货 顺兴**店 276***@qq.com 美纹纸胶带美术生专用水彩绘画用美文纸胶布喷漆装修遮蔽专用批发手撕无痕婚房耐高温油漆瓷砖美文贴纸不伤纸 支出 0.00 支付成功 2026022722001185561425255663 T200P5087184806097036648
95 2026-02-27 11:56:31 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 乔峰小吃·湖南米粉外卖订单 支出 22.30 花呗 交易成功 2026022722001185561423074313 13110600726022736918530221526
96 2026-02-27 05:41:42 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.26-收益发放 不计收支 3.15 余额宝 交易成功 20260227374884799561
97 2026-02-26 22:19:59 服饰装扮 乖才**店 lin***@163.com 【活动价】灰色短袖t恤女2026新款爆款夏季纯棉宽松半袖超好看独特漂亮上衣 不计收支 48.30 交易关闭 2026022622001185561421512159 T200P5085839918759036648
98 2026-02-26 12:16:45 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 乔峰小吃·湖南米粉外卖订单 支出 23.22 交通银行信用卡(0315)&交通银行立减金 交易成功 2026022622001185561422075044 13120600726022602755647221526
99 2026-02-26 12:04:27 服饰装扮 静啦**店 199***@163.com 秋冬花朵鸭嘴夹发夹女2026新款高级感头发抓夹后脑勺一字夹子头饰 支出 4.62 花呗 交易成功 2026022622001185561419508481 T200P5084910000396036648
100 2026-02-26 04:55:26 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.25-收益发放 不计收支 3.27 余额宝 交易成功 20260226369579641561
101 2026-02-25 16:08:25 母婴亲子 沐童**店 380***@qq.com 【活动价】移动门锁扣衣柜推拉门固定器防猫锁防儿童宠物开门开窗神器滑门锁 支出 0.00 支付成功 2026022522001185561415762382 T200P5083606944911036648
102 2026-02-25 15:51:09 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 紫燕百味鸡(杭州东莲街店)外卖订单 支出 33.76 花呗 交易成功 2026022522001185561418297552 13150600726022500851053221526
103 2026-02-25 15:43:44 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 绝味鸭脖(闲林山水店)外卖订单 支出 35.50 花呗 交易成功 2026022522001185561418573678 13150600726022508665491221526
104 2026-02-25 15:37:49 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 霸王茶姬(杭州余杭仓南里MEET636店)外卖订单 支出 1.90 花呗 交易成功 2026022522001185561417956776 13150600726022506217227221526
105 2026-02-25 10:53:09 日用百货 恒品**店 184***@qq.com 一次性手套乳胶丁腈橡胶PVC食品级专用餐饮家务厨房洗碗加厚耐用 支出 39.80 花呗 支付成功 20260225300000004485561215288889 T200P5072318101559036648
106 2026-02-25 05:00:43 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.24-收益发放 不计收支 3.22 余额宝 交易成功 20260225363003297561
107 2026-02-24 16:00:37 餐饮美食 上海华铁旅客服务有限公司 / 二维码支付 支出 8.00 花呗 交易成功 2026022422001485561414015581 20P2088721085226061W03_10500004112126526022431384010H
108 2026-02-24 10:45:56 日用百货 植护**店 mas***@163.com 植护大包悬挂式抽纸家用餐巾纸面巾纸整箱实惠装宿舍擦手卫生纸巾 支出 4.80 花呗 交易成功 2026022422001185561414565054 T200P5081293477384036648
109 2026-02-24 10:20:04 日用百货 兴源便利万达总店 / 兴源便利万达总店 支出 11.00 花呗 交易成功 2026022423001485561414934963 8012660000489000000000266216926055
110 2026-02-24 05:56:47 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.23-收益发放 不计收支 3.21 余额宝 交易成功 20260224357976172561
111 2026-02-23 15:16:59 日用百货 万嘉便利 / 万嘉便利 支出 1.00 花呗 交易成功 2026022322001485561407962352 942017092208872157140204038039000082602230238223
112 2026-02-23 12:38:08 日用百货 福建博物院文创商店 / 省博店-63172287888012602231238081071 支出 96.00 花呗 交易成功 2026022323001485561407496762 7612660000489000000000523074226054
113 2026-02-23 05:21:40 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.22-收益发放 不计收支 3.21 余额宝 交易成功 20260223351599880561
114 2026-02-22 23:26:37 餐饮美食 川悦海鲜集市火锅仓山万达店 / 川悦海鲜集市火锅(仓山万达店) 支出 6.00 花呗 交易成功 2026022222001485561403675235 112017092208872157140206029129002052602220020913
115 2026-02-22 23:26:11 餐饮美食 川悦海鲜集市火锅仓山万达店 / 川悦海鲜集市火锅(仓山万达店) 支出 463.08 余额宝 交易成功 2026022222001485561406488051 372017092208872157140206029129002082602220019183
116 2026-02-22 07:23:54 运动户外 吴老头手工鱼丸 185******13 经营码交易 支出 56.00 花呗 交易成功 2026022222001485561405320595 17717162333722329485567
117 2026-02-22 05:54:40 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.21-收益发放 不计收支 3.22 余额宝 交易成功 20260222346590562561
118 2026-02-21 12:27:09 运动户外 吴老头手工鱼丸 185******13 经营码交易 支出 15.00 花呗 交易成功 2026022122001485561402612482 17716480286722329485567
119 2026-02-21 12:25:02 餐饮美食 海鲜水产 / 海鲜水产 支出 45.00 花呗 交易成功 2026022122001485561402764914 26126600001417390030310202602211225AC031170
120 2026-02-21 12:17:22 运动户外 吴老头手工鱼丸 185******13 经营码交易 支出 33.00 花呗 交易成功 2026022122001485561401035993 17716474411722329485567
121 2026-02-21 05:28:32 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.20-收益发放 不计收支 3.22 余额宝 交易成功 20260221341405464561
122 2026-02-20 13:54:51 日用百货 丽水服务区(南区) cic***@163.com 浙江高速商贸-消费 支出 20.00 花呗 交易成功 2026022022001485561458700965 G0086260220135454
123 2026-02-20 09:42:30 服饰装扮 乖才**店 lin***@163.com 【活动价】灰色短袖t恤女2026新款爆款夏季纯棉宽松半袖超好看独特漂亮上衣 支出 59.90 花呗 交易成功 2026022022001185561458194406 T200P5076116642983036648
124 2026-02-20 05:41:44 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.19-收益发放 不计收支 3.22 余额宝 交易成功 20260220335254981561
125 2026-02-19 15:01:42 退款 乔朋**店 qps***@163.com 退款-【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶 不计收支 11.40 花呗 退款成功 2026021822001185561451051360_5074439403775036648_376836051426034866 T200P5074439403775036648
126 2026-02-19 05:19:23 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.18-收益发放 不计收支 3.22 余额宝 交易成功 20260219330278282561
127 2026-02-18 14:41:57 餐饮美食 **平 134******53 收钱码收款 支出 12.50 花呗 交易成功 2026021822001485561450689354 17713969171722329485567
128 2026-02-18 12:48:26 日用百货 梦创**店 bdw***@163.com 砂锅炖锅家用燃气耐高温干烧煲仔饭煤气灶专用陶瓷煲汤锅商用沙锅 支出 33.44 余额宝 支付成功 20260218300000005285561228788334 T200P5060400519030036648
129 2026-02-18 10:53:10 数码电器 乔朋**店 qps***@163.com 【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶 支出 11.40 花呗 交易关闭 2026021822001185561451051360 T200P5074439403775036648
130 2026-02-18 10:51:46 退款 乔朋**店 qps***@163.com 退款-【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶 不计收支 11.40 花呗 退款成功 2026021822001185561449209053_5074850161943036648 T200P5074850161943036648
131 2026-02-18 10:45:52 数码电器 乔朋**店 qps***@163.com 【活动价】适用小米12pro手机壳14新款15红米k80至尊k70k90马年17新年note13红色11男生10硅胶 支出 11.40 花呗 交易关闭 2026021822001185561449209053 T200P5074850161943036648
132 2026-02-18 10:35:22 日用百货 万家福超市 188******38 收钱码收款 支出 260.00 余额宝 交易成功 2026021822001485561449630338 17713821215722329485567
133 2026-02-18 05:52:19 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.17-收益发放 不计收支 3.22 余额宝 交易成功 20260218323977091561
134 2026-02-17 16:37:39 日用百货 陈永成 www***@qq.com 收钱码收款 支出 246.00 花呗 交易成功 2026021722001485561446184616 17713174593722329485567
135 2026-02-17 05:53:27 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.16-收益发放 不计收支 3.22 余额宝 交易成功 20260217318455468561
136 2026-02-16 15:59:27 日用百货 啊敏的店 138******18 经营码交易 支出 50.00 花呗 交易成功 2026021622001485561441923265 17712287669722329485567
137 2026-02-16 06:01:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.15-收益发放 不计收支 3.22 余额宝 交易成功 20260216313290084561
138 2026-02-15 19:15:56 日用百货 啊敏的店 138******18 经营码交易 支出 500.00 花呗 交易成功 2026021522001485561438706014 17711541556722329485567
139 2026-02-15 06:10:40 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.14-收益发放 不计收支 3.22 余额宝 交易成功 20260215308510239561
140 2026-02-15 01:53:33 日用百货 恒品**店 184***@qq.com 一次性手套乳胶丁腈橡胶PVC食品级专用餐饮家务厨房洗碗加厚耐用 支出 0.00 支付成功 2026021522001185561437005608 T200P5072318101559036648
141 2026-02-14 15:31:40 交通出行 永康市公共交通有限公司 694***@qq.com K7路-2026-02-14 15:31:30 支出 1.50 花呗 交易成功 2026021422001485561434940187 2602142109905761
142 2026-02-14 05:06:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.13-收益发放 不计收支 3.22 余额宝 交易成功 20260214302125126561
143 2026-02-13 19:04:45 餐饮美食 司乎?日式鲜吐司(西嘉广场店) / 美团收银909700209492943490 支出 57.54 花呗&红包 交易成功 2026021323001485561430157853 8820180330024764010461368606385308555904422
144 2026-02-13 18:20:38 日用百货 山姆会员商店 mp3***@walmart.com 商品 支出 143.70 花呗 交易成功 2026021322001485561431007090 X3216671195886918735X100
145 2026-02-13 13:15:54 转账红包 郦鸿飞(郦鸿飞) 462***@qq.com 亚马逊 支出 29502.00 中国银行储蓄卡(8029)&中国银行立减金 交易成功 20260213200040011100560050895958
146 2026-02-13 09:15:02 家居家装 十色**店 177***@163.com 吐司专用保鲜盒面包馒头收纳盒冰箱冷藏盒食品储存密封盒子带盖 支出 28.00 花呗 支付成功 20260213300000003885561242292263 T200P5050444212108036648
147 2026-02-13 05:54:27 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.12-收益发放 不计收支 6.42 余额宝 交易成功 20260213395638154561
148 2026-02-12 19:38:49 餐饮美食 荆九爷爆炒桥头三嫩(未来科技城店) / 美团收银909700209463114232 支出 183.00 花呗 交易成功 2026021222001485561426755696 3820180330024764010461368606383300376207333
149 2026-02-12 18:57:32 餐饮美食 嵊州小吃三维未来店 / 嵊州小吃三维未来店 支出 8.54 花呗&红包 交易成功 2026021223001485561427824306 9012660000483300037895211731538363
150 2026-02-12 11:45:26 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 17.00 账户余额 交易成功 20260212019130101000560032853213 20260212009130501000560056429797
151 2026-02-12 10:11:07 保险 众安在线财产保险股份有限公司 / 2026.2月保费缴清-宠物医保-**影 支出 34.08 花呗 交易成功 20260212102553010485560083601385 202602121100300709430131529571
152 2026-02-12 10:10:58 保险 众安在线财产保险股份有限公司 / 2026.2月保费缴清-宠物医保-**影 支出 34.08 花呗 交易成功 20260212102553010485560083744895 202602121100300702370129963572
153 2026-02-12 05:39:47 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.11-收益发放 不计收支 3.12 余额宝 交易成功 20260212389471487561
154 2026-02-12 01:05:00 数码电器 二三十 243***@qq.com 收钱码收款 支出 0.20 余额宝&红包 交易成功 2026021222001485561422752057 47708295003722329485567
155 2026-02-12 01:01:32 收入 **泓 243***@qq.com 收钱码收款 收入 17.00 交易成功 2026021222001466391430123271 47708292923802313866391
156 2026-02-11 05:47:18 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.10-收益发放 不计收支 3.29 余额宝 交易成功 20260211382413286561
157 2026-02-10 14:00:46 服饰装扮 刘杰**4 241***@qq.com LITIANDI 美拉德边斜辑牛仔裤男宽松直筒潮牌加绒加厚裤子男秋冬 支出 151.63 花呗 支付成功 20260210300000005785561217051473 T200P5045163123420036648
158 2026-02-10 11:46:14 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 霸王茶姬(杭州闲林七彩汇店)外卖订单 支出 0.50 花呗 交易成功 2026021022001185561418162559 13110600726021069985831221526
159 2026-02-10 11:45:51 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 5.00 账户余额 交易成功 20260210019130101000560031517534 20260210009130501000560054818802
160 2026-02-10 11:16:08 信用借还 花呗 / 花呗自动还款-2026年02月账单 不计收支 1688.16 余额宝 还款成功 2026021029020999560163345553
161 2026-02-10 05:38:31 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.09-收益发放 不计收支 3.38 余额宝 交易成功 20260210377012517561
162 2026-02-09 19:22:48 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 36.00 花呗 交易成功 2026020922001485561412555184 79126600004836000083620260209317749549
163 2026-02-09 13:32:11 日用百货 华东物美西溪欢乐城店1 zfb***@dmall.com 多点订单:968831536034 支出 9.71 花呗&红包 交易成功 2026020923001485561412408658 19000217706151300000968831536034
164 2026-02-09 13:13:22 收入 **洋 153******65 收钱码收款 收入 5.00 交易成功 2026020922001436901418764000 47706140024152335536908
165 2026-02-09 05:44:38 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.08-收益发放 不计收支 3.19 余额宝 交易成功 20260209370515014561
166 2026-02-08 20:24:44 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 13.10 花呗 交易成功 2026020822001485561409511373 90126600004836000083620260208305023501
167 2026-02-08 19:43:29 餐饮美食 西北牛肉面 176******28 经营码交易 支出 16.00 余额宝 交易成功 2026020822001485561407325558 17705510087722329485567
168 2026-02-08 14:42:31 退款 ai**n hui***@163.com 退款-HUIXI绘系 高领德绒长袖T恤女2025秋冬新款百搭简约内搭打底上衣 不计收支 73.75 余额宝 退款成功 2026020522001185561455801798_5054272023069036648_advance T200P5054272023069036648
169 2026-02-08 14:36:48 退款 欧茹**店 our***@163.com 退款-【优惠价】老钱风灰色高领中长款毛衣女遮屁股上衣冬季宽松慵懒加厚针织内搭 不计收支 103.98 余额宝 退款成功 2026020522001185561455415126_5054272023068036648_advance T200P5054272023068036648
170 2026-02-08 14:36:12 退款 ma**1 yuh***@163.com 退款-重磅推出!100%纯羊毛定纺针织打底衫上衣内搭毛衣纯色秋冬女高级 不计收支 87.08 余额宝 退款成功 2026020522001185561453696800_5054272023066036648_advance T200P5054272023066036648
171 2026-02-08 14:35:33 退款 伊索**店 yis***@163.com 退款-【优惠价】黑色短裤女秋冬2025新款高腰显瘦小个子春秋辣妹打底靴裤性感热裤 不计收支 30.01 余额宝 退款成功 2026020522001185561455027993_5054272023061036648_advance T200P5054272023061036648
172 2026-02-08 13:04:52 日用百货 沃尔玛(浙江)百货有限公司 mp4***@walmart.com 杭州西溪山姆会员商店 支出 168.90 余额宝 交易成功 2026020823001485561408458655 806001480809177052706098995
173 2026-02-08 12:25:59 餐饮美食 煮物_创造美食创造快乐 / 煮物西溪印象城店 支出 35.00 花呗 交易成功 2026020823001485561407181865 59126600004836000083620260208690788804
174 2026-02-08 10:50:53 日用百货 梦创**店 bdw***@163.com 砂锅炖锅家用燃气耐高温干烧煲仔饭煤气灶专用陶瓷煲汤锅商用沙锅 支出 0.00 支付成功 2026020822001185561407944138 T200P5060400519030036648
175 2026-02-08 10:42:38 服饰装扮 朵莲**店 duo***@qq.com 【优惠价】加绒打底裤女外穿秋冬款绒裤秋裤2025新款冬季加厚羊羔绒保暖棉裤 等多件 支出 121.48 余额宝 交易成功 2026020822001185561405995555 T200P5060502722606036648
176 2026-02-08 10:42:38 运动户外 ex**店 178***@163.com 【优惠价】德国户外徒步登山护膝髌骨带运动女膝盖跑步专业爬山专用关节保护 支出 60.74 余额宝 交易成功 2026020822001185561406331852 T200P5060502722609036648
177 2026-02-08 10:42:38 服饰装扮 姚** zjm***@163.com SW灰色打底裤女秋冬显瘦压力薄裤袜加绒加厚保暖可外穿瘦腿连裤袜 等多件 支出 49.56 余额宝 交易成功 2026020822001185561406632600 T200P5060502722603036648
178 2026-02-08 06:07:30 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.07-收益发放 不计收支 3.19 余额宝 交易成功 20260208364881532561
179 2026-02-07 20:50:44 日用百货 浙江杭州余杭良睦路美宜佳 511***@qq.com 美宜佳浙01238店 支出 4.50 花呗 交易成功 2026020722001485561403913883 af2091cd9aaa449b93f18b37cf880715
180 2026-02-07 20:33:43 餐饮美食 司乎?日式鲜吐司(西嘉广场店) / 美团收银909700209290610522 支出 62.00 花呗 交易成功 2026020723001485561403470382 9220180330024764010461368606372798845804422
181 2026-02-07 05:22:13 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.06-收益发放 不计收支 3.46 余额宝 交易成功 20260207358296989561
182 2026-02-07 00:58:21 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 10.00 账户余额 交易成功 20260207019130101000560028679719 20260207009130501000560052505635
183 2026-02-06 22:05:21 充值缴费 杭州市民卡 hzp***@96225.com 交通一码通充值 支出 50.00 余额宝 交易成功 2026020622001485561401600189 833175585273
184 2026-02-06 21:39:32 日用百货 沃尔玛(浙江)百货有限公司 mp4***@walmart.com 杭州西溪山姆会员商店 支出 873.80 余额宝 交易成功 2026020623001485561400880968 806001480816177038514053250
185 2026-02-06 13:58:01 充值缴费 国网汇通金财(北京)信息科技有限公司 cui***@sgec.sgcc.com.cn 网上国网 支出 99.99 花呗&支付宝随机抽立减 交易成功 2026020622001485561403100049 202602060109428338
186 2026-02-06 11:57:16 转账红包 淘宝(中国)软件有限公司 / 淘宝签到提现 收入 10.00 交易成功 20260206020070011530560069122816 FP301_8039981466710258
187 2026-02-06 05:25:13 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.05-收益发放 不计收支 3.35 余额宝 交易成功 20260206351001793561
188 2026-02-06 01:18:51 转账红包 小猪猪(曹建泓) 243***@qq.com 转账 支出 500.00 余额宝 交易成功 20260206200040011100560047528961
189 2026-02-06 01:17:37 投资理财 余额宝 / 余额宝-单次转入 不计收支 99.94 招商银行储蓄卡(4353)&红包 交易成功 20260206019130100010560028180400 c20ee74e-9962-45ef-b178-3a39a1f9e283
190 2026-02-05 10:47:25 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 甬台温·小海鲜排挡(桃源小镇店)外卖订单 支出 47.40 余额宝 交易成功 2026020522001185561455068243 13100600726020593007663221526
191 2026-02-05 10:17:12 服饰装扮 ma**1 yuh***@163.com 重磅推出!100%纯羊毛定纺针织打底衫上衣内搭毛衣纯色秋冬女高级 支出 87.08 余额宝 交易关闭 2026020522001185561453696800 T200P5054272023066036648
192 2026-02-05 10:17:12 日用百货 福涵**司 799***@qq.com 316不锈钢泼油小锅家用热油专用神器厨房浇油榨油烧油迷你淋油锅 支出 23.09 余额宝 交易成功 2026020522001185561454444812 T200P5054272023071036648
193 2026-02-05 10:17:12 服饰装扮 杰哥**举 xie***@qq.com 法式奶奶灰柔软亲肤打底衫女半高领修身内搭毛衣秋冬简约针织上衣 支出 56.13 余额宝 交易成功 2026020522001185561454711508 T200P5054272023064036648
194 2026-02-05 10:17:12 服饰装扮 恋丽**店 zru***@163.com 【优惠价】灰色毛呢半身裙女春秋冬2026新款高腰显瘦小个子加厚a字包臀短裙 支出 30.12 余额宝 交易成功 2026020522001185561455004020 T200P5054272023070036648
195 2026-02-05 10:17:12 服饰装扮 伊索**店 yis***@163.com 【优惠价】黑色短裤女秋冬2025新款高腰显瘦小个子春秋辣妹打底靴裤性感热裤 支出 30.01 余额宝 交易关闭 2026020522001185561455027993 T200P5054272023061036648
196 2026-02-05 10:17:12 服饰装扮 gu**店 guk***@163.com 【优惠价】果壳保暖内衣本命年红品女士2026秋冬新款秋衣女棉毛衫打底内搭 支出 77.72 余额宝 交易成功 2026020522001185561455135712 T200P5054272023062036648
197 2026-02-05 10:17:12 服饰装扮 捷成**衫 157******45 iiiamX灰色立领高领半拉链麻花针织毛衣女秋冬季套头上衣2025新款 支出 87.79 余额宝 交易成功 2026020522001185561455235413 T200P5054272023065036648
198 2026-02-05 10:17:12 保险 国泰**司 fin***@cathay-ins.com.cn 保险-买家版运费险-YOLO SHOP 古早辣妹 蝙蝠袖包臀打底短款连衣裙女秋冬气质裙子等 支出 4.40 余额宝 交易成功 2026020522001185561455320502 T1100P5054272023073036648
199 2026-02-05 10:17:12 服饰装扮 欧茹**店 our***@163.com 【优惠价】老钱风灰色高领中长款毛衣女遮屁股上衣冬季宽松慵懒加厚针织内搭 支出 103.98 余额宝 交易关闭 2026020522001185561455415126 T200P5054272023068036648
200 2026-02-05 10:17:12 服饰装扮 ai**n hui***@163.com HUIXI绘系 高领德绒长袖T恤女2025秋冬新款百搭简约内搭打底上衣 支出 73.75 余额宝 交易关闭 2026020522001185561455801798 T200P5054272023069036648
201 2026-02-05 10:17:12 日用百货 cl**店 cli***@merry-penguins.com Cliton电动黑胡椒粉海盐研磨器亚麻籽厨房家用不锈钢研磨自动调料 支出 52.60 余额宝 交易成功 2026020522001185561456304262 T200P5054272023072036648
202 2026-02-05 10:17:12 服饰装扮 tb**6 159***@163.com YOLO SHOP 古早辣妹 蝙蝠袖包臀打底短款连衣裙女秋冬气质裙子 支出 180.89 余额宝 交易成功 2026020522001185561456773596 T200P5054272023063036648
203 2026-02-05 10:17:12 服饰装扮 安悦**店 135***@163.com 【优惠价】深灰色短裤女2025新款秋冬针织小个子显瘦外穿辣妹休闲简约毛衣裤 支出 35.90 余额宝 交易成功 2026020522001185561456816560 T200P5054272023060036648
204 2026-02-05 10:17:12 服饰装扮 wx**e 186******17 乌77气质百搭高领蝙蝠袖针织衫女2025新款秋通勤收腰显瘦打底上衣 支出 77.18 余额宝 交易成功 2026020522001185561456869225 T200P5054272023067036648
205 2026-02-05 05:22:39 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.04-收益发放 不计收支 3.36 余额宝 交易成功 20260205345306478561
206 2026-02-04 04:55:40 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.03-收益发放 不计收支 3.29 余额宝 交易成功 20260204338714314561
207 2026-02-03 15:57:40 运动户外 kd**店 ykl***@163.com 【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材 支出 87.00 花呗 支付成功 20260203300000006485561229116149 T200P5031347690699036648
208 2026-02-03 15:42:02 美容美发 tb**2 190******68 适用小米MEO701 F300冲牙器标准喷头米家洗牙器通用替换喷头喷嘴 支出 6.86 花呗 交易成功 2026020322001185561448577239 T200P5051364987952036648
209 2026-02-03 15:42:02 日用百货 宝家**店 bjj***@boomjoy.com 【优惠价】宝家洁静电除尘纸拖把一次性吸尘吸灰纸拖地擦墙家用开荒保洁神器 支出 51.15 花呗 交易成功 2026020322001185561449189089 T200P5051364987948036648
210 2026-02-03 15:42:02 家居家装 巨星**店 jxw***@sina.com 【优惠价】小铲刀清洁刀铲子除胶垢油烟机刮刀刮地美缝保洁清洁厨房油污工具 支出 5.86 花呗 交易成功 2026020322001185561450419083 T200P5051364987947036648
211 2026-02-03 15:42:02 日用百货 佳帮**店 yil***@163.com 佳帮手玻璃刮墙面刮水器家用刮水板保洁专用工具台面擦刮玻璃神器 支出 9.70 花呗 交易成功 2026020322001185561450544200 T200P5051364987949036648
212 2026-02-03 15:42:02 日用百货 佳帮**店 duo***@163.com 佳帮手卫生间魔术扫把刮地板刮水器地面刮水神器浴室扫水刮板地刮 支出 19.70 花呗 交易成功 2026020322001185561451199818 T200P5051364987950036648
213 2026-02-03 15:42:02 日用百货 乐点**店 ykj***@163.com 【优惠价】纳米海绵魔力擦去污神奇魔术擦鞋厨房清洁棉茶杯海绵擦块洗碗神器 支出 10.19 花呗 交易成功 2026020322001185561451227055 T200P5051364987951036648
214 2026-02-03 04:51:16 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.02-收益发放 不计收支 3.30 余额宝 交易成功 20260203331540545561
215 2026-02-02 20:27:47 家居家装 十色**店 177***@163.com 吐司专用保鲜盒面包馒头收纳盒冰箱冷藏盒食品储存密封盒子带盖 支出 0.00 支付成功 2026020222001185561445959323 T200P5050444212108036648
216 2026-02-02 20:23:23 母婴亲子 卡威**店 xsm***@163.com 【优惠价】卡威工程车玩具儿童玩具车套装挖掘机男孩合金搅拌车吊车挖机大号 支出 165.00 余额宝 交易成功 2026020222001185561445088602 T200P5050125399665036648
217 2026-02-02 20:23:23 文化休闲 影** 986***@qq.com 故宫淘宝|故宫猫笔记本礼盒博物馆文创生日女孩初中女生新年礼物 支出 83.14 余额宝 交易成功 2026020222001185561445391673 T200P5050125399670036648
218 2026-02-02 20:23:23 服饰装扮 ub**店 you***@ubras.com.cn ubras本命年红色含羊毛保暖内衣套装男女结婚生肖马新年秋衣秋裤 支出 234.00 余额宝 交易成功 2026020222001185561446654355 T200P5050125399669036648
219 2026-02-02 20:23:23 日用百货 ec**店 leq***@139.com ecoco厨房计时器机械做饭定时提醒器学习时间管理闹钟磁吸定时器 支出 25.42 余额宝&优惠 交易成功 2026020222001185561446842946 T200P5050125399672036648
220 2026-02-02 20:23:23 日用百货 ge**店 s2f***@163.com 丙烯马克笔专用绘画本翻翻乐画本水彩本画画本彩铅手绘速写本随身便携式小本子空白插画填色笔记本图画本成人 支出 12.80 余额宝 交易成功 2026020222001185561447004973 T200P5050125399668036648
221 2026-02-02 20:23:23 母婴亲子 贵灵**店 264***@qq.com 三丽鸥涂色本库洛米美乐蒂画画本儿童3-6岁临摹本宝宝填色涂鸦本 支出 19.80 余额宝 交易成功 2026020222001185561447417578 T200P5050125399667036648
222 2026-02-02 20:23:23 日用百货 to**店 sha***@126.com touchmark油性马克笔美术专用48/60/80色画笔水彩笔大墨王双头专业动漫画笔套装儿童小学生初中生专用马克笔 支出 48.80 余额宝 交易成功 2026020222001185561447499107 T200P5050125399671036648
223 2026-02-02 20:23:23 服饰装扮 安** 159******18 白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2026新款冬季加厚保暖 支出 336.00 余额宝 交易成功 2026020222001185561447654982 T200P5050125399666036648
224 2026-02-02 09:01:33 退款 tb**3 153******05 退款-MANCHER 美式复古工装立领黑色羽绒服男潮牌宽松冬季90白鸭绒外套 不计收支 282.13 余额宝 退款成功 2026013122001185561436291131_5045163123421036648_advance T200P5045163123421036648
225 2026-02-02 08:59:38 退款 安** 159******18 退款-白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2025新款冬季加厚保暖 不计收支 0.00 退款成功 2026013122001185561433398852_5045163123422036648_advance T200P5045163123422036648
226 2026-02-02 05:45:24 投资理财 天弘基金管理有限公司 / 余额宝-2026.02.01-收益发放 不计收支 3.26 余额宝 交易成功 20260202326194995561
227 2026-02-01 16:52:39 日用百货 华东物美西溪欢乐城店1 zfb***@dmall.com 多点订单:966499834634 支出 109.02 花呗 交易成功 2026020123001485561441688890 19000217699359590000966499834634
228 2026-02-01 13:18:51 退款 支付宝红包 / 退款-发普通红包 不计收支 500.00 余额宝 退款成功 20260201300002005485561243751092 202601310206302239507839560010108151
229 2026-02-01 05:36:16 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.31-收益发放 不计收支 3.26 余额宝 交易成功 20260201319078312561
230 2026-01-31 17:39:06 退款 淘宝闪购 ele***@service.aliyun.com 退款-叮咚买菜(五常站) 不计收支 0.94 花呗 退款成功 2026013122001185561437496512_13170601326013158902082221526 13170600726013163020398221526
231 2026-01-31 17:37:19 日用百货 淘宝闪购 ele***@service.aliyun.com 叮咚买菜(五常站) 支出 62.93 花呗 交易成功 2026013122001185561437496512 13170600726013163020398221526
232 2026-01-31 13:13:20 转账红包 支付宝红包 / 发普通红包 支出 500.00 余额宝 交易成功 20260131200040031100560003932271 202601310206302239507839560010108151
233 2026-01-31 13:08:43 退款 ja**舰 bes***@bestseller.com.cn 退款-[商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006 不计收支 399.00 余额宝 退款成功 2026013122001185561435964563_5045163123419036648 T200P5045163123419036648
234 2026-01-31 13:07:23 服饰装扮 ja**舰 bes***@bestseller.com.cn [商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006 支出 366.00 花呗 交易成功 2026013122001185561435078534 T200P5045504509354036648
235 2026-01-31 13:02:28 服饰装扮 安** 159******18 白鸭绒立领夹克羽绒服男生短款上衣轻薄外套2025新款冬季加厚保暖 支出 0.00 支付成功 2026013122001185561433398852 T200P5045163123422036648
236 2026-01-31 13:02:28 服饰装扮 刘杰**4 241***@qq.com LITIANDI 美拉德边斜辑牛仔裤男宽松直筒潮牌加绒加厚裤子男秋冬 支出 0.00 支付成功 2026013122001185561435444443 T200P5045163123420036648
237 2026-01-31 13:02:28 服饰装扮 ja**舰 bes***@bestseller.com.cn [商场爆款]杰克琼斯男装冬针织衫潮流圆领套头宽松毛衣225413006 支出 399.00 余额宝 交易关闭 2026013122001185561435964563 T200P5045163123419036648
238 2026-01-31 13:02:28 服饰装扮 yo**6 171******10 GWIT 美式休闲解构切割春秋上衣打底衫套头潮牌长袖圆领卫衣男 支出 160.82 余额宝 交易成功 2026013122001185561435994063 T200P5045163123418036648
239 2026-01-31 13:02:28 服饰装扮 tb**3 153******05 MANCHER 美式复古工装立领黑色羽绒服男潮牌宽松冬季90白鸭绒外套 支出 282.13 余额宝 交易关闭 2026013122001185561436291131 T200P5045163123421036648
240 2026-01-31 12:13:40 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 朱阿根烧饼·米线·瘦肉丸(西溪欢乐城店)外卖订单 支出 23.88 花呗 交易成功 2026013122001185561434052242 13120600726013141995411221526
241 2026-01-31 05:32:20 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.30-收益发放 不计收支 3.49 余额宝 交易成功 20260131312185527561
242 2026-01-30 05:26:12 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.29-收益发放 不计收支 3.40 余额宝 交易成功 20260130306008693561
243 2026-01-29 05:16:17 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.28-收益发放 不计收支 3.41 余额宝 交易成功 20260129399310901561
244 2026-01-28 05:46:23 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.27-收益发放 不计收支 3.31 余额宝 交易成功 20260128394191423561
245 2026-01-27 04:46:35 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.26-收益发放 不计收支 3.31 余额宝 交易成功 20260127387288546561
246 2026-01-26 13:45:51 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 甬台温·小海鲜排挡桃源小镇店外卖订单 支出 60.04 花呗 交易成功 2026012622001185561416789445 13130600726012676136603221526
247 2026-01-26 13:45:51 餐饮美食 淘宝闪购 pin***@service.alibaba.com 超级吃货卡 支出 0.10 花呗 交易成功 2026012622001185561416977422 13130600726012676136604221526
248 2026-01-26 05:32:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.25-收益发放 不计收支 3.29 余额宝 交易成功 20260126381262176561
249 2026-01-25 06:02:23 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.24-收益发放 不计收支 3.29 余额宝 交易成功 20260125373833639561
250 2026-01-24 14:43:11 运动户外 kd**店 ykl***@163.com 【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材 支出 0.00 支付成功 2026012422001185561409738053 T200P5031347690699036648
251 2026-01-24 14:41:13 退款 kd**店 ykl***@163.com 退款-【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材 不计收支 0.00 退款成功 2026012422001185561407459527_5031608077586036648 T200P5031608077586036648
252 2026-01-24 14:40:28 运动户外 kd**店 ykl***@163.com 【优惠价】门上单杠家用室内儿童免打孔墙体引体向上器小孩单杆家庭健身器材 支出 0.00 支付成功 2026012422001185561407459527 T200P5031608077586036648
253 2026-01-24 05:25:34 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.23-收益发放 不计收支 3.47 余额宝 交易成功 20260124368541123561
254 2026-01-23 12:50:31 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 绝味鸭脖(闲林山水店)外卖订单 支出 36.50 花呗 交易成功 2026012322001185561405277179 13120600726012334355127221526
255 2026-01-23 05:25:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.22-收益发放 不计收支 3.40 余额宝 交易成功 20260123361898240561
256 2026-01-23 01:19:42 日用百货 山姆会员商店 mp3***@walmart.com 商品 支出 508.60 花呗 交易成功 2026012322001485561402525006 X3185202884112433231X100
257 2026-01-22 05:21:48 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.21-收益发放 不计收支 3.45 余额宝 交易成功 20260122347340978561
258 2026-01-21 05:28:33 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.20-收益发放 不计收支 3.28 余额宝 交易成功 20260121345697227561
259 2026-01-20 05:31:34 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.19-收益发放 不计收支 3.34 余额宝 交易成功 20260120339428767561
260 2026-01-19 19:34:26 餐饮美食 单羊世家.单县羊肉汤(联胜店) / 美团收银909700208661236511 支出 2.00 花呗 交易成功 2026011922001485561449116269 1920180330024764010461368606333826364909406
261 2026-01-19 05:29:15 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.18-收益发放 不计收支 3.30 余额宝 交易成功 20260119334252093561
262 2026-01-18 21:56:27 餐饮美食 杭州余杭炎曦餐饮店(个体工商户) / 杭州余杭炎曦餐饮店(个体工商户)-消费 支出 72.00 花呗 交易成功 2026011822001485561443315015 1212660000010500020520260118000013442923
263 2026-01-18 05:23:19 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.17-收益发放 不计收支 3.30 余额宝 交易成功 20260118327986647561
264 2026-01-17 10:39:09 交通出行 百度平台商家 bds***@baidu.com 百度地图打车 支出 22.00 花呗 交易成功 2026011722001485561438570817 2601173385785826
265 2026-01-17 05:28:28 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.16-收益发放 不计收支 3.44 余额宝 交易成功 20260117322363149561
266 2026-01-16 05:39:18 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.15-收益发放 不计收支 3.38 余额宝 交易成功 20260116315399996561
267 2026-01-15 17:04:04 退款 淘宝闪购 ele***@service.aliyun.com 退款-叮咚买菜(五常站) 不计收支 0.08 中国银行储蓄卡(8029) 退款成功 2026011522001185561432725954_13170601326011586633068221526 13170600726011517606533221526
268 2026-01-15 17:01:39 日用百货 淘宝闪购 ele***@service.aliyun.com 叮咚买菜(五常站) 支出 107.78 中国银行储蓄卡(8029)&中国银行立减金 交易成功 2026011522001185561432725954 13170600726011517606533221526
269 2026-01-15 10:58:18 家居家装 佳立**店 ycy***@163.com 网纱四件套收纳袋换季衣服衣物整理袋衣柜棉被防尘分格带提手储物 支出 33.04 余额宝 交易成功 2026011522001185561429306435 T200P5011556619010036648
270 2026-01-15 04:54:22 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.14-收益发放 不计收支 3.45 余额宝 交易成功 20260115309652691561
271 2026-01-14 18:42:37 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 20.50 花呗 交易成功 2026011422001485561430676892 86126600004836000083620260114974500152
272 2026-01-14 14:38:50 充值缴费 国网汇通金财(北京)信息科技有限公司 cui***@sgec.sgcc.com.cn 网上国网 支出 199.98 花呗&支付宝随机抽立减 交易成功 2026011422001485561429254604 202601140135549859
273 2026-01-14 05:19:36 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.13-收益发放 不计收支 3.30 余额宝 交易成功 20260114303530490561
274 2026-01-13 18:14:38 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 乡村基·新鲜现炒(西溪天虹店)外卖订单 支出 55.90 花呗 交易成功 2026011322001185561427706236 13180600726011383901647221526
275 2026-01-13 05:33:38 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.12-收益发放 不计收支 3.34 余额宝 交易成功 20260113396573469561
276 2026-01-12 10:12:49 保险 众安在线财产保险股份有限公司 / 2026.1月保费缴清-宠物医保-**影 支出 34.08 花呗 交易成功 20260112102553010485560041953995 202601121100300709430121773422
277 2026-01-12 10:12:40 保险 众安在线财产保险股份有限公司 / 2026.1月保费缴清-宠物医保-**影 支出 34.08 花呗 交易成功 20260112102553010485560041656904 202601121100300702370120277941
278 2026-01-12 10:11:25 日用百货 go**店 gdr***@163.com 古迪双头棉签掏耳朵化妆一次性卫生棉棒小细尖头挖耳勺棉花棒专用 支出 5.80 花呗 支付成功 20260112300000004185561233041639 T200P4983150639068036648
279 2026-01-12 06:03:17 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.11-收益发放 不计收支 3.32 余额宝 交易成功 20260112391598131561
280 2026-01-11 05:40:18 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.10-收益发放 不计收支 3.32 余额宝 交易成功 20260111385986117561
281 2026-01-10 13:26:35 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 14.84 花呗&碰一下立减 交易成功 2026011022001485561408690222 17126600004836000083620260110302578694
282 2026-01-10 12:27:21 餐饮美食 横板桥农贸市场水果 184******45 经营码交易 支出 19.50 花呗 交易成功 2026011022001485561409611194 17680192406722329485567
283 2026-01-10 08:29:31 信用借还 花呗 / 花呗自动还款-2026年01月账单 不计收支 1212.75 余额宝 还款成功 2026011029020999560182007932
284 2026-01-10 04:32:45 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.09-收益发放 不计收支 3.45 余额宝 交易成功 20260110378677424561
285 2026-01-09 20:40:01 日用百货 康润华联超市合景轩店 / 康润华联超市合景轩店 支出 4.50 花呗&碰友日立减 交易成功 2026010922001485561404329660 88126600004836000083620260109995860363
286 2026-01-09 05:42:19 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.08-收益发放 不计收支 3.40 余额宝 交易成功 20260109372672548561
287 2026-01-08 20:55:26 日用百货 植护**店 ahy***@163.com 植护大包悬挂式抽纸整箱批餐巾纸面巾纸家用实惠擦手卫生纸巾厕纸 支出 9.90 花呗 交易成功 2026010822001185561459345152 T200P4997684017003036648
288 2026-01-08 20:32:39 日用百货 浙江杭州余杭良睦路美宜佳 511***@qq.com 美宜佳浙01238店 支出 4.50 花呗 交易成功 2026010822001485561458169746 68158fcfcf474d5f9204615076cf6035
289 2026-01-08 19:57:09 餐饮美食 盒马 shh***@163.com 盒马 杭州老面小笼包 500g(20个)等3类商品 支出 41.19 余额宝 交易成功 2026010823001485561401350618 P18M6666031260108453529036648
290 2026-01-08 05:14:18 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.07-收益发放 不计收支 3.46 余额宝 交易成功 20260108366691748561
291 2026-01-07 05:50:42 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.06-收益发放 不计收支 3.48 余额宝 交易成功 20260107360753807561
292 2026-01-06 23:40:07 运动户外 um**店 you***@umayfit.com 【优惠价】无绳跳绳减肥专用计数绳子负重成人女生专业燃脂健身中考学生跳神 支出 28.89 花呗 交易成功 2026010622001185561451158978 T200P4993578759699036648
293 2026-01-06 12:59:00 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 甬台温·小海鲜排挡(桃源小镇店)外卖订单 支出 88.40 花呗 交易成功 2026010622001185561453711020 13120600726010671459786221526
294 2026-01-06 05:05:47 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.05-收益发放 不计收支 3.54 余额宝 交易成功 20260106353700027561
295 2026-01-05 05:27:34 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.04-收益发放 不计收支 3.53 余额宝 交易成功 20260105347013908561
296 2026-01-04 05:53:13 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.03-收益发放 不计收支 3.53 余额宝 交易成功 20260104342036375561
297 2026-01-03 17:19:27 餐饮美食 临安土猪肉 131******82 经营码交易 支出 10.53 花呗&现金抵价券 交易成功 2026010322001485561438140654 17674319674722329485567
298 2026-01-03 15:50:49 充值缴费 中国移动 zyd***@163.com 为188****3932话费充值 支出 99.95 花呗&花呗立减 交易成功 2026010322001485561439747210 00552026010315504297880262463593
299 2026-01-03 05:53:39 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.02-收益发放 不计收支 3.53 余额宝 交易成功 20260103335068476561
300 2026-01-03 03:19:47 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 10.00 账户余额 交易成功 20260103019130101000560098151559 20260103009130501000560025760927
301 2026-01-03 01:58:00 转账红包 淘宝(中国)软件有限公司 / 淘宝签到提现 收入 10.00 交易成功 20260103020070011500560052380299 FP301_7879121951870258
302 2026-01-02 15:22:59 餐饮美食 安琪**店 hea***@angelyeast.com 【优惠价】【官方自营】安琪高活性耐高糖型干酵母面包专用发酵粉孝母5g小包 支出 3.14 花呗 支付成功 20260102300000006285561219174963 T200P4963323710720036648
303 2026-01-02 13:01:41 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 一席地·鸡汤饭·鲜鸡火锅(西溪欢乐城店)外卖订单 支出 21.82 花呗&花呗立减 交易成功 2026010222001185561433883722 13130600726010200072388221526
304 2026-01-02 05:54:21 投资理财 天弘基金管理有限公司 / 余额宝-2026.01.01-收益发放 不计收支 3.53 余额宝 交易成功 20260102329977863561
305 2026-01-02 02:42:26 投资理财 余额宝 fun***@thfund.com.cn 余额宝-自动转入 不计收支 0.10 账户余额 交易成功 20260102019130101000560097591179 20260102009130501000560025289611
306 2026-01-02 00:49:51 转账红包 淘宝(中国)软件有限公司 / 淘宝芭芭农场领现金 收入 0.10 交易成功 20260102020070011500560044023971 FP301_7874687192910258
307 2026-01-02 00:33:56 日用百货 go**店 gdr***@163.com 古迪双头棉签掏耳朵化妆一次性卫生棉棒小细尖头挖耳勺棉花棒专用 支出 0.00 支付成功 2026010222001185561428788321 T200P4983150639068036648
308 2026-01-01 20:59:19 交通出行 杭州地铁 l3g***@hzmetro.com 地铁-全丰-20:59:22-正常行程票款扣费 支出 3.00 花呗 交易成功 2026010122001485561431398194 031701162601012059181020000001522662385
309 2026-01-01 17:44:37 餐饮美食 蜜雪冰城952618店 / 蜜雪冰城952618店 支出 203.90 花呗 交易成功 2026010122001485561431528326 16106600004857000220260101MMav6dua
310 2026-01-01 13:21:18 餐饮美食 淘宝闪购 e50***@alibaba-inc.com 肥叔锅贴翡翠天地店外卖订单 支出 37.74 花呗&红包&优惠 交易成功 2026010122001185561426636189 13130600726010127710100221526
311 2026-01-01 13:21:18 餐饮美食 淘宝闪购 pin***@service.alibaba.com 超级吃货卡 支出 0.10 花呗 交易成功 2026010122001185561429822359 13130600726010127710101221526
312 2026-01-01 05:14:43 投资理财 天弘基金管理有限公司 / 余额宝-2025.12.31-收益发放 不计收支 3.62 余额宝 交易成功 20260101323384752561

Binary file not shown.