using Myshipping.Core;
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
{
///
/// 服务流程活动表
///
[Tenant(CommonConst.MasterDb)]
[SugarTable("service_workflow_activities")]
[Description("服务流程活动表")]
public class ServiceWorkFlowActivitiesInfo
{
///
/// 主键
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string PK_ID { get; set; }
///
/// 服务流程主键
///
public string SERVICE_WORKFLOW_ID { get; set; }
///
/// 状态主键
///
public string STATUS_SKU_ID { get; set; }
///
/// 状态显示名称
///
public string SHOW_NAME { get; set; }
///
/// 显示顺序号
///
public int SORT_NO { get; set; }
}
}