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.
69 lines
1.7 KiB
C#
69 lines
1.7 KiB
C#
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_release")]
|
|
[Description("服务流程发布表")]
|
|
public class ServiceWorkFlowReleaseInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务流程主键
|
|
/// </summary>
|
|
public string SERVICE_WF_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发布版本
|
|
/// </summary>
|
|
public string RELEASE_VERSION { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发布日期
|
|
/// </summary>
|
|
public DateTime PUBLISH_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发布人
|
|
/// </summary>
|
|
public long PUBLISH_ER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发布人名称
|
|
/// </summary>
|
|
public string PUBLISH_NAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否作废 1-已作废 0-未作废(默认未作废)
|
|
/// </summary>
|
|
public int IS_DEL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上一版本主键
|
|
/// </summary>
|
|
public string LAST_PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 累计计数
|
|
/// </summary>
|
|
public int TOTAL_NUM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报文MD5
|
|
/// </summary>
|
|
public string MSG_MD5 { get; set; }
|
|
}
|
|
}
|