大声道撒旦
This commit is contained in:
parent
9bc121cced
commit
1b3896b8bd
@ -0,0 +1,25 @@
|
||||
package com.qqchen.deploy.backend.deploy.service.sync;
|
||||
|
||||
import com.qqchen.deploy.backend.deploy.dto.JenkinsSyncHistoryDTO;
|
||||
import com.qqchen.deploy.backend.deploy.entity.ExternalSystem;
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
/**
|
||||
* Jenkins同步上下文
|
||||
* 用于在同步过程中传递状态和数据
|
||||
*/
|
||||
@Getter
|
||||
@RequiredArgsConstructor
|
||||
public class JenkinsSyncContext {
|
||||
|
||||
/**
|
||||
* 外部系统
|
||||
*/
|
||||
private final ExternalSystem externalSystem;
|
||||
|
||||
/**
|
||||
* 同步历史
|
||||
*/
|
||||
private final JenkinsSyncHistoryDTO syncHistory;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user