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 { /// /// 服务流程运行活动表 /// [SugarTable("service_workflow_run_activities")] [Description("服务流程运行活动表")] public class ServiceWorkFlowRunActivitiesInfo : TrackingSystemDbEntity { public ServiceWorkFlowRunActivitiesInfo() { PK_ID = IDGen.NextID().ToString(); CreatedTime = DateTime.Now; } /// /// 运行主键 /// public string RUN_ID { get; set; } /// /// 执行顺序号 /// public int EXEC_SORT_NO { get; set; } /// /// 是否起始 1-是 0-否 /// public int IS_START { get; set; } /// /// 是否结束 1-是 0-否 /// public int IS_END { get; set; } /// /// 活动主键 /// public string ACT_ID { get; set; } /// /// 活动值 /// public string ACT_VAL { get; set; } /// /// 活动发生时间 /// public Nullable ACT_DATE { get; set; } /// /// 是否已产生 1-已产生 0-未产生 /// public int IS_YIELD { get; set; } /// /// 状态主键 /// public string STATUS_SKU_ID { get; set; } /// /// 状态代码 /// public string STATUS_SKU_CODE { get; set; } /// /// 状态显示名称 /// public string SHOW_NAME { get; set; } /// /// 来源类型 AUTO-自动 MANUAL-人工 /// public string SOURCE_TYPE { get; set; } } }