提交代码
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.njcn.system.pojo.dto;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2025/05/15 下午 2:19【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class PqFrontLogsDTO {
|
||||
private String nodeId;
|
||||
private String processNo;
|
||||
private String businessId;
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
private String frontType;
|
||||
private String log;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package com.njcn.system.pojo.param;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
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 PqFrontLogsParam extends BaseParam {
|
||||
|
||||
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
private String frontType;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package com.njcn.system.pojo.po;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2025/05/15 下午 2:19【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "PQ_FRONT_LOGS")
|
||||
public class PqFrontLogs extends BaseEntity {
|
||||
@TableId(value = "id", type = IdType.ASSIGN_UUID)
|
||||
private String id;
|
||||
private String nodeId;
|
||||
private String processNo;
|
||||
private String businessId;
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
private String frontType;
|
||||
private String log;
|
||||
private Integer state;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package com.njcn.system.pojo.vo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.njcn.db.bo.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* Description:
|
||||
* Date: 2025/05/15 下午 2:19【需求编号】
|
||||
*
|
||||
* @author clam
|
||||
* @version V1.0.0
|
||||
*/
|
||||
@Data
|
||||
public class PqFrontLogsVO extends BaseEntity {
|
||||
@TableId(value = "id", type = IdType.ASSIGN_UUID)
|
||||
private String id;
|
||||
private String nodeId;
|
||||
private String processNo;
|
||||
private String businessId;
|
||||
private String businessName;
|
||||
private String level;
|
||||
private String logType;
|
||||
private String grade;
|
||||
private String frontType;
|
||||
private String log;
|
||||
private Integer state;
|
||||
}
|
||||
Reference in New Issue
Block a user