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.
96 lines
2.3 KiB
C#
96 lines
2.3 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
|
|
{
|
|
/// <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 RELEASE_VERSION { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string STATUS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项主键
|
|
/// </summary>
|
|
public string SERVICE_PROJECT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项代码
|
|
/// </summary>
|
|
public string SERVICE_PROJECT_CODE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项名称
|
|
/// </summary>
|
|
public string SERVICE_PROJECT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动数量
|
|
/// </summary>
|
|
public int ACTIVITIES_NUM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后活动名称
|
|
/// </summary>
|
|
public string LST_ACT_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否已产生 1-已产生 0-未产生
|
|
/// </summary>
|
|
public int IS_YIELD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目发生时间
|
|
/// </summary>
|
|
public Nullable<DateTime> ACT_DATE { get; set; }
|
|
}
|
|
}
|