zhuo
2025-05-06 c0062ec768989f560d5039d0cc0cca6622b150b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.device.dto;
 
import com.ruoyi.device.pojo.DeviceExaminePlanDetails;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Author: yuan
 * Date: 2024-12-17 星期二 15:34:44
 * Description:
 */
@Data
public class DeviceExaminePlanDetailsDto extends DeviceExaminePlanDetails {
    @ApiModelProperty("序号")
    private Integer index;
 
    @ApiModelProperty("记录状态, 0: 未开始, 1:待批准, 2:通过, 3:不通过")
    private Integer recordStatus;
 
    @ApiModelProperty("对比状态, 0: 未开始, 1:待批准, 2:通过, 3:不通过")
    private Integer recordContrastStatus;
 
}