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/ServiceWorkFlowRunInfo.cs

73 lines
1.7 KiB
C#

using Furion.DistributedIDGenerator;
using Myshipping.Application.Entity.TrackingSystem;
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_run")]
[Description("服务流程主表")]
public class ServiceWorkFlowRunInfo : TrackingSystemDbEntity
{
public ServiceWorkFlowRunInfo()
{
PK_ID = IDGen.NextID().ToString();
CreatedTime = DateTime.Now;
}
/// <summary>
/// 服务流程主键
/// </summary>
public string SERVICE_WF_ID { get; set; }
/// <summary>
/// 业务系统代码
/// </summary>
public string BUSI_SYSTEM_CODE { get; set; }
/// <summary>
/// 业务主键
/// </summary>
public string BUSI_ID { get; set; }
/// <summary>
/// 提单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 船名航次
/// </summary>
public string VESSEL_VOYNO { get; set; }
/// <summary>
/// 订舱编号
/// </summary>
public string ORDER_NO { get; set; }
/// <summary>
/// 状态
/// </summary>
public string STATUS { get; set; }
/// <summary>
/// 活动数量
/// </summary>
public int ACTIVITIES_NUM { get; set; }
/// <summary>
/// 最后活动名称
/// </summary>
public int LST_ACT_NAME { get; set; }
}
}