多余代码删除,tiklab代码迁移
This commit is contained in:
parent
7620ba437d
commit
fd87d624dd
@ -0,0 +1,38 @@
|
||||
package cd.casic.ci.common.pipeline.utils;
|
||||
|
||||
import cd.casic.ci.common.pipeline.constant.PipelineDateUtilConstant;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
|
||||
public class PipelineDateUtil {
|
||||
/**
|
||||
* 返回系统时间
|
||||
* @param type 时间类型 1.(yyyy-MM-dd HH:mm:ss) 2.(yyyy-MM-dd) 3.(HH:mm:ss) 4.([format]) 5.(HH:mm)
|
||||
* @return 时间
|
||||
*/
|
||||
public static String nowDateString(String type){
|
||||
|
||||
switch (type) {
|
||||
case PipelineDateUtilConstant.yyyy_MM_dd -> {
|
||||
return new SimpleDateFormat("yyyy-MM-dd").format(new Date());
|
||||
}
|
||||
case PipelineDateUtilConstant.HH_mm_ss -> {
|
||||
return new SimpleDateFormat("HH:mm:ss").format(new Date());
|
||||
}
|
||||
case PipelineDateUtilConstant.yyyy_MM_dd_HH_mm_ss -> {
|
||||
String format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
|
||||
return "[" + format + "]" + " ";
|
||||
}
|
||||
case PipelineDateUtilConstant.HH_mm -> {
|
||||
return new SimpleDateFormat("HH:mm").format(new Date());
|
||||
}
|
||||
case PipelineDateUtilConstant.yyyy_MM_dd_HH_mm_ss_SSS -> {
|
||||
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS").format(new Date());
|
||||
}
|
||||
default -> {
|
||||
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class DeptInfoRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="项目所属二级机构ID")
|
||||
private Integer deptId;
|
||||
@Schema(description="项目所属二级机构名称")
|
||||
private String deptName;
|
||||
@Schema(description="层级ID")
|
||||
private Integer level;
|
||||
@Schema(description="")
|
||||
private Integer parentDeptId;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ProjectInfoRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="审核状态")
|
||||
private Integer approvalStatus;
|
||||
@Schema(description="批准时间")
|
||||
private Date approvalTime;
|
||||
@Schema(description="批准人")
|
||||
private String approver;
|
||||
@Schema(description="应用ID")
|
||||
private Integer ccAppId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createdAt;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="创建者事业群名称")
|
||||
private String creatorBgName;
|
||||
@Schema(description="创建者中心名字")
|
||||
private String creatorCenterName;
|
||||
@Schema(description="创建者项目所属二级机构名称")
|
||||
private String creatorDeptName;
|
||||
@Schema(description="英文名称")
|
||||
private String englishName;
|
||||
@Schema(description="是否停用")
|
||||
private Boolean isOfflined;
|
||||
@Schema(description="是否保密")
|
||||
private Boolean isSecrecy;
|
||||
@Schema(description="事业群ID")
|
||||
private Integer projectBgId;
|
||||
@Schema(description="事业群名称")
|
||||
private String projectBgName;
|
||||
@Schema(description="中心ID")
|
||||
private String projectCenterId;
|
||||
@Schema(description="中心名字")
|
||||
private String projectCenterName;
|
||||
@Schema(description="机构ID")
|
||||
private Integer projectDeptId;
|
||||
@Schema(description="项目所属二级机构名称")
|
||||
private String projectDeptName;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="项目名称")
|
||||
private String projectName;
|
||||
@Schema(description="项目类型")
|
||||
private Integer projectType;
|
||||
@Schema(description="是否用蓝鲸")
|
||||
private Boolean useBk;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RolePermissionRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="过期时间")
|
||||
private Date expireTime;
|
||||
@Schema(description="角色ID")
|
||||
private Integer roleId;
|
||||
@Schema(description="")
|
||||
private Integer urlActionId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date modifyTime;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RoleRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="描述")
|
||||
private String description;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="分支名")
|
||||
private String chName;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date modifyTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SchemaVersionRecord {
|
||||
@Schema(description="")
|
||||
private Integer installedRank;
|
||||
@Schema(description="版本号")
|
||||
private String version;
|
||||
@Schema(description="描述")
|
||||
private String description;
|
||||
@Schema(description="类型")
|
||||
private String type;
|
||||
@Schema(description="打包脚本")
|
||||
private String script;
|
||||
@Schema(description="校验和")
|
||||
private Integer checksum;
|
||||
@Schema(description="安装者")
|
||||
private String installedBy;
|
||||
@Schema(description="安装时间")
|
||||
private Date installedOn;
|
||||
@Schema(description="执行时间")
|
||||
private Integer executionTime;
|
||||
@Schema(description="是否成功")
|
||||
private Integer success;
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SpringSessionAttributesRecord {
|
||||
@Schema(description="SESSION ID")
|
||||
private String sessionId;
|
||||
@Schema(description="属性名称")
|
||||
private String attributeName;
|
||||
@Schema(description="属性字节")
|
||||
private byte[] attributeBytes;
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class SpringSessionRecord {
|
||||
@Schema(description="SESSION ID")
|
||||
private String sessionId;
|
||||
@Schema(description="创建时间")
|
||||
private Long creationTime;
|
||||
@Schema(description="")
|
||||
private Long lastAccessTime;
|
||||
@Schema(description="")
|
||||
private Integer maxInactiveInterval;
|
||||
@Schema(description="")
|
||||
private String principalName;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TActivityRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="类型")
|
||||
private String type;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="英文名称")
|
||||
private String englishName;
|
||||
@Schema(description="跳转链接")
|
||||
private String link;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="状态")
|
||||
private String status;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAgentBatchInstallTokenRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="token用户")
|
||||
private String userId;
|
||||
@Schema(description="Base64编码后TOKEN")
|
||||
private String token;
|
||||
@Schema(description="创建时间")
|
||||
private Date createdTime;
|
||||
@Schema(description="过期时间")
|
||||
private Date expiredTime;
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAgentFailureNotifyUserRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="通知类型")
|
||||
private String notifyTypes;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAgentPipelineRefRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="节点ID")
|
||||
private Long nodeId;
|
||||
@Schema(description="构建机ID")
|
||||
private Long agentId;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="流水线名称")
|
||||
private String pieplineName;
|
||||
@Schema(description="构建序列号")
|
||||
private String vmSeqId;
|
||||
@Schema(description="JOB ID")
|
||||
private String jobId;
|
||||
@Schema(description="JOB NAME")
|
||||
private String jobName;
|
||||
@Schema(description="最近构建时间")
|
||||
private Date lastBuildTime;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAgentShareProjectRecord {
|
||||
@Schema(description="AgentID")
|
||||
private Long agentId;
|
||||
@Schema(description="主项目ID")
|
||||
private String mainProjectId;
|
||||
@Schema(description="共享的目标项目ID")
|
||||
private String sharedProjectId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAiScoreRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="任务ID")
|
||||
private String label;
|
||||
@Schema(description="是否已归档")
|
||||
private Integer archive;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="赞的人")
|
||||
private String goodUsers;
|
||||
@Schema(description="踩的人")
|
||||
private String badUsers;
|
||||
@Schema(description="大模型生成的内容")
|
||||
private String aiMsg;
|
||||
@Schema(description="Prompt for system")
|
||||
private String systemMsg;
|
||||
@Schema(description="Prompt for user")
|
||||
private String userMsg;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppCodeGroupRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="APP编码")
|
||||
private String appCode;
|
||||
@Schema(description="事业群ID")
|
||||
private Integer bgId;
|
||||
@Schema(description="事业群名称")
|
||||
private String bgName;
|
||||
@Schema(description="项目所属二级机构ID")
|
||||
private Integer deptId;
|
||||
@Schema(description="项目所属二级机构名称")
|
||||
private String deptName;
|
||||
@Schema(description="中心ID")
|
||||
private Integer centerId;
|
||||
@Schema(description="中心名字")
|
||||
private String centerName;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="跟新人")
|
||||
private String updater;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppCodeProjectRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="APP编码")
|
||||
private String appCode;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppEnvRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="编译环境ID")
|
||||
private Integer appId;
|
||||
@Schema(description="路径")
|
||||
private String path;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="描述")
|
||||
private String description;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppUserInfoRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="APP编码")
|
||||
private String appCode;
|
||||
@Schema(description="APP管理员ID")
|
||||
private String managerId;
|
||||
@Schema(description="是否删除")
|
||||
private Boolean isDelete;
|
||||
@Schema(description="添加人员")
|
||||
private String createUser;
|
||||
@Schema(description="添加时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppVersionRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="编译环境ID")
|
||||
private Integer appId;
|
||||
@Schema(description="版本号")
|
||||
private String version;
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAppsRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="操作系统")
|
||||
private String os;
|
||||
@Schema(description="执行所在路径")
|
||||
private String binPath;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomApproveRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件的唯一标识")
|
||||
private String atomCode;
|
||||
@Schema(description="调试项目编码")
|
||||
private String testProjectCode;
|
||||
@Schema(description="审批ID")
|
||||
private String approveId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="最近修改人")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomBuildAppRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="构建信息Id")
|
||||
private String buildInfoId;
|
||||
@Schema(description="编译环境版本Id(对应T_APP_VERSION主键)")
|
||||
private Integer appVersionId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomBuildInfoRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="语言")
|
||||
private String language;
|
||||
@Schema(description="打包脚本")
|
||||
private String script;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="代码存放路径")
|
||||
private String repositoryPath;
|
||||
@Schema(description="样例工程路径")
|
||||
private String sampleProjectPath;
|
||||
@Schema(description="是否启用 1 启用 0 禁用")
|
||||
private Boolean enable;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomDevLanguageEnvVarRecord {
|
||||
@Schema(description="主键")
|
||||
private String id;
|
||||
@Schema(description="插件开发语言")
|
||||
private String language;
|
||||
@Schema(description="环境变量key值")
|
||||
private String envKey;
|
||||
@Schema(description="环境变量value值")
|
||||
private String envValue;
|
||||
@Schema(description="适用构建机类型 PUBLIC:公共构建机,THIRD:第三方构建机,ALL:所有")
|
||||
private String buildHostType;
|
||||
@Schema(description="适用构建机操作系统 WINDOWS:windows构建机,LINUX:linux构建机,MAC_OS:mac构建机,ALL:所有")
|
||||
private String buildHostOs;
|
||||
@Schema(description="创建人")
|
||||
private String creator;
|
||||
@Schema(description="最近修改人")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomDisplayConfigRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="插件名称")
|
||||
private String atomName;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomEnvInfoRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件Id")
|
||||
private String atomId;
|
||||
@Schema(description="安装包路径")
|
||||
private String pkgPath;
|
||||
@Schema(description="语言")
|
||||
private String language;
|
||||
@Schema(description="支持插件开发语言的最低版本")
|
||||
private String minVersion;
|
||||
@Schema(description="插件执行入口")
|
||||
private String target;
|
||||
@Schema(description="插件SHA签名串")
|
||||
private String shaContent;
|
||||
@Schema(description="插件执行前置命令")
|
||||
private String preCmd;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="插件包名")
|
||||
private String pkgName;
|
||||
@Schema(description="入口参数")
|
||||
private String postEntryParam;
|
||||
@Schema(description="执行条件")
|
||||
private String postCondition;
|
||||
@Schema(description="支持的操作系统名称")
|
||||
private String osName;
|
||||
@Schema(description="支持的操作系统架构")
|
||||
private String osArch;
|
||||
@Schema(description="运行时版本")
|
||||
private String runtimeVersion;
|
||||
@Schema(description="是否为默认环境信息")
|
||||
private Boolean defaultFlag;
|
||||
@Schema(description="插件运行结束后是否立即杀掉其进程")
|
||||
private Boolean finishKillFlag;
|
||||
}
|
@ -1,56 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomFailDetailDataRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="流水线名称")
|
||||
private String pipelineName;
|
||||
@Schema(description="渠道代码")
|
||||
private String channelCode;
|
||||
@Schema(description="构建ID")
|
||||
private String buildId;
|
||||
@Schema(description="构建序号")
|
||||
private Integer buildNum;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="插件名称")
|
||||
private String atomName;
|
||||
@Schema(description="插件在model中的位置")
|
||||
private String atomPosition;
|
||||
@Schema(description="插件分类代码")
|
||||
private String classifyCode;
|
||||
@Schema(description="插件分类名称")
|
||||
private String classifyName;
|
||||
@Schema(description="启动用户")
|
||||
private String startUser;
|
||||
@Schema(description="启动时间")
|
||||
private Date startTime;
|
||||
@Schema(description="结束时间")
|
||||
private Date endTime;
|
||||
@Schema(description="错误的类型标识")
|
||||
private Integer errorType;
|
||||
@Schema(description="错误的标识码")
|
||||
private Integer errorCode;
|
||||
@Schema(description="错误描述")
|
||||
private String errorMsg;
|
||||
@Schema(description="统计时间")
|
||||
private Date statisticsTime;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,42 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomFailSummaryDataRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="流水线名称")
|
||||
private String pipelineName;
|
||||
@Schema(description="渠道代码")
|
||||
private String channelCode;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="插件名称")
|
||||
private String atomName;
|
||||
@Schema(description="插件分类代码")
|
||||
private String classifyCode;
|
||||
@Schema(description="插件分类名称")
|
||||
private String classifyName;
|
||||
@Schema(description="错误的类型标识")
|
||||
private Integer errorType;
|
||||
@Schema(description="错误次数")
|
||||
private Integer errorCount;
|
||||
@Schema(description="统计时间")
|
||||
private Date statisticsTime;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomFeatureRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件的唯一标识")
|
||||
private String atomCode;
|
||||
@Schema(description="可见范围")
|
||||
private Integer visibilityLevel;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="是否推荐")
|
||||
private Boolean recommendFlag;
|
||||
@Schema(description="插件代码库不开源原因")
|
||||
private String privateReason;
|
||||
@Schema(description="是否删除")
|
||||
private Boolean deleteFlag;
|
||||
@Schema(description="yaml可用标识")
|
||||
private Boolean yamlFlag;
|
||||
@Schema(description="质量红线可用标识")
|
||||
private Boolean qualityFlag;
|
||||
@Schema(description="是否认证标识")
|
||||
private Boolean certificationFlag;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomIndexStatisticsDailyRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="插件错误合规次数")
|
||||
private Integer failComplianceCount;
|
||||
@Schema(description="统计时间")
|
||||
private Date statisticsTime;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="失败执行次数")
|
||||
private Integer failExecuteCount;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomLabelRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="标签ID")
|
||||
private String labelId;
|
||||
@Schema(description="插件Id")
|
||||
private String atomId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomMonitorDataDailyRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="统计时间")
|
||||
private Date statisticsTime;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="执行次数")
|
||||
private Long executeCount;
|
||||
@Schema(description="错误类型")
|
||||
private Integer errorType;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomOfflineRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件的唯一标识")
|
||||
private String atomCode;
|
||||
@Schema(description="")
|
||||
private Integer bufferDay;
|
||||
@Schema(description="过期时间")
|
||||
private Date expireTime;
|
||||
@Schema(description="状态")
|
||||
private Integer status;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomOperateLogRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件Id")
|
||||
private String atomId;
|
||||
@Schema(description="日志内容")
|
||||
private String content;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,49 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import java.math.BigDecimal;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomOverviewDataRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="流水线名称")
|
||||
private String pipelineName;
|
||||
@Schema(description="渠道代码")
|
||||
private String channelCode;
|
||||
@Schema(description="插件代码")
|
||||
private String atomCode;
|
||||
@Schema(description="插件名称")
|
||||
private String atomName;
|
||||
@Schema(description="插件分类代码")
|
||||
private String classifyCode;
|
||||
@Schema(description="插件分类名称")
|
||||
private String classifyName;
|
||||
@Schema(description="成功率")
|
||||
private BigDecimal successRate;
|
||||
@Schema(description="总平均耗时,单位:毫秒")
|
||||
private Long avgCostTime;
|
||||
@Schema(description="总执行次数")
|
||||
private Long totalExecuteCount;
|
||||
@Schema(description="成功执行次数")
|
||||
private Long successExecuteCount;
|
||||
@Schema(description="失败执行次数")
|
||||
private Long failExecuteCount;
|
||||
@Schema(description="统计时间")
|
||||
private Date statisticsTime;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomPipelineBuildRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件Id")
|
||||
private String atomId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="构建ID")
|
||||
private String buildId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomPipelineRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件的唯一标识")
|
||||
private String atomCode;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="插件的唯一标识")
|
||||
private String atomCode;
|
||||
@Schema(description="插件大类")
|
||||
private String classType;
|
||||
@Schema(description="生效范围")
|
||||
private String serviceScope;
|
||||
@Schema(description="适用Job类型,AGENT: 编译环境,AGENT_LESS:无编译环境")
|
||||
private String jobType;
|
||||
@Schema(description="操作系统")
|
||||
private String os;
|
||||
@Schema(description="所属分类ID")
|
||||
private String classifyId;
|
||||
@Schema(description="文档跳转链接")
|
||||
private String docsLink;
|
||||
@Schema(description="原子类型")
|
||||
private Integer atomType;
|
||||
@Schema(description="原子状态")
|
||||
private Integer atomStatus;
|
||||
@Schema(description="插件状态信息")
|
||||
private String atomStatusMsg;
|
||||
@Schema(description="简介")
|
||||
private String summary;
|
||||
@Schema(description="描述")
|
||||
private String description;
|
||||
@Schema(description="类别")
|
||||
private Integer categroy;
|
||||
@Schema(description="版本号")
|
||||
private String version;
|
||||
@Schema(description="LOGO URL地址")
|
||||
private String logoUrl;
|
||||
@Schema(description="插件图标")
|
||||
private String icon;
|
||||
@Schema(description="是否为默认原子")
|
||||
private Boolean defaultFlag;
|
||||
@Schema(description="是否为最新版本原子")
|
||||
private Boolean latestFlag;
|
||||
@Schema(description="无构建环境原子是否可以在有构建环境运行标识")
|
||||
private Boolean buildLessRunFlag;
|
||||
@Schema(description="代码库哈希ID")
|
||||
private String repositoryHashId;
|
||||
@Schema(description="代码库链接")
|
||||
private String codeSrc;
|
||||
@Schema(description="是否免费")
|
||||
private Boolean payFlag;
|
||||
@Schema(description="前端渲染模板版本")
|
||||
private String htmlTemplateVersion;
|
||||
@Schema(description="自定义扩展容器前端表单属性字段的JSON串")
|
||||
private String props;
|
||||
@Schema(description="预留字段")
|
||||
private String data;
|
||||
@Schema(description="原子发布者")
|
||||
private String publisher;
|
||||
@Schema(description="权值")
|
||||
private Integer weight;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="可见范围")
|
||||
private Integer visibilityLevel;
|
||||
@Schema(description="发布时间")
|
||||
private Date pubTime;
|
||||
@Schema(description="插件代码库不开源原因")
|
||||
private String privateReason;
|
||||
@Schema(description="是否删除")
|
||||
private Boolean deleteFlag;
|
||||
@Schema(description="代码库分支")
|
||||
private String branch;
|
||||
@Schema(description="是否是分支测试版本")
|
||||
private Boolean branchTestFlag;
|
||||
@Schema(description="是否为最新测试版本原子, TRUE:最新 FALSE:非最新")
|
||||
private Boolean latestTestFlag;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAtomVersionLogRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="插件Id")
|
||||
private String atomId;
|
||||
@Schema(description="发布类型")
|
||||
private Integer releaseType;
|
||||
@Schema(description="日志内容")
|
||||
private String content;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuditResourceRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceId;
|
||||
@Schema(description="资源名称")
|
||||
private String resourceName;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="操作")
|
||||
private String action;
|
||||
@Schema(description="操作内容")
|
||||
private String actionContent;
|
||||
@Schema(description="创建时间")
|
||||
private Date createdTime;
|
||||
@Schema(description="状态")
|
||||
private String status;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthActionRecord {
|
||||
@Schema(description="操作ID")
|
||||
private String action;
|
||||
@Schema(description="蓝盾-关联资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="IAM-关联资源类型")
|
||||
private String relatedResourceType;
|
||||
@Schema(description="操作名称")
|
||||
private String actionName;
|
||||
@Schema(description="动作英文名称")
|
||||
private String englishName;
|
||||
@Schema(description="创建者")
|
||||
private String createUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="是否删除")
|
||||
private Boolean delete;
|
||||
@Schema(description="操作类型")
|
||||
private String actionType;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthGroupInfoRecord {
|
||||
@Schema(description="主健ID")
|
||||
private Integer id;
|
||||
@Schema(description="用户组名称")
|
||||
private String groupName;
|
||||
@Schema(description="用户组标识 默认用户组标识一致")
|
||||
private String groupCode;
|
||||
@Schema(description="用户组类型 0默认分组")
|
||||
private Boolean groupType;
|
||||
@Schema(description="用户组所属项目")
|
||||
private String projectCode;
|
||||
@Schema(description="是否删除 0 可用 1删除")
|
||||
private Boolean isDelete;
|
||||
@Schema(description="添加人")
|
||||
private String createUser;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="用户组别名")
|
||||
private String displayName;
|
||||
@Schema(description="关联系统ID")
|
||||
private String relationId;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthGroupPerssionRecord {
|
||||
@Schema(description="主健ID")
|
||||
private String id;
|
||||
@Schema(description="权限动作")
|
||||
private String authAction;
|
||||
@Schema(description="用户组编号 默认7个内置组编号固定 自定义组编码随机")
|
||||
private String groupCode;
|
||||
@Schema(description="创建人")
|
||||
private String createUser;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthGroupUserRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="用户组ID")
|
||||
private String groupId;
|
||||
@Schema(description="添加用户")
|
||||
private String createUser;
|
||||
@Schema(description="添加时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthHandoverDetailRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="流程单号")
|
||||
private String flowNo;
|
||||
@Schema(description="组/授权资源ID")
|
||||
private String itemId;
|
||||
@Schema(description="组/授权资源关联的资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="交接类型-group/authorization")
|
||||
private String handoverType;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthHandoverOverviewRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="项目名称")
|
||||
private String projectName;
|
||||
@Schema(description="流程单号")
|
||||
private String flowNo;
|
||||
@Schema(description="标题")
|
||||
private String title;
|
||||
@Schema(description="申请人")
|
||||
private String applicant;
|
||||
@Schema(description="审批人")
|
||||
private String approver;
|
||||
@Schema(description="审批结果,0-审批中,1-审批成功,2-审批拒绝,3-撤销")
|
||||
private Integer status;
|
||||
@Schema(description="用户组数")
|
||||
private Integer groupCount;
|
||||
@Schema(description="授权个数")
|
||||
private Integer authorizationCount;
|
||||
@Schema(description="备注")
|
||||
private String remark;
|
||||
@Schema(description="最后操作人")
|
||||
private String lastOperator;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthIamCallbackRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="目标服务网关")
|
||||
private String gateway;
|
||||
@Schema(description="目标接口路径")
|
||||
private String path;
|
||||
@Schema(description="是否删除 true-是 false-否")
|
||||
private Boolean deleteFlag;
|
||||
@Schema(description="资源类型")
|
||||
private String resource;
|
||||
@Schema(description="接入系统")
|
||||
private String system;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthItsmCallbackRecord {
|
||||
@Schema(description="自增ID")
|
||||
private Integer id;
|
||||
@Schema(description="权限中心申请单ID")
|
||||
private Integer applyId;
|
||||
@Schema(description="ITSM申请单号")
|
||||
private String sn;
|
||||
@Schema(description="项目英文名")
|
||||
private String englishName;
|
||||
@Schema(description="权限中心审批单ID")
|
||||
private String callbackId;
|
||||
@Schema(description="申请人")
|
||||
private String applicant;
|
||||
@Schema(description="最后审批人")
|
||||
private String approver;
|
||||
@Schema(description="审批结果,0-审批拒绝,1-审批成功")
|
||||
private Boolean approveResult;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthManagerApprovalRecord {
|
||||
@Schema(description="自增ID")
|
||||
private Integer id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="管理员权限ID")
|
||||
private Integer managerId;
|
||||
@Schema(description="权限过期时间")
|
||||
private Date expiredTime;
|
||||
@Schema(description="审批单生效时间")
|
||||
private Date startTime;
|
||||
@Schema(description="审批单失效时间")
|
||||
private Date endTime;
|
||||
@Schema(description="发送状态 0-审核流程中 ,1-用户拒绝续期,2-用户同意续期,3-审批人拒绝续期,4-审批人同意续期")
|
||||
private Integer status;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthManagerRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="组织ID")
|
||||
private Integer organizationId;
|
||||
@Schema(description="层级ID")
|
||||
private Integer level;
|
||||
@Schema(description="权限策略ID")
|
||||
private Integer strategyid;
|
||||
@Schema(description="是否删除")
|
||||
private Integer isDelete;
|
||||
@Schema(description="创建用户")
|
||||
private String createUser;
|
||||
@Schema(description="修改用户")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthManagerUserHistoryRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="管理员权限ID")
|
||||
private Integer managerId;
|
||||
@Schema(description="权限生效起始时间")
|
||||
private Date startTime;
|
||||
@Schema(description="权限生效结束时间")
|
||||
private Date endTime;
|
||||
@Schema(description="创建用户")
|
||||
private String createUser;
|
||||
@Schema(description="修改用户")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthManagerUserRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="管理员权限ID")
|
||||
private Integer managerId;
|
||||
@Schema(description="权限生效起始时间")
|
||||
private Date startTime;
|
||||
@Schema(description="权限生效结束时间")
|
||||
private Date endTime;
|
||||
@Schema(description="创建用户")
|
||||
private String createUser;
|
||||
@Schema(description="修改用户")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthManagerWhitelistRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="管理策略ID")
|
||||
private Integer managerId;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthMigrationRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="迁移状态, 0-迁移中,1-迁移成功,2-迁移失败")
|
||||
private Integer status;
|
||||
@Schema(description="迁移前用户组数")
|
||||
private Integer beforeGroupCount;
|
||||
@Schema(description="迁移后用户组数")
|
||||
private Integer afterGroupCount;
|
||||
@Schema(description="迁移后资源数和资源用户组数")
|
||||
private String resourceCount;
|
||||
@Schema(description="开始时间")
|
||||
private Date startTime;
|
||||
@Schema(description="结束时间")
|
||||
private Date endTime;
|
||||
@Schema(description="总耗时")
|
||||
private Long totalTime;
|
||||
@Schema(description="错误信息")
|
||||
private String errorMessage;
|
||||
@Schema(description="迁移项目的网关路由tags")
|
||||
private String routerTag;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthMonitorSpaceRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="监控空间业务ID")
|
||||
private Long spaceBizId;
|
||||
@Schema(description="监控空间ID")
|
||||
private String spaceUid;
|
||||
@Schema(description="创建人")
|
||||
private String creator;
|
||||
@Schema(description="更新者")
|
||||
private String updateUser;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2AccessTokenRecord {
|
||||
@Schema(description="ACCESS_TOKEN")
|
||||
private String accessToken;
|
||||
@Schema(description="客户端ID")
|
||||
private String clientId;
|
||||
@Schema(description="登录的用户名,客户端模式该值为空")
|
||||
private String userName;
|
||||
@Schema(description="用于密码模式")
|
||||
private String passWord;
|
||||
@Schema(description="授权模式")
|
||||
private String grantType;
|
||||
@Schema(description="过期时间")
|
||||
private Long expiredTime;
|
||||
@Schema(description="REFRESH_TOKEN,客户端模式该值为空")
|
||||
private String refreshToken;
|
||||
@Schema(description="授权范围ID")
|
||||
private Integer scopeId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2ClientDetailsRecord {
|
||||
@Schema(description="客户端标识")
|
||||
private String clientId;
|
||||
@Schema(description="客户端秘钥")
|
||||
private String clientSecret;
|
||||
@Schema(description="客户端名称")
|
||||
private String clientName;
|
||||
@Schema(description="授权操作范围")
|
||||
private String scope;
|
||||
@Schema(description="图标")
|
||||
private String icon;
|
||||
@Schema(description="授权模式")
|
||||
private String authorizedGrantTypes;
|
||||
@Schema(description="跳转链接")
|
||||
private String webServerRedirectUri;
|
||||
@Schema(description="access_token有效时间")
|
||||
private Long accessTokenValidity;
|
||||
@Schema(description="refresh_token有效时间")
|
||||
private Long refreshTokenValidity;
|
||||
@Schema(description="创建人")
|
||||
private String createUser;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2CodeRecord {
|
||||
@Schema(description="客户端标识")
|
||||
private String clientId;
|
||||
@Schema(description="授权码")
|
||||
private String code;
|
||||
@Schema(description="用户名")
|
||||
private String userName;
|
||||
@Schema(description="过期时间")
|
||||
private Long expiredTime;
|
||||
@Schema(description="授权范围ID")
|
||||
private Integer scopeId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2RefreshTokenRecord {
|
||||
@Schema(description="REFRESH_TOKEN")
|
||||
private String refreshToken;
|
||||
@Schema(description="客户端ID")
|
||||
private String clientId;
|
||||
@Schema(description="过期时间")
|
||||
private Long expiredTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2ScopeOperationRecord {
|
||||
@Schema(description="主健ID")
|
||||
private Integer id;
|
||||
@Schema(description="授权操作ID")
|
||||
private String operationId;
|
||||
@Schema(description="授权操作中文名称")
|
||||
private String operationNameCn;
|
||||
@Schema(description="授权操作英文名称")
|
||||
private String operationNameEn;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,16 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthOauth2ScopeRecord {
|
||||
@Schema(description="主健ID")
|
||||
private Integer id;
|
||||
@Schema(description="授权范围")
|
||||
private String scope;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceAuthorizationRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="资源名")
|
||||
private String resourceName;
|
||||
@Schema(description="授予人")
|
||||
private String handoverFrom;
|
||||
@Schema(description="授予人中文名称")
|
||||
private String handoverFromCnName;
|
||||
@Schema(description="授予时间")
|
||||
private Date handoverTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceGroupApplyRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="成员ID")
|
||||
private String memberId;
|
||||
@Schema(description="IAM组ID")
|
||||
private Integer iamGroupId;
|
||||
@Schema(description="状态, 0-审批中,1-审批成功,2-审批超时")
|
||||
private Integer status;
|
||||
@Schema(description="检查次数,用于同步组数据")
|
||||
private Integer numberOfChecks;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceGroupConfigRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="用户组标识")
|
||||
private String groupCode;
|
||||
@Schema(description="用户组名称")
|
||||
private String groupName;
|
||||
@Schema(description="创建模式,0-开启时创建,1-启用权限管理时创建")
|
||||
private Boolean createMode;
|
||||
@Schema(description="用户组类型 0-默认组 1-自定义组")
|
||||
private Integer groupType;
|
||||
@Schema(description="用户组描述")
|
||||
private String description;
|
||||
@Schema(description="用户组授权范围")
|
||||
private String authorizationScopes;
|
||||
@Schema(description="用户组拥有的资源操作")
|
||||
private String actions;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceGroupMemberRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="用户组标识")
|
||||
private String groupCode;
|
||||
@Schema(description="IAM组ID")
|
||||
private Integer iamGroupId;
|
||||
@Schema(description="成员ID")
|
||||
private String memberId;
|
||||
@Schema(description="成员名")
|
||||
private String memberName;
|
||||
@Schema(description="成员类型,用户/组织/模板")
|
||||
private String memberType;
|
||||
@Schema(description="过期时间")
|
||||
private Date expiredTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceGroupPermissionRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="用户组关联的资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="用户组关联的资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="用户组关联的IAM资源ID")
|
||||
private String iamResourceCode;
|
||||
@Schema(description="用户组标识")
|
||||
private String groupCode;
|
||||
@Schema(description="关联的IAM组ID")
|
||||
private Integer iamGroupId;
|
||||
@Schema(description="操作ID")
|
||||
private String action;
|
||||
@Schema(description="动作关联的资源类型")
|
||||
private String actionRelatedResourceType;
|
||||
@Schema(description="组权限关联的资源类型")
|
||||
private String relatedResourceType;
|
||||
@Schema(description="组权限关联的资源ID")
|
||||
private String relatedResourceCode;
|
||||
@Schema(description="组权限关联的资源ID")
|
||||
private String relatedIamResourceCode;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceGroupRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="资源名")
|
||||
private String resourceName;
|
||||
@Schema(description="IAM资源ID")
|
||||
private String iamResourceCode;
|
||||
@Schema(description="用户组标识")
|
||||
private String groupCode;
|
||||
@Schema(description="用户组名称")
|
||||
private String groupName;
|
||||
@Schema(description="是否为默认组,0-非默认组,1-默认组")
|
||||
private Boolean defaultGroup;
|
||||
@Schema(description="关联的IAM组ID")
|
||||
private String relationId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="用户组描述")
|
||||
private String description;
|
||||
@Schema(description="人员模板ID")
|
||||
private Integer iamTemplateId;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="资源名")
|
||||
private String resourceName;
|
||||
@Schema(description="IAM资源ID")
|
||||
private String iamResourceCode;
|
||||
@Schema(description="开启权限管理,0-不启用,1-启用")
|
||||
private Boolean enable;
|
||||
@Schema(description="关联的IAM分级管理员ID")
|
||||
private String relationId;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建者")
|
||||
private String createUser;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceSyncRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="迁移状态, 0-同步中,1-同步成功,2-同步失败")
|
||||
private Integer status;
|
||||
@Schema(description="错误信息")
|
||||
private String errorMessage;
|
||||
@Schema(description="总耗时")
|
||||
private Long totalTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthResourceTypeRecord {
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="ID")
|
||||
private Integer id;
|
||||
@Schema(description="资源名称")
|
||||
private String name;
|
||||
@Schema(description="资源英文名称")
|
||||
private String englishName;
|
||||
@Schema(description="资源描述")
|
||||
private String desc;
|
||||
@Schema(description="资源英文描述")
|
||||
private String englishDesc;
|
||||
@Schema(description="父类资源")
|
||||
private String parent;
|
||||
@Schema(description="所属系统")
|
||||
private String system;
|
||||
@Schema(description="创建者")
|
||||
private String createUser;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新者")
|
||||
private String updateUser;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="是否删除")
|
||||
private Boolean delete;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthStrategyRecord {
|
||||
@Schema(description="策略主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="策略名称")
|
||||
private String strategyName;
|
||||
@Schema(description="策略内容")
|
||||
private String strategyBody;
|
||||
@Schema(description="是否删除 0未删除 1删除")
|
||||
private Integer isDelete;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建人")
|
||||
private String createUser;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthTemporaryVerifyRecordRecord {
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="项目ID")
|
||||
private String projectCode;
|
||||
@Schema(description="资源类型")
|
||||
private String resourceType;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceCode;
|
||||
@Schema(description="操作ID")
|
||||
private String action;
|
||||
@Schema(description="鉴权结果")
|
||||
private Boolean verifyResult;
|
||||
@Schema(description="最后鉴权时间")
|
||||
private Date lastVerifyTime;
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthUserBlacklistRecord {
|
||||
@Schema(description="")
|
||||
private Integer id;
|
||||
@Schema(description="用户ID")
|
||||
private String userId;
|
||||
@Schema(description="拉黑原因")
|
||||
private String remark;
|
||||
@Schema(description="拉黑时间")
|
||||
private Date createTime;
|
||||
@Schema(description="是否生效 1生效 0不生效")
|
||||
private Boolean status;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TAuthUserInfoRecord {
|
||||
@Schema(description="")
|
||||
private Integer id;
|
||||
@Schema(description="用户ID")
|
||||
private String userid;
|
||||
@Schema(description="邮箱")
|
||||
private String email;
|
||||
@Schema(description="手机号")
|
||||
private String phone;
|
||||
@Schema(description="注册时间")
|
||||
private Date createTime;
|
||||
@Schema(description="用户类型 0.页面注册 1.GitHub 2.Gitlab")
|
||||
private Integer userType;
|
||||
@Schema(description="最后登陆时间")
|
||||
private Date lastLoginTime;
|
||||
@Schema(description="用户状态,0--正常,1--冻结")
|
||||
private Integer userStatus;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TBuildResourceRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="构建资源代码")
|
||||
private String buildResourceCode;
|
||||
@Schema(description="构建资源名称")
|
||||
private String buildResourceName;
|
||||
@Schema(description="是否为默认原子")
|
||||
private Boolean defaultFlag;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TBusinessConfigRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="业务名称")
|
||||
private String business;
|
||||
@Schema(description="要控制的功能特性")
|
||||
private String feature;
|
||||
@Schema(description="业务取值")
|
||||
private String businessValue;
|
||||
@Schema(description="配置值")
|
||||
private String configValue;
|
||||
@Schema(description="配置描述")
|
||||
private String description;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCategoryRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="范畴代码")
|
||||
private String categoryCode;
|
||||
@Schema(description="范畴名称")
|
||||
private String categoryName;
|
||||
@Schema(description="范畴图标链接")
|
||||
private String iconUrl;
|
||||
@Schema(description="类型")
|
||||
private Integer type;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCertEnterpriseRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="证书ID")
|
||||
private String certId;
|
||||
@Schema(description="证书 mp 文件名称")
|
||||
private String certMpFileName;
|
||||
@Schema(description="证书 开发者名称")
|
||||
private String certDeveloperName;
|
||||
@Schema(description="证书 团队名称")
|
||||
private String certTeamName;
|
||||
@Schema(description="证书 uuid")
|
||||
private String certUuid;
|
||||
@Schema(description="更新时间")
|
||||
private Date certUpdateTime;
|
||||
@Schema(description="证书 过期时间")
|
||||
private Date certExpireDate;
|
||||
@Schema(description="证书 创建时间")
|
||||
private Date certCreateTime;
|
||||
@Schema(description="证书 mp 文件内容")
|
||||
private byte[] certMpFileContent;
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCertRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="证书ID")
|
||||
private String certId;
|
||||
@Schema(description="证书用户ID")
|
||||
private String certUserId;
|
||||
@Schema(description="证书类型")
|
||||
private String certType;
|
||||
@Schema(description="证书备注")
|
||||
private String certRemark;
|
||||
@Schema(description="证书 p12 文件名称")
|
||||
private String certP12FileName;
|
||||
@Schema(description="证书 mp 文件名称")
|
||||
private String certMpFileName;
|
||||
@Schema(description="证书 jks 文件名称")
|
||||
private String certJksFileName;
|
||||
@Schema(description="证书 jsk 别名")
|
||||
private String certJksAlias;
|
||||
@Schema(description="证书 jks 凭据ID")
|
||||
private String certJksAliasCredentialId;
|
||||
@Schema(description="证书 开发者名称")
|
||||
private String certDeveloperName;
|
||||
@Schema(description="证书 团队名称")
|
||||
private String certTeamName;
|
||||
@Schema(description="证书 uuid")
|
||||
private String certUuid;
|
||||
@Schema(description="证书 过期时间")
|
||||
private Date certExpireDate;
|
||||
@Schema(description="证书 创建时间")
|
||||
private Date certCreateTime;
|
||||
@Schema(description="证书 更新时间")
|
||||
private Date certUpdateTime;
|
||||
@Schema(description="凭证ID")
|
||||
private String credentialId;
|
||||
@Schema(description="证书 p12 文件内容")
|
||||
private byte[] certP12FileContent;
|
||||
@Schema(description="证书 mp 文件内容")
|
||||
private byte[] certMpFileContent;
|
||||
@Schema(description="证书 jsk 文件内容")
|
||||
private byte[] certJksFileContent;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCertTlsRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="证书ID")
|
||||
private String certId;
|
||||
@Schema(description="服务器crt证书名")
|
||||
private String certServerCrtFileName;
|
||||
@Schema(description="服务器key证书名")
|
||||
private String certServerKeyFileName;
|
||||
@Schema(description="客户端crt证书名")
|
||||
private String certClientCrtFileName;
|
||||
@Schema(description="客户端key证书名")
|
||||
private String certClientKeyFileName;
|
||||
@Schema(description="证书创建时间")
|
||||
private Date certCreateTime;
|
||||
@Schema(description="证书更新时间")
|
||||
private Date certUpdateTime;
|
||||
@Schema(description="Base64编码的加密后的证书内容")
|
||||
private byte[] certServerCrtFile;
|
||||
@Schema(description="Base64编码的加密后的证书内容")
|
||||
private byte[] certServerKeyFile;
|
||||
@Schema(description="Base64编码的加密后的证书内容")
|
||||
private byte[] certClientCrtFile;
|
||||
@Schema(description="Base64编码的加密后的证书内容")
|
||||
private byte[] certClientKeyFile;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TClassifyRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="所属镜像分类代码")
|
||||
private String classifyCode;
|
||||
@Schema(description="所属镜像分类名称")
|
||||
private String classifyName;
|
||||
@Schema(description="权值")
|
||||
private Integer weight;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="类型")
|
||||
private Integer type;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCommonNotifyMessageTemplateRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="模板代码")
|
||||
private String templateCode;
|
||||
@Schema(description="模板名称")
|
||||
private String templateName;
|
||||
@Schema(description="适用的通知类型(EMAIL:邮件 RTX:企业微信 WECHAT:微信 SMS:短信)")
|
||||
private String notifyTypeScope;
|
||||
@Schema(description="优先级")
|
||||
private Integer priority;
|
||||
@Schema(description="邮件来源")
|
||||
private Integer source;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TContainerRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="类型")
|
||||
private String type;
|
||||
@Schema(description="操作系统")
|
||||
private String os;
|
||||
@Schema(description="是否必须")
|
||||
private Integer required;
|
||||
@Schema(description="最大排队时间")
|
||||
private Integer maxQueueMinutes;
|
||||
@Schema(description="最大运行时间")
|
||||
private Integer maxRunningMinutes;
|
||||
@Schema(description="自定义扩展容器前端表单属性字段的JSON串")
|
||||
private String props;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TContainerResourceRelRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="构建容器ID")
|
||||
private String containerId;
|
||||
@Schema(description="资源ID")
|
||||
private String resourceId;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TControlPointMetadataRecord {
|
||||
@Schema(description="元数据ID")
|
||||
private String metadataId;
|
||||
@Schema(description="元数据类型")
|
||||
private String metadataType;
|
||||
@Schema(description="元数据名称")
|
||||
private String metadataName;
|
||||
@Schema(description="任务ID")
|
||||
private String taskId;
|
||||
@Schema(description="是否在线")
|
||||
private Boolean online;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TControlPointRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Integer id;
|
||||
@Schema(description="名称")
|
||||
private String name;
|
||||
@Schema(description="任务信息列表")
|
||||
private String taskList;
|
||||
@Schema(description="是否在线")
|
||||
private Boolean online;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TControlPointTaskRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="原子控制阶段")
|
||||
private String controlStage;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCountInterceptRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="日期")
|
||||
private Date date;
|
||||
@Schema(description="计数")
|
||||
private Integer count;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="拦截数")
|
||||
private Integer interceptCount;
|
||||
@Schema(description="RULE_INTERCEPT_COUNT + count)")
|
||||
private Integer ruleInterceptCount;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCountPipelineRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="日期")
|
||||
private Date date;
|
||||
@Schema(description="计数")
|
||||
private Integer count;
|
||||
@Schema(description="上次拦截时间")
|
||||
private Date lastInterceptTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="拦截数")
|
||||
private Integer interceptCount;
|
||||
}
|
@ -1,28 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCountRuleRecord {
|
||||
@Schema(description="主键ID")
|
||||
private Long id;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="规则ID")
|
||||
private Long ruleId;
|
||||
@Schema(description="日期")
|
||||
private Date date;
|
||||
@Schema(description="计数")
|
||||
private Integer count;
|
||||
@Schema(description="拦截数")
|
||||
private Integer interceptCount;
|
||||
@Schema(description="上次拦截时间")
|
||||
private Date lastInterceptTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TCredentialRecord {
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="凭据 ID")
|
||||
private String credentialId;
|
||||
@Schema(description="凭据名称")
|
||||
private String credentialName;
|
||||
@Schema(description="凭据用户ID")
|
||||
private String credentialUserId;
|
||||
@Schema(description="凭据类型")
|
||||
private String credentialType;
|
||||
@Schema(description="凭据备注")
|
||||
private String credentialRemark;
|
||||
@Schema(description="凭据内容")
|
||||
private String credentialV1;
|
||||
@Schema(description="凭据内容")
|
||||
private String credentialV2;
|
||||
@Schema(description="凭据内容")
|
||||
private String credentialV3;
|
||||
@Schema(description="凭据内容")
|
||||
private String credentialV4;
|
||||
@Schema(description="创建时间")
|
||||
private Date createdTime;
|
||||
@Schema(description="更新时间")
|
||||
private Date updatedTime;
|
||||
@Schema(description="修改人")
|
||||
private String updateUser;
|
||||
@Schema(description="")
|
||||
private Boolean allowAcrossProject;
|
||||
}
|
@ -1,34 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDataSourceRecord {
|
||||
@Schema(description="主键ID")
|
||||
private String id;
|
||||
@Schema(description="集群名称")
|
||||
private String clusterName;
|
||||
@Schema(description="模块标识")
|
||||
private String moduleCode;
|
||||
@Schema(description="数据源名称")
|
||||
private String dataSourceName;
|
||||
@Schema(description="容量是否满标识 true:是,false:否")
|
||||
private Boolean fullFlag;
|
||||
@Schema(description="创建者")
|
||||
private String creator;
|
||||
@Schema(description="修改者")
|
||||
private String modifier;
|
||||
@Schema(description="数据源URL地址")
|
||||
private String dsUrl;
|
||||
@Schema(description="数据源标签")
|
||||
private String tag;
|
||||
@Schema(description="数据库类型,DB:普通数据库,ARCHIVE_DB:归档数据库")
|
||||
private String type;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchJobDailyMetricsRecord {
|
||||
@Schema(description="自增ID")
|
||||
private Long id;
|
||||
@Schema(description="日期,格式:2023-12-09")
|
||||
private String theDate;
|
||||
@Schema(description="项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="运营ID")
|
||||
private String productId;
|
||||
@Schema(description="job构建类型")
|
||||
private String jobType;
|
||||
@Schema(description="构建来源,包含:BS,CODECC,AM,GIT等")
|
||||
private String channelCode;
|
||||
@Schema(description="job最大并发构建次数")
|
||||
private Integer maxJobConcurrency;
|
||||
@Schema(description="当天累计JOB耗时")
|
||||
private Integer sumJobCost;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesBuildContainerPoolNoRecord {
|
||||
@Schema(description="构建ID")
|
||||
private String buildId;
|
||||
@Schema(description="VmSeqID")
|
||||
private String vmSeqId;
|
||||
@Schema(description="流水线重试次数")
|
||||
private Integer executeCount;
|
||||
@Schema(description="容器名称")
|
||||
private String containerName;
|
||||
@Schema(description="构建机池编号")
|
||||
private String poolNo;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesBuildHisRecord {
|
||||
@Schema(description="")
|
||||
private Long id;
|
||||
@Schema(description="pipeline id")
|
||||
private String pipelineId;
|
||||
@Schema(description="build id")
|
||||
private String buidldId;
|
||||
@Schema(description="vm seq id")
|
||||
private String vmSeqId;
|
||||
@Schema(description="容器名称")
|
||||
private String containerName;
|
||||
@Schema(description="创建时间")
|
||||
private Date gmtCreate;
|
||||
@Schema(description="修改时间")
|
||||
private Date gmtModified;
|
||||
@Schema(description="CPU")
|
||||
private Integer cpu;
|
||||
@Schema(description="内存")
|
||||
private String memory;
|
||||
@Schema(description="磁盘")
|
||||
private String disk;
|
||||
@Schema(description="构建密钥")
|
||||
private String secretKey;
|
||||
@Schema(description="并发构建池")
|
||||
private String poolNo;
|
||||
@Schema(description="流水线重试次数")
|
||||
private Integer executeCount;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesBuildHistoryRecord {
|
||||
@Schema(description="")
|
||||
private Long id;
|
||||
@Schema(description="蓝盾项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="流水线ID")
|
||||
private String pipelineId;
|
||||
@Schema(description="流水线构建ID")
|
||||
private String buildId;
|
||||
@Schema(description="流水线CONTAINER_ID")
|
||||
private String vmSeqId;
|
||||
@Schema(description="构件池ID")
|
||||
private Integer poolNo;
|
||||
@Schema(description="构建容器ID")
|
||||
private String containerName;
|
||||
@Schema(description="构建密钥")
|
||||
private String secretKey;
|
||||
@Schema(description="构建容器CPU配额")
|
||||
private Double cpu;
|
||||
@Schema(description="构建容器内存配额 单位M")
|
||||
private String memory;
|
||||
@Schema(description="构建容器磁盘配额 单位G")
|
||||
private String disk;
|
||||
@Schema(description="流水线重试次数")
|
||||
private Integer executeCount;
|
||||
@Schema(description="DISPATCH类型")
|
||||
private String dispatchType;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
@Schema(description="修改时间")
|
||||
private Date updateTime;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesBuildPoolRecord {
|
||||
@Schema(description="")
|
||||
private Long id;
|
||||
@Schema(description="流水线构建ID")
|
||||
private String buildId;
|
||||
@Schema(description="流水线CONTAINER_ID")
|
||||
private String vmSeqId;
|
||||
@Schema(description="构建容器ID")
|
||||
private String containerName;
|
||||
@Schema(description="流水线重试次数")
|
||||
private Integer executeCount;
|
||||
@Schema(description="构建池编号")
|
||||
private Integer poolNo;
|
||||
@Schema(description="DISPATCH类型")
|
||||
private String dispatchType;
|
||||
@Schema(description="创建时间")
|
||||
private Date createTime;
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesBuildRecord {
|
||||
@Schema(description="")
|
||||
private String pipelineId;
|
||||
@Schema(description="")
|
||||
private String vmSeqId;
|
||||
@Schema(description="")
|
||||
private Integer poolNo;
|
||||
@Schema(description="")
|
||||
private String projectId;
|
||||
@Schema(description="")
|
||||
private String containerName;
|
||||
@Schema(description="")
|
||||
private String images;
|
||||
@Schema(description="")
|
||||
private Integer status;
|
||||
@Schema(description="")
|
||||
private Date createdTime;
|
||||
@Schema(description="")
|
||||
private Date updateTime;
|
||||
@Schema(description="")
|
||||
private String userId;
|
||||
@Schema(description="是否处于debug状态")
|
||||
private Boolean debugStatus;
|
||||
@Schema(description="debug时间")
|
||||
private Date debugTime;
|
||||
@Schema(description="CPU")
|
||||
private Integer cpu;
|
||||
@Schema(description="内存")
|
||||
private String memory;
|
||||
@Schema(description="磁盘")
|
||||
private String disk;
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesPerformanceConfigRecord {
|
||||
@Schema(description="主键")
|
||||
private Long id;
|
||||
@Schema(description="DISPATCH类型")
|
||||
private String dispatchType;
|
||||
@Schema(description="蓝盾项目ID")
|
||||
private String projectId;
|
||||
@Schema(description="基础配置ID")
|
||||
private Long optionId;
|
||||
@Schema(description="创建时间")
|
||||
private Date gmtCreate;
|
||||
@Schema(description="修改时间")
|
||||
private Date gmtModified;
|
||||
}
|
@ -1,26 +0,0 @@
|
||||
package cd.casic.ci.process.process.dataObject;
|
||||
|
||||
|
||||
import java.util.Date;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class TDispatchKubernetesPerformanceOptionRecord {
|
||||
@Schema(description="主键")
|
||||
private Long id;
|
||||
@Schema(description="DISPATCH类型")
|
||||
private String dispatchType;
|
||||
@Schema(description="CPU")
|
||||
private Double cpu;
|
||||
@Schema(description="内存 单位M")
|
||||
private String memory;
|
||||
@Schema(description="磁盘 单位G")
|
||||
private String disk;
|
||||
@Schema(description="描述")
|
||||
private String description;
|
||||
@Schema(description="创建时间")
|
||||
private Date gmtCreate;
|
||||
@Schema(description="修改时间")
|
||||
private Date gmtModified;
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user