---初始化项目

This commit is contained in:
2025-09-19 16:14:08 +08:00
parent 902d3d7e3b
commit afee7c03ac
767 changed files with 75809 additions and 82 deletions

View File

@ -0,0 +1,35 @@
package tech.powerjob.common.model;
import tech.powerjob.common.PowerSerializable;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Deployed Container Information
*
* @author tjq
* @since 2020/5/18
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class DeployedContainerInfo implements PowerSerializable {
/**
* Id of the container.
*/
private Long containerId;
/**
* Version of the container.
*/
private String version;
/**
* Deploy timestamp.
*/
private long deployedTime;
/**
* No need to report to the server
*/
private String workerAddress;
}