parent
e8790e9f09
commit
4c7113e67e
@ -0,0 +1,36 @@
|
||||
package net.educoder.ecsonar.model.dto;
|
||||
|
||||
/**
|
||||
* @Author: youys
|
||||
* @Date: 2022/7/7
|
||||
* @Description:
|
||||
*/
|
||||
public class CloudBrainQualityInspectDTO {
|
||||
|
||||
private String taskId;
|
||||
private String projectId;
|
||||
|
||||
public CloudBrainQualityInspectDTO() {
|
||||
}
|
||||
|
||||
public CloudBrainQualityInspectDTO(String taskId, String projectId) {
|
||||
this.taskId = taskId;
|
||||
this.projectId = projectId;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
|
||||
public void setTaskId(String taskId) {
|
||||
this.taskId = taskId;
|
||||
}
|
||||
|
||||
public String getProjectId() {
|
||||
return projectId;
|
||||
}
|
||||
|
||||
public void setProjectId(String projectId) {
|
||||
this.projectId = projectId;
|
||||
}
|
||||
}
|
@ -1,81 +0,0 @@
|
||||
package net.educoder.ecsonar.model.vo;
|
||||
|
||||
|
||||
/**
|
||||
* @Author: youys
|
||||
* @Date: 2022/7/6
|
||||
* @Description:
|
||||
*/
|
||||
public class CloudQualityInspectMetricsVO {
|
||||
|
||||
|
||||
private String taskId;
|
||||
private String projectName;
|
||||
|
||||
/**
|
||||
* bug
|
||||
*/
|
||||
private Integer bugs;
|
||||
/**¬
|
||||
* 漏洞
|
||||
*/
|
||||
private Integer vulnerability;
|
||||
/**
|
||||
* 代码气味
|
||||
*/
|
||||
private Integer codeSmell;
|
||||
/**
|
||||
* 代码行数
|
||||
*/
|
||||
private Integer codeLines;
|
||||
|
||||
|
||||
public String getProjectName() {
|
||||
return projectName;
|
||||
}
|
||||
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
|
||||
public void setTaskId(String taskId) {
|
||||
this.taskId = taskId;
|
||||
}
|
||||
|
||||
public Integer getBugs() {
|
||||
return bugs;
|
||||
}
|
||||
|
||||
public void setBugs(Integer bugs) {
|
||||
this.bugs = bugs;
|
||||
}
|
||||
|
||||
public Integer getVulnerability() {
|
||||
return vulnerability;
|
||||
}
|
||||
|
||||
public void setVulnerability(Integer vulnerability) {
|
||||
this.vulnerability = vulnerability;
|
||||
}
|
||||
|
||||
|
||||
public Integer getCodeLines() {
|
||||
return codeLines;
|
||||
}
|
||||
|
||||
public void setCodeLines(Integer codeLines) {
|
||||
this.codeLines = codeLines;
|
||||
}
|
||||
|
||||
public Integer getCodeSmell() {
|
||||
return codeSmell;
|
||||
}
|
||||
|
||||
public void setCodeSmell(Integer codeSmell) {
|
||||
this.codeSmell = codeSmell;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue