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.
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
[Tenant(CommonConst.MasterDb)]
|
|
|
|
|
[SugarTable("service_workflow_activities_sub_relation")]
|
|
|
|
|
[Description("服务流程活动表包含子活动关系表")]
|
|
|
|
|
public class ServiceWorkFlowActivitiesSubRelation
|
|
|
|
|
{
|
|
|
|
|
/// <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_ACTIVITIES_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 子服务活动主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SUB_SERVICE_ACTIVITIES_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 显示顺序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SORT_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 值类型 STRING-字符 DATETIME-日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VAL_TYPE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 流程版本号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string WF_VERSION { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|