1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
| package org.springblade.modules.electronrail.vo;
|
| import lombok.Data;
| import org.springblade.modules.electronrail.entity.ElectronRail;
|
| /**
| * 电子围栏视图实体类
| * @author zhongrj
| * @since 2022-03-03
| */
| @Data
| public class ElectronRailVO extends ElectronRail {
| private static final long serialVersionUID = 1L;
| }
|
|