EquipmentFailurelVO.java
1.5 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.skua.modules.statistics.vo;
import com.skua.core.aspect.annotation.Dict;
import com.skua.tool.annotation.JoinSqlQueryAnno;
import com.skua.tool.enums.JoinSqlQueryEnum;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* 设备故障对象
* @auther kangwei
* @create 2025-03-07-17:56
*/
@Data
@ApiModel(value="EquipmentFailurelVO ", description="设备故障对象")
public class EquipmentFailurelVO {
@Dict(dictTable = "sys_depart",dicCode = "id",dicText = "depart_name")
@ApiModelProperty(value = "机构ID")
private String departId;
@ApiModelProperty(value = "机构ID集合")
private String departIds;
@ApiModelProperty(value = "机构名称")
private String departName;
@Dict(dictTable = "sys_depart",dicCode = "id",dicText = "depart_name")
@ApiModelProperty(value = "所属公司")
private String createCmpy;
@ApiModelProperty(value = "设备编号")
private String infoId;
@ApiModelProperty(value = "设备名称")
private String equipmentName;
@ApiModelProperty(value = "故障信号数量")
private String gzxhCount;
@ApiModelProperty(value = "维修工单数量")
private String repairFormCount;
@ApiModelProperty(value = "查询参数:开始时间")
private String startTime;
@ApiModelProperty(value = "查询参数:结束时间")
private String endTime;
}