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.
BookingHeChuan/Myshipping.Application/Entity/TrackingSystem/ServiceWorkFlowActivitiesIn...

32 lines
770 B
C#

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; }
}
}