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.
32 lines
732 B
C#
32 lines
732 B
C#
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Myshipping.Core.Entity;
|
|
using NPOI.SS.UserModel;
|
|
|
|
namespace Myshipping.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务租户流程配置
|
|
/// </summary>
|
|
[SugarTable("task_flow_tenant")]
|
|
[Description("租户任务流程配置 ")]
|
|
public class TaskFlowTenant : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务APIID
|
|
/// </summary>
|
|
public string TaskApiId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台代码
|
|
/// </summary>
|
|
public string SYSTEM_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平台名称
|
|
/// </summary>
|
|
public string SYSTEM_NAME { get; set; }
|
|
}
|
|
}
|