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.LightReportError;
| import com.sandu.ximon.dao.domain.PlcReportError;
| import lombok.Data;
|
| /**
| * @author van
| */
| @Data
| public class PlcReportErrorBo extends PlcReportError {
|
| private String poleName;
| private String errorMsg;
| }
|
|