微服务版本相关bug修改
This commit is contained in:
@@ -18,6 +18,7 @@ public class PqFrontLogsDTO {
|
||||
private String nodeId;
|
||||
private String processNo;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.njcn.system.pojo.param;
|
||||
|
||||
import com.njcn.web.pojo.param.BaseParam;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2025/05/15 下午 2:19【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class PqFrontLogsChildParam extends BaseParam {
|
||||
|
||||
//terminal设备,measurepoint监测点
|
||||
private String mainId;
|
||||
|
||||
}
|
||||
@@ -18,10 +18,8 @@ public class PqFrontLogsParam extends BaseParam {
|
||||
|
||||
//terminal设备,measurepoint监测点
|
||||
private String level;
|
||||
//"logtype": "com/data", //日志类型
|
||||
private String logType;
|
||||
//"grade": "NORMAL/DEBUG", //日志等级
|
||||
private String grade;
|
||||
|
||||
private String code;
|
||||
//前置类型stat稳态/recall补招/realTime实时/comtrade
|
||||
private String frontType;
|
||||
|
||||
|
||||
@@ -22,10 +22,11 @@ public class PqFrontLogs extends BaseEntity {
|
||||
private String nodeId;
|
||||
private String processNo;
|
||||
private String businessId;
|
||||
private String code;
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
// private String grade;
|
||||
private String frontType;
|
||||
private String log;
|
||||
// private String log;
|
||||
private Integer state;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.njcn.system.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2025/09/03 下午 1:53【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "pq_front_logs_child")
|
||||
public class PqFrontLogsChild extends BaseEntity {
|
||||
@TableId(value = "id", type = IdType.ASSIGN_UUID)
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 主表id
|
||||
*/
|
||||
@TableField(value = "main_id")
|
||||
private String mainId;
|
||||
|
||||
@TableField(value = "log")
|
||||
private String log;
|
||||
|
||||
@TableField(value = "grade")
|
||||
private String grade;
|
||||
|
||||
@TableField(value = "`state`")
|
||||
private Integer state;
|
||||
|
||||
}
|
||||
@@ -32,6 +32,10 @@ public class PqFrontLogsVO extends BaseEntity {
|
||||
private String grade;
|
||||
//前置业务类型
|
||||
private String frontType;
|
||||
//前置业务类型
|
||||
private String code;
|
||||
//前置业务类型
|
||||
private String codeName;
|
||||
//日志详情
|
||||
private String log;
|
||||
private Integer state;
|
||||
|
||||
Reference in New Issue
Block a user