fix(planting-service): 修复合同签署功能编译错误

- 修复 JwtAuthGuard 导入路径
- 添加 @nestjs/schedule 依赖

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-24 20:24:00 -08:00
parent 5b8c6bc317
commit 33a5b79c2a
2 changed files with 2 additions and 1 deletions

View File

@ -31,6 +31,7 @@
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^7.1.17",
"@nestjs/axios": "^3.0.1",
"@nestjs/schedule": "^4.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/passport": "^10.0.3",
"@prisma/client": "^5.7.0",

View File

@ -10,7 +10,7 @@ import {
HttpStatus,
Logger,
} from '@nestjs/common';
import { JwtAuthGuard } from '../../infrastructure/auth/jwt-auth.guard';
import { JwtAuthGuard } from '../guards/jwt-auth.guard';
import { ContractSigningService } from '../../application/services/contract-signing.service';
/**