copy from ycl-smoke/src/main/java/com/ycl/smoke/remote/dto/AlarmMsgResponseDto.java
copy to ycl-smoke/src/main/java/com/ycl/smoke/dto/CurAlarmResponseDto.java
File was copied from ycl-smoke/src/main/java/com/ycl/smoke/remote/dto/AlarmMsgResponseDto.java |
| | |
| | | package com.ycl.smoke.remote.dto; |
| | | package com.ycl.smoke.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import com.ycl.smoke.entity.OdsAlarmMsg; |
| | | import com.ycl.smoke.entity.OdsCurAlarm; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | |
| | | |
| | | @Data |
| | | @NoArgsConstructor |
| | | public class AlarmMsgResponseDto { |
| | | public class CurAlarmResponseDto { |
| | | |
| | | @JsonProperty("content") |
| | | private List<OdsAlarmMsg> content; |
| | | private List<OdsCurAlarm> content; |
| | | |
| | | @JsonProperty("total") |
| | | private Integer total; |