InspectionContentResponse.java 509 Bytes
package com.ruoyi.web.response;

import com.ruoyi.domain.vo.InspectionContentVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.List;

@ApiModel(value = "InspectionContentResponse", description = "查询检验内容库车型试验")
@Data
public class InspectionContentResponse {

    @ApiModelProperty("测试用例")
    List<InspectionContentVO> inspectionContent;

    @ApiModelProperty("总条数")
    Integer totalCount;
}