116 lines
3.3 KiB
C#
116 lines
3.3 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace MyCode.Project.Domain.Model
|
||
{
|
||
///<summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("sys_workprocess_history")]
|
||
public partial class SysWorkprocessHistory
|
||
{
|
||
public SysWorkprocessHistory(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:主键
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true,ColumnName="id")]
|
||
public long Id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:路径
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="type_path")]
|
||
public string TypePath {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:最后修改时间
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="edit_time")]
|
||
public DateTime EditTime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:数字越小,优先级越高
|
||
/// Default:0
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="priority")]
|
||
public int Priority {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:类型1:函数
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="func_type")]
|
||
public int FuncType {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:异常信息
|
||
/// Default:NULL
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="exception_info")]
|
||
public string ExceptionInfo {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:备注信息
|
||
/// Default:NULL
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="remark")]
|
||
public string Remark {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:执行情况,0:等待执行 1:执行中 9:执行成功 2:执行失败
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="status")]
|
||
public int Status {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:参数信息
|
||
/// Default:NULL
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="parameter_info")]
|
||
public string ParameterInfo {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:方法名
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="method_name")]
|
||
public string MethodName {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:公司ID
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="company_id")]
|
||
public long CompanyId {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:创建时间
|
||
/// Default:NULL
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="create_time")]
|
||
public DateTime? CreateTime {get;set;}
|
||
|
||
}
|
||
}
|