This commit is contained in:
2025-01-16 18:28:04 +08:00
parent 0bba613001
commit bbcbdd2839
24 changed files with 436 additions and 111 deletions

View File

@ -28,6 +28,7 @@ public class DeviceEntity {
* 设备编号
*/
private String no;
private String no2;
/**
* 经度
*/

View File

@ -39,4 +39,6 @@ public class DeviceRespVO {
private String scenicName;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date keepaliveAt;
private String deviceNo;
private String channelNo;
}

View File

@ -2,6 +2,8 @@ package com.ycwl.basic.model.pc.video.entity;
import lombok.Data;
import java.util.Date;
@Data
public class MemberVideoEntity {
private Long id;
@ -13,4 +15,5 @@ public class MemberVideoEntity {
private Long videoId;
private Integer isBuy;
private Long orderId;
private Date createTime;
}