|  |  | 
 |  |  |  | 
 |  |  | namespace WIDESEA_Model.Models | 
 |  |  | { | 
 |  |  |     /// <summary> | 
 |  |  |     /// å®¡æ¹æµç¨è¡¨ | 
 |  |  |     /// </summary> | 
 |  |  |     [SugarTable(nameof(Dt_ApprovalFlow), "å®¡æ¹æµç¨è¡¨")] | 
 |  |  |     public class Dt_ApprovalFlow : BaseEntity | 
 |  |  |     { | 
 |  |  |         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "å®¡æ¹æµç¨ç¼å·ï¼ä¸»é®")] | 
 |  |  |         /// <summary> | 
 |  |  |         /// ä¸»é® | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主é®")] | 
 |  |  |         public int Id { get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// å®¡æ¹æµç¨ç¼å· | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "å®¡æ¹æµç¨ç¼å·")] | 
 |  |  |         public string FlowCode {  get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// å®¡æ¹æµç¨åç§° | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "å®¡æ¹æµç¨åç§°")] | 
 |  |  |         public string FlowName { get; set; } | 
 |  |  |  | 
 |  |  |         /// <summary> | 
 |  |  |         /// å®¡æ¹æµç¨æè¿° | 
 |  |  |         /// </summary> | 
 |  |  |         [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "å®¡æ¹æµç¨æè¿°")] | 
 |  |  |         public string FlowDes { get; set; } | 
 |  |  |     } |