OpenAuth.Net/OpenAuth.Repository/Domain/OpenJob.cs
yubaolee 9c2d044d12 增加雪花算法https://gitee.com/yitter/idgenerator
增加对数据库主键为numberic的支持
2021-03-13 16:21:56 +08:00

148 lines
4.8 KiB
C#
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a CodeSmith Template.
//
// DO NOT MODIFY contents of this file. Changes to this
// file will be lost if the code is regenerated.
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using OpenAuth.Repository.Core;
namespace OpenAuth.Repository.Domain
{
/// <summary>
/// 定时任务
/// </summary>
[Table("OpenJob")]
public partial class OpenJob : StringEntity
{
public OpenJob()
{
this.JobName= string.Empty;
this.RunCount= 0;
this.ErrorCount= 0;
this.NextRunTime= DateTime.Now;
this.LastRunTime= DateTime.Now;
this.LastErrorTime= DateTime.Now;
this.JobType= 0;
this.JobCall= string.Empty;
this.JobCallParams= string.Empty;
this.Cron= string.Empty;
this.Status= 0;
this.Remark= string.Empty;
this.CreateTime= DateTime.Now;
this.CreateUserId= string.Empty;
this.CreateUserName= string.Empty;
this.UpdateTime= DateTime.Now;
this.UpdateUserId= string.Empty;
this.UpdateUserName= string.Empty;
this.OrgId= string.Empty;
}
/// <summary>
/// 任务名称
/// </summary>
[Description("任务名称")]
public string JobName { get; set; }
/// <summary>
/// 任务执行次数
/// </summary>
[Description("任务执行次数")]
public int RunCount { get; set; }
/// <summary>
/// 异常次数
/// </summary>
[Description("异常次数")]
public int ErrorCount { get; set; }
/// <summary>
/// 下次执行时间
/// </summary>
[Description("下次执行时间")]
public System.DateTime? NextRunTime { get; set; }
/// <summary>
/// 最后一次执行时间
/// </summary>
[Description("最后一次执行时间")]
public System.DateTime? LastRunTime { get; set; }
/// <summary>
/// 最后一次失败时间
/// </summary>
[Description("最后一次失败时间")]
public System.DateTime? LastErrorTime { get; set; }
/// <summary>
/// 任务执行方式0本地任务1外部接口任务
/// </summary>
[Description("任务执行方式0本地任务1外部接口任务")]
public int JobType { get; set; }
/// <summary>
/// 任务地址
/// </summary>
[Description("任务地址")]
public string JobCall { get; set; }
/// <summary>
/// 任务参数JSON格式
/// </summary>
[Description("任务参数JSON格式")]
public string JobCallParams { get; set; }
/// <summary>
/// CRON表达式
/// </summary>
[Description("CRON表达式")]
public string Cron { get; set; }
/// <summary>
/// 任务运行状态0停止1正在运行2暂停
/// </summary>
[Description("任务运行状态0停止1正在运行2暂停")]
public int Status { get; set; }
/// <summary>
/// 备注
/// </summary>
[Description("备注")]
public string Remark { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[Description("创建时间")]
public System.DateTime CreateTime { get; set; }
/// <summary>
/// 创建人ID
/// </summary>
[Description("创建人ID")]
[Browsable(false)]
public string CreateUserId { get; set; }
/// <summary>
/// 创建人
/// </summary>
[Description("创建人")]
public string CreateUserName { get; set; }
/// <summary>
/// 最后更新时间
/// </summary>
[Description("最后更新时间")]
public System.DateTime? UpdateTime { get; set; }
/// <summary>
/// 最后更新人ID
/// </summary>
[Description("最后更新人ID")]
[Browsable(false)]
public string UpdateUserId { get; set; }
/// <summary>
/// 最后更新人
/// </summary>
[Description("最后更新人")]
public string UpdateUserName { get; set; }
/// <summary>
/// 所属部门
/// </summary>
[Description("所属部门")]
[Browsable(false)]
public string OrgId { get; set; }
}
}