liujie
4 小时以前 281c6016ab0ea5b2eeecb9167d9ee690b6fdac1f
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;
 
}