‘sxh’
2023-06-15 ccc0a99d6894844d83d751b924cfebe74da7826c
src/main/java/com/genersoft/iot/vmp/gb28181/bean/RecordInfo.java
@@ -1,6 +1,9 @@
package com.genersoft.iot.vmp.gb28181.bean;
import java.util.Date;
import io.swagger.v3.oas.annotations.media.Schema;
import java.time.Instant;
import java.util.List;
/**    
@@ -8,20 +11,29 @@
 * @author: swwheihei
 * @date:   2020年5月8日 下午2:05:56     
 */
@Schema(description = "设备录像查询结果信息")
public class RecordInfo {
   @Schema(description = "设备编号")
   private String deviceId;
   @Schema(description = "通道编号")
   private String channelId;
   @Schema(description = "命令序列号")
   private String sn;
   @Schema(description = "设备名称")
   private String name;
   @Schema(description = "列表总数")
   private int sumNum;
   private Date lastTime;
   private int count;
   private Instant lastTime;
   @Schema(description = "")
   private List<RecordItem> recordList;
   public String getDeviceId() {
@@ -72,11 +84,19 @@
      this.sn = sn;
   }
   public Date getLastTime() {
   public Instant getLastTime() {
      return lastTime;
   }
   public void setLastTime(Date lastTime) {
   public void setLastTime(Instant lastTime) {
      this.lastTime = lastTime;
   }
   public int getCount() {
      return count;
   }
   public void setCount(int count) {
      this.count = count;
   }
}