| | |
| | | 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; |
| | | |
| | | } |