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