liujie
2025-06-03 ced35443353a013091a70a240c846e4344fec19d
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.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("异常信息Vo")
public class AbnormalVo {
    @ApiModelProperty("异常原因")
    private String abnormaReason;
 
    @ApiModelProperty("异常时间")
    private String abnormaTime;
 
    @ApiModelProperty("异常机构")
    private String abnormaInstitution;
 
    @ApiModelProperty("移除异常原因")
    private String removeAbnormaReason;
 
    @ApiModelProperty("移除异常时间")
    private String removeAbnormaTime;
 
    @ApiModelProperty("移除异常机构")
    private String removeAbnormaInstitution;
 
}