#
zwl
2026-04-03 99d39b9533897c8bda6409d4637b245d86967da2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.zy.asrs.entity.dto;
 
import lombok.Data;
 
@Data
public class BasCrnpMonitorDto {
 
    private Integer crnNo;
 
    private Integer localStatus;
 
    private String localStatusDesc;
 
    private Integer online;
 
    private String onlineDesc;
 
    private Integer mode;
 
    private String modeDesc;
 
    private Integer deviceStatus;
 
    private String deviceStatusDesc;
 
    private Integer taskNo;
 
    private Integer alarm;
 
    private String lastSyncTime;
 
    private String syncError;
 
    private String memo;
}