Merge remote-tracking branch 'upstream/test' into test

yun-zuoyi
castle.zang 4 years ago
commit 124cc7d729

@ -0,0 +1,13 @@
package cn.estsh.i3plus.pojo.platform.job.repository;
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
import cn.estsh.i3plus.pojo.platform.platbean.SysLogTaskTime;
import org.springframework.stereotype.Repository;
/**
* @author ns
* @create 2021/10/12 0012 16:21
*/
@Repository
public interface SysLogTaskTimeRepository extends BaseRepository<SysLogTaskTime,Long> {
}

@ -13,6 +13,9 @@ import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Lob;
import javax.persistence.Table;
/**
* @Description :
@ -22,10 +25,12 @@ import javax.persistence.Column;
* @Modify :
**/
@Data
@DynamicInsert
@DynamicUpdate
//@DynamicInsert
//@DynamicUpdate
@Entity
@EqualsAndHashCode(callSuper = true)
@Api(value="定时任务执行日志",description = "定时任务执行记录")
@Table(name = "SYS_LOG_TASK_TIME")
public class SysLogTaskTime extends BaseBean {
private static final long serialVersionUID = -841008177433745529L;
@ -76,6 +81,36 @@ public class SysLogTaskTime extends BaseBean {
return taskStatus == null ? CommonEnumUtil.TRUE_OR_FALSE.TRUE.getValue() : taskStatus;
}
@Lob
@ApiParam(value ="任务异常日志")
private String taskLogError;
@ApiParam(value ="job类名")
private String jobClass;
@ApiParam(value ="触发器名称")
private String triggerName;
@ApiParam(value ="描述")
private String description;
@ApiParam(value ="触发时间")
private String fireTime;
@ApiParam(value ="下次触发时间")
private String nextFireTime;
@ApiParam(value ="上次触发时间")
private String prevFireTime;
@ApiParam(value ="上次触发时间")
private String scheduleName;
@ApiParam(value ="执行开始时间")
private String executeStartTime;
@ApiParam(value ="执行结束时间")
private String executeEndTime;
}

Loading…
Cancel
Save