using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace MyCode.Project.Domain.Model
{
///
///工作调度
///
[SugarTable("SysWorkProcessHistory")]
public partial class SysWorkProcessHistory
{
public SysWorkProcessHistory(){
}
///
/// Desc:ID
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public Guid ID {get;set;}
///
/// Desc:对应的商家。
/// Default:
/// Nullable:False
///
public Guid MerchantID {get;set;}
///
/// Desc:执行类型。1=类对象,2=存储过程
/// Default:
/// Nullable:False
///
public int FuncType {get;set;}
///
/// Desc:执行的类
/// Default:
/// Nullable:True
///
public string FuncClass {get;set;}
///
/// Desc:执行的模块
/// Default:
/// Nullable:True
///
public string FuncMethod {get;set;}
///
/// Desc:参数信息
/// Default:
/// Nullable:True
///
public string ParamInfo {get;set;}
///
/// Desc:执行时间
/// Default:
/// Nullable:True
///
public DateTime? ExecuteTime {get;set;}
///
/// Desc:重试次数
/// Default:
/// Nullable:False
///
public int RetryCount {get;set;}
///
/// Desc:异常信息
/// Default:
/// Nullable:True
///
public string ExceptionInfo {get;set;}
///
/// Desc:执行状态。0=等待,1=执行,2=异常暂停,5=执行完成
/// Default:
/// Nullable:False
///
public int FuncStatus {get;set;}
///
/// Desc:创建人
/// Default:
/// Nullable:True
///
public string Creater {get;set;}
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? CreateTime {get;set;}
///
/// Desc:编辑人
/// Default:
/// Nullable:True
///
public string Editor {get;set;}
///
/// Desc:编辑时间
/// Default:
/// Nullable:True
///
public DateTime? EditTime {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
///
/// Desc:数字越小,优先级越高
/// Default:5
/// Nullable:True
///
public int? Priority {get;set;}
}
}