jinlin
2024-08-07 38d87eb232eadb24fdcc7602609a6ec3592df7bd
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
27
28
package com.zt.life.modules.mainPart.TestScheme.dto;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.zt.common.entity.BusiEntity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
 
@Data
public class ResultDto {
 
    @ApiModelProperty(value = "")
    private int acceptNumber;
 
    @ApiModelProperty(value = "")
    private String totalTestTime;
 
    @ApiModelProperty(value = "")
    private String number;
 
    @ApiModelProperty(value = "")
    private String productionRiskReal;
 
    @ApiModelProperty(value = "")
    private String userRiskReal;
 
}