1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zhitan.energyMonitor.domain.vo;
|
| import lombok.Data;
|
| /**
| * @Description: TODO
| * @author: yxw
| * @date: 2022年04月24日 16:07
| */
| @Data
| public class ListElectricityMeterVO {
| /**
| * 电表名称
| */
| private String label;
| /**
| * 电表id
| */
| private String code;
| }
|
|