blankk
2 years ago
8 changed files with 195 additions and 29 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
package com.ruoyi.code.camera.domain; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class ChartData implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private Integer id; |
||||
|
||||
private String name; |
||||
|
||||
private Integer stnmId; |
||||
|
||||
private String type; |
||||
|
||||
private String barMaxWidth = "20"; |
||||
|
||||
private boolean smooth = false; |
||||
|
||||
private String symbol = "none"; |
||||
|
||||
private List<Object> data; |
||||
|
||||
public ChartData(Integer id, String name, Integer stnmId, String type, List<Object> data) { |
||||
this.id = id; |
||||
this.name = name; |
||||
this.stnmId = stnmId; |
||||
this.type = type; |
||||
this.data = data; |
||||
} |
||||
|
||||
public ChartData() { |
||||
} |
||||
} |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
package com.ruoyi.code.camera.domain; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class YcData implements Serializable { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
private Integer id; |
||||
|
||||
private String stnm; |
||||
|
||||
private String stcd; |
||||
|
||||
private Integer stnmId; |
||||
|
||||
private String tm; |
||||
|
||||
private Long clock; |
||||
|
||||
private String status; |
||||
|
||||
private Integer modNum; |
||||
|
||||
private Double value; |
||||
|
||||
private String dtmnm; |
||||
} |
Loading…
Reference in new issue