You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
828 B
50 lines
828 B
package com.qniao.iot.gizwits;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class DeviceTotalData {
|
|
|
|
/**
|
|
* 上次开机时间(时间戳)
|
|
*/
|
|
private Long lastBootTime;
|
|
|
|
/**
|
|
* 当天作业计数
|
|
*/
|
|
private Long theDayJobCount;
|
|
|
|
/**
|
|
* 当天作业时长(单位秒)
|
|
*/
|
|
private Long theDayJobDuration;
|
|
|
|
/**
|
|
* 当天开机时长(单位秒)
|
|
*/
|
|
private Long theDayDuration;
|
|
|
|
/**
|
|
* 累计作业计数
|
|
*/
|
|
private Long jobTotal;
|
|
|
|
/**
|
|
* 累计作业时长(单位秒)
|
|
*/
|
|
private Long jobDurationTotal;
|
|
|
|
/**
|
|
* 当前日期(格式:yyyy-MM-dd)
|
|
*/
|
|
private String currLocalDate;
|
|
|
|
/**
|
|
* 消息时间
|
|
*/
|
|
private Long reportTime;
|
|
}
|