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_relation")]
[Description("服务流程与服务流程活动关系表")]
public class ServiceWorkFlowActivitiesRelation
{
///
/// 主键
///
[SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)]
public string PK_ID { get; set; }
///
/// 服务流程主键
///
public string SERVICE_WORKFLOW_ID { get; set; }
///
/// 服务项目主键
///
public string SERVICE_ACTIVITIES_ID { get; set; }
///
/// 显示顺序号
///
public int SORT_NO { get; set; }
///
/// 是否包含子状态 1-包含 0-不包含
///
public int IS_CONTAINS_SUB { get; set; }
///
/// 值类型 STRING-字符 DATETIME-日期
///
public string VAL_TYPE { get; set; }
///
/// 流程版本号
///
public string WF_VERSION { get; set; }
}
}