feat(planting-service): 合同签署超时时间从24小时改为1年

This commit is contained in:
hailin 2025-12-26 03:58:56 -08:00
parent 78d7e0e637
commit 1d6982c73e
1 changed files with 2 additions and 2 deletions

View File

@ -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)