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.
|
|
|
|
using Myshipping.Application.Entity.TrackingSystem;
|
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务流程活动表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("service_workflow_activities")]
|
|
|
|
|
[Description("服务流程活动表")]
|
|
|
|
|
public class ServiceWorkFlowActivitiesInfo : TrackingSystemDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string STATUS_SKU_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 状态显示名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SHOW_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|