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.
42 lines
1.1 KiB
C#
42 lines
1.1 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
|
|
{
|
|
/// <summary>
|
|
/// 服务流程与服务项目关系表
|
|
/// </summary>
|
|
[Tenant(CommonConst.MasterDb)]
|
|
[SugarTable("service_workflow_project_relation")]
|
|
[Description("服务流程与服务项目关系表")]
|
|
public class ServiceWorkFlowProjectRelation
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
|
|
public string PK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务流程主键
|
|
/// </summary>
|
|
public string SERVICE_WORKFLOW_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目主键
|
|
/// </summary>
|
|
public string SERVICE_PROJECT_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 流程版本号
|
|
/// </summary>
|
|
public string WF_VERSION { get; set; }
|
|
}
|
|
}
|