From bd953391a74b86db829df43992c7cf3c5207634b Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期五, 27 六月 2025 18:07:22 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-system/src/main/java/com/ruoyi/system/vo/TInspectionReportVO.java | 12 ++++++++++-- 1 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/vo/TInspectionReportVO.java b/ruoyi-system/src/main/java/com/ruoyi/system/vo/TInspectionReportVO.java index 5aa02bd..ca24d33 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/vo/TInspectionReportVO.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/vo/TInspectionReportVO.java @@ -1,13 +1,21 @@ package com.ruoyi.system.vo; +import com.ruoyi.system.model.TExperimentDispatch; import com.ruoyi.system.model.TInspectionReport; import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data @ApiModel(value = "检验报告VO") public class TInspectionReportVO extends TInspectionReport { - - + @ApiModelProperty(value = "项目课题方案") + private String projectName; + @ApiModelProperty(value = "实验编号") + private String experimentCode; + @ApiModelProperty(value = "实验名称") + private String experimentName; + @ApiModelProperty(value = "实验调度") + private TExperimentDispatch experimentDispatch; } -- Gitblit v1.7.1