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.
33 lines
778 B
C#
33 lines
778 B
C#
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CentralControl.BaseData
|
|
{
|
|
public class NodePrecuss
|
|
{
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// 前置节点
|
|
/// </summary>
|
|
public int? PreNodeId{ get; set; }
|
|
/// <summary>
|
|
/// 前置节点
|
|
/// </summary>
|
|
public virtual NodeSetting PreNodeSetting{ get; set; }
|
|
/// <summary>
|
|
/// 后置节点
|
|
/// </summary>
|
|
public int? AfterNodeId{ get; set; }
|
|
/// <summary>
|
|
/// 后置节点
|
|
/// </summary>
|
|
public virtual NodeSetting AfterNodeSetting{ get; set; }
|
|
/// <summary>
|
|
/// 分流值
|
|
/// </summary>
|
|
public int? NodeValue{ get; set; }
|
|
}
|
|
} |