ReviewStandardTestInspectionContentResponse.java 569 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
package com.ruoyi.web.response;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * 检验内容库-检验内容 返回类
 * @author gxk
 */
@Data
@ApiModel
public class ReviewStandardTestInspectionContentResponse {

    @ApiModelProperty("测试场景")
    private String testScenario;

    @ApiModelProperty("测试类型")
    private String testType;

    @ApiModelProperty("用例编号")
    private String useCaseNumber;

    @ApiModelProperty("用例名称")
    private String  useCaseName;
}