xuhy
8 天以前 1a2e22a27627b40689257442cc5a46598c634f8e
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;
}