com.github.rexsheng.springboot.faster.system.entity.JobLogDetail Maven / Gradle / Ivy
The newest version!
package com.github.rexsheng.springboot.faster.system.entity;
import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType;
import com.mybatisflex.annotation.Table;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.io.Serial;
/**
* 定时任务日志详情表 实体类。
*
* @author sheng
* @since 2024-06-02
*/
@Table("sys_job_log_detail")
public class JobLogDetail implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
/**
* ID
*/
@Id(keyType = KeyType.Auto)
private Long id;
/**
* 任务日志ID
*/
private Long jobLogId;
/**
* 级别
*/
private Integer level;
/**
* 信息
*/
private String msg;
/**
* 创建时间
*/
private LocalDateTime createTime;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getJobLogId() {
return jobLogId;
}
public void setJobLogId(Long jobLogId) {
this.jobLogId = jobLogId;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public LocalDateTime getCreateTime() {
return createTime;
}
public void setCreateTime(LocalDateTime createTime) {
this.createTime = createTime;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy