using System; using SqlSugar; using System.ComponentModel; using Myshipping.Core.Entity; using NPOI.SS.UserModel; namespace Myshipping.Application.Entity { /// /// 任务租户流程配置 /// [SugarTable("task_flow_tenant")] [Description("租户任务流程配置 ")] public class TaskFlowTenant : TaskManageDbEntity { /// /// 任务APIID /// public string TaskApiId { get; set; } /// /// 平台代码 /// public string SYSTEM_CODE { get; set; } /// /// 平台名称 /// public string SYSTEM_NAME { get; set; } } }