zbj//1.终端修改操作修改监测点信息写入日志

This commit is contained in:
zhangbaojian
2023-04-12 19:02:36 +08:00
parent dd86642a9d
commit e0a3155f6e
10 changed files with 286 additions and 20 deletions

View File

@@ -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;
}

View File

@@ -30,4 +30,4 @@ public class TerminalLogs {
@Column(name = "terminal_describe")
private String terminalDescribe;
}
}