From 1d6982c73e1bfc2f9f15af441e1fd7c36551693c Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 26 Dec 2025 03:58:56 -0800 Subject: [PATCH] =?UTF-8?q?feat(planting-service):=20=E5=90=88=E5=90=8C?= =?UTF-8?q?=E7=AD=BE=E7=BD=B2=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4=E4=BB=8E?= =?UTF-8?q?24=E5=B0=8F=E6=97=B6=E6=94=B9=E4=B8=BA1=E5=B9=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/application/services/contract-signing.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/services/planting-service/src/application/services/contract-signing.service.ts b/backend/services/planting-service/src/application/services/contract-signing.service.ts index f2d3a9e1..96a7b0b4 100644 --- a/backend/services/planting-service/src/application/services/contract-signing.service.ts +++ b/backend/services/planting-service/src/application/services/contract-signing.service.ts @@ -67,8 +67,8 @@ export interface ContractSigningTaskDto { export class ContractSigningService { private readonly logger = new Logger(ContractSigningService.name); - // 签署有效期(24小时) - private static readonly SIGNING_EXPIRY_HOURS = 24; + // 签署有效期(1年) + private static readonly SIGNING_EXPIRY_HOURS = 24 * 365; constructor( @Inject(CONTRACT_TEMPLATE_REPOSITORY)