API数据表更新

This commit is contained in:
2025-08-31 19:23:19 +08:00
parent 42dfc7e806
commit 2c04361feb
20 changed files with 4151 additions and 2 deletions

View File

@@ -0,0 +1,99 @@
package com.mini.capi.biz.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.Getter;
import lombok.Setter;
/**
* <p>
*
* </p>
*
* @author gaoxq
* @since 2025-08-31
*/
@Getter
@Setter
@TableName("biz_ssh_servers")
public class SshServers implements Serializable {
private static final long serialVersionUID = 1L;
@TableField("create_time")
private LocalDateTime createTime;
@TableId(value = "id", type = IdType.AUTO)
private Long id;
/**
* 服务器名称
*/
@TableField("name")
private String name;
/**
* 服务器地址
*/
@TableField("host")
private String host;
/**
* SSH端口
*/
@TableField("port")
private Integer port;
/**
* 用户名
*/
@TableField("username")
private String username;
/**
* 密码(建议加密存储)
*/
@TableField("password")
private String password;
@TableField("update_time")
private LocalDateTime updateTime;
/**
* 租户id
*/
@TableField("f_tenant_id")
private String fTenantId;
/**
* 流程id
*/
@TableField("f_flow_id")
private String fFlowId;
/**
* 流程任务主键
*/
@TableField("f_flow_task_id")
private String fFlowTaskId;
/**
* 流程任务状态
*/
@TableField("f_flow_state")
private Integer fFlowState;
public SshServers(String name, String host, Integer port, String username, String password){
this.name = name;
this.host = host;
this.port = port;
this.username = username;
this.password = password;
}
}