yupeng
2025-04-22 a03a1a440e45f0b64f19640e48e9099b2b79d3b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.system.vo;
 
import com.ruoyi.system.model.TFaultDescribeDic;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "故障描述VO")
public class TFaultDescribeDicVO extends TFaultDescribeDic {
 
    @ApiModelProperty(value = "故障区域名称")
    private String faultAreaName;
 
}