Merge branch 'render-worker-microservice'

# Conflicts:
#	src/main/java/com/ycwl/basic/integration/scenic/service/ScenicIntegrationService.java
#	src/main/java/com/ycwl/basic/service/task/impl/TaskTaskServiceImpl.java
This commit is contained in:
2025-09-09 11:00:10 +08:00
52 changed files with 2711 additions and 630 deletions

View File

@@ -14,50 +14,16 @@ import java.util.Date;
* 渲染机管理表
*/
@Data
@TableName("render_worker")
public class RenderWorkerEntity {
@TableId
private Long id;
/**
* 渲染机名称
*/
private String name;
/**
* 系统
*/
private String platform;
/**
* 运行环境
*/
private String runtimeVersion;
/**
* 版本
*/
private String version;
/**
* 访问秘钥
*/
private String accessKey;
/**
* cpu数量
*/
private Integer cpuCount;
/**
* cpu使用率
*/
private BigDecimal cpuUsage;
/**
* 内存总量,MB
*/
private BigDecimal memoryTotal;
/**
* 内存余量,MB
*/
private BigDecimal memoryAvailable;
/**
* 支持的功能,逗号隔开
*/
private String supportFeature;
/**
* 是否仅用于指定景区,空或0不适用,否则为景区ID
*/
@@ -66,24 +32,10 @@ public class RenderWorkerEntity {
* 是否仅用于测试,0不是,1是
*/
private Integer testOnly;
/**
* 是否在线,0不在,1在
*/
private Integer online;
/**
* 状态,0禁用,1启用
*/
private Integer status;
private Date createAt;
private Date updateAt;
/**
* 存储类型
*/
private StorageType storeType;
/**
* 存储配置
*/
private String storeConfigJson;
}