2025-07-04 09:50:02 +08:00

116 lines
3.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

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.

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;}
}
}