This commit is contained in:
2025-03-14 11:47:47 +08:00
parent c2ebbd71e2
commit 05bc2773b9
12 changed files with 205 additions and 50 deletions

View File

@@ -0,0 +1,16 @@
package com.ycwl.basic.model.pc.device.req;
import lombok.Data;
import java.util.List;
@Data
public class DeviceBatchSortRequest {
private List<SortItem> list;
@Data
public static class SortItem {
private Long id;
private Integer sort;
}
}

View File

@@ -33,6 +33,8 @@ public class DeviceRespVO {
private Integer online;
private String coverUrl;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date coverTime;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date createAt;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date updateAt;