|
|
|
@ -13,8 +13,13 @@ namespace DS.WMS.Core.Op.Entity
|
|
|
|
|
/// 服务流程运行活动表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SqlSugar.SugarTable("service_workflow_run_activities", "服务流程运行活动表")]
|
|
|
|
|
public class ServiceWorkFlowRunActivitiesInfo : BaseModelV2<long>
|
|
|
|
|
public class ServiceWorkFlowRunActivitiesInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
|
|
|
public string PK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 运行主键
|
|
|
|
@ -100,5 +105,75 @@ namespace DS.WMS.Core.Op.Entity
|
|
|
|
|
/// 是否子状态满足一个即可 1-其中一个子状态出现即主状态触发 0-不是
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IS_SUB_JUST { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("创建时间")]
|
|
|
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, ColumnDescription = "创建时间")]
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("创建人")]
|
|
|
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, IsNullable = true, ColumnDescription = "创建人")]
|
|
|
|
|
public long CreateBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("修改人")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "修改人")]
|
|
|
|
|
public long? UpdateBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 更新时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("更新时间")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "更新时间")]
|
|
|
|
|
public Nullable<DateTime> UpdateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("删除")]
|
|
|
|
|
[SugarColumn(ColumnDescription = "是否删除", DefaultValue = "0")]
|
|
|
|
|
public bool Deleted { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("删除时间")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除时间", IsOnlyIgnoreInsert = true)]
|
|
|
|
|
public Nullable<DateTime> DeleteTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除人
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("删除人")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除人", IsOnlyIgnoreInsert = true)]
|
|
|
|
|
public Nullable<long> DeleteBy { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("创建人名称")]
|
|
|
|
|
[SugarColumn(IsOnlyIgnoreUpdate = true, IsNullable = true, ColumnDescription = "创建人名称", Length = 50)]
|
|
|
|
|
public string CreateUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 修改人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("修改人名称")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "修改人名称", Length = 50)]
|
|
|
|
|
public string UpdateUserName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 删除人名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Description("删除人名称")]
|
|
|
|
|
[SugarColumn(IsNullable = true, ColumnDescription = "删除人名称", Length = 50, IsOnlyIgnoreInsert = true)]
|
|
|
|
|
public string DeleteUserName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|