1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package org.jeecg.modules.board.vo;
|
| import lombok.Data;
|
| /**
| * @Author: Lius
| * @CreateTime: 2025-06-06
| * @Description:
| */
| @Data
| public class EquRunInfo {
| private String key;
| private String value;
| private String unit;
|
| public EquRunInfo() {
| }
|
| public EquRunInfo(String key, String value, String unit) {
| this.key = key;
| this.value = value;
| this.unit = unit;
| }
| }
|
|