You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.7 KiB
C#
107 lines
2.7 KiB
C#
using Furion.DistributedIDGenerator;
|
|
using Myshipping.Application.Entity.TrackingSystem;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 服务流程运行活动表
|
|
/// </summary>
|
|
[SugarTable("service_workflow_run_activities")]
|
|
[Description("服务流程运行活动表")]
|
|
public class ServiceWorkFlowRunActivitiesInfo : TrackingSystemDbEntity
|
|
{
|
|
|
|
/// <summary>
|
|
/// 运行主键
|
|
/// </summary>
|
|
public string RUN_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 执行顺序号
|
|
/// </summary>
|
|
public int EXEC_SORT_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否起始 1-是 0-否
|
|
/// </summary>
|
|
public int IS_START { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否结束 1-是 0-否
|
|
/// </summary>
|
|
public int IS_END { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动主键
|
|
/// </summary>
|
|
public string ACT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动值
|
|
/// </summary>
|
|
public string ACT_VAL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动发生时间
|
|
/// </summary>
|
|
public Nullable<DateTime> ACT_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动备注
|
|
/// </summary>
|
|
public string ACT_REMARK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 下一个活动ID
|
|
/// </summary>
|
|
public string NEXT_ACT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否已产生 1-已产生 0-未产生
|
|
/// </summary>
|
|
public int IS_YIELD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态主键
|
|
/// </summary>
|
|
public string STATUS_SKU_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态代码
|
|
/// </summary>
|
|
public string STATUS_SKU_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态显示名称
|
|
/// </summary>
|
|
public string SHOW_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 来源类型 AUTO-自动 MANUAL-人工
|
|
/// </summary>
|
|
public string SOURCE_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父状态主键
|
|
/// </summary>
|
|
public string PARENT_ID { get; set;}
|
|
|
|
/// <summary>
|
|
/// 是否子状态 1-是子状态 0-不是子状态
|
|
/// </summary>
|
|
public int IS_SUB { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否子状态满足一个即可 1-其中一个子状态出现即主状态触发 0-不是
|
|
/// </summary>
|
|
public int IS_SUB_JUST { get; set; }
|
|
}
|
|
}
|