2021-06-27 21:00:24 +08:00
|
|
|
export default class Plan {
|
|
|
|
/**
|
|
|
|
创建时间
|
|
|
|
*/
|
|
|
|
createdDate: number;
|
|
|
|
/**
|
|
|
|
更新时间
|
|
|
|
*/
|
|
|
|
updateDate: number;
|
|
|
|
planId: number = 0;
|
|
|
|
planName: string = "";
|
|
|
|
description: string = "";
|
|
|
|
//保留的历史份数,最小1
|
|
|
|
holdHistory: number = 1;
|
|
|
|
sourcePath: string = "";
|
|
|
|
targetPath: string = "";
|
|
|
|
nextLaunchTime: number = 0;
|
|
|
|
lanuchInterval: number = 0;
|
|
|
|
latestHistoryId: number = 0;
|
|
|
|
ignoreList: Array<String> = [];
|
|
|
|
latestHistoryDetail: Object | null = null;
|
2021-06-21 16:32:10 +08:00
|
|
|
}
|