技术监督测试管理新增报告上传、审核报告查看

This commit is contained in:
xy
2024-07-02 19:19:08 +08:00
parent 8502421b91
commit e6a1874abf
6 changed files with 21 additions and 0 deletions

View File

@@ -58,6 +58,12 @@ public class SurveyTestParam implements Serializable {
@ApiModelProperty(value = "测试报告")
private String testReport;
/**
* 技术监督报告
*/
@ApiModelProperty(value = "技术监督报告")
private String supervisionReport;
/**
* 是否有问题 0 没有问题 1 有问题
*/

View File

@@ -67,6 +67,11 @@ public class SurveyTest extends BaseEntity implements Serializable {
*/
private String testReport;
/**
* 技术监督报告
*/
private String supervisionReport;
/**
* 是否有问题 0 没有问题 1 有问题
*/

View File

@@ -120,4 +120,7 @@ public class WarningLeafletVO extends BaseEntity implements Serializable{
@ApiModelProperty("预告警单下载路径")
private String filePath;
@ApiModelProperty("技术监督报告")
private String supervisionReport;
}

View File

@@ -93,6 +93,11 @@ public class SurveyTestVO extends BaseEntity implements Serializable {
*/
private String testReport;
/**
* 技术监督报告
*/
private String supervisionReport;
/**
* 是否有问题 0 没有问题 1 有问题
*/