治理设备新增功能
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
package com.njcn.access.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 治理设备模块运行状态记录表
|
||||
* </p>
|
||||
*
|
||||
* @author xy
|
||||
* @since 2025-06-26
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("cs_line_run_data")
|
||||
public class CsLineRunData implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 监测点id
|
||||
*/
|
||||
private String lineId;
|
||||
|
||||
/**
|
||||
* 子模块编号id(没有子模块,则为0)
|
||||
*/
|
||||
private Integer moduleId;
|
||||
|
||||
/**
|
||||
* 最新数据时间
|
||||
*/
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime timeId;
|
||||
|
||||
/**
|
||||
* 子模块通讯状态(0:离线 1:连接)
|
||||
*/
|
||||
private Integer runState;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user