feat(planting-service): 合同签署超时时间从24小时改为1年
This commit is contained in:
parent
78d7e0e637
commit
1d6982c73e
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue