1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.sandu.ximon.dao.bo;
|
| import com.sandu.ximon.dao.domain.InterphoneSub;
| import lombok.Data;
|
| /**
| * @author ZZQ
| * @date 2022/5/10 17:31
| */
| @Data
| public class InterphoneSubBo extends InterphoneSub {
| private String poleId;
| private String PoleName;
| private Integer hostId;
| }
|
|