|  |  | 
 |  |  |  | 
 |  |  | namespace WIDESEA_Model.Models | 
 |  |  | { | 
 |  |  |     /// <summary> | 
 |  |  |     /// èç¹è·³è½¬è¡¨ | 
 |  |  |     /// </summary> | 
 |  |  |     [SugarTable(nameof(Dt_NodeTransition), "èç¹è·³è½¬è¡¨")] | 
 |  |  |     public class Dt_NodeTransition : BaseEntity | 
 |  |  |     { | 
 |  |  |         /// <summary> | 
 |  |  |         /// è·³è½¬ç¼å· | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "跳转ç¼å·ï¼ä¸»é®")] | 
 |  |  |         public int Id { get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// èµ·å§èç¹ç¼å· | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = false, ColumnDescription = "èµ·å§èç¹ç¼å·ï¼å¤é®")] | 
 |  |  |         public int FromNodeId { get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// ç®æ èç¹ç¼å· | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = false, ColumnDescription = "ç®æ èç¹ç¼å·ï¼å¤é®")] | 
 |  |  |         public int ToNodeId { get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// è·³è½¬æ¡ä»¶ï¼å¦âåæå跳转å°ä¸ä¸èç¹âï¼âæç»åç»ææµç¨âçï¼ | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "跳转æ¡ä»¶ï¼å¦âåæå跳转å°ä¸ä¸èç¹âï¼âæç»åç»ææµç¨âçï¼")] | 
 |  |  |         public string Condition { get; set; } | 
 |  |  |     } |