zbj//1.终端修改操作修改监测点信息写入日志
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
package com.njcn.device.pq.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
*
|
||||
* </p>
|
||||
*
|
||||
* @author hongawen
|
||||
* @since 2023-04-12
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("pqs_terminal_logs")
|
||||
public class PqsTerminalLogs extends BaseEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 终端运维日志Id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 装置或监测点Id
|
||||
*/
|
||||
private String objIndex;
|
||||
|
||||
/**
|
||||
* 运维日志类型Id
|
||||
*/
|
||||
private String terminalType;
|
||||
|
||||
/**
|
||||
* 内容
|
||||
*/
|
||||
private String terminalDescribe;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 更新用户
|
||||
*/
|
||||
private String updateBy;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 创建用户
|
||||
*/
|
||||
private String createBy;
|
||||
|
||||
/**
|
||||
* 状态 0-删除;1-正常;默认正常
|
||||
*/
|
||||
private Integer state;
|
||||
|
||||
|
||||
}
|
||||
@@ -30,4 +30,4 @@ public class TerminalLogs {
|
||||
@Column(name = "terminal_describe")
|
||||
private String terminalDescribe;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user