| | |
| | | |
| | | namespace WIDESEA_Model.Models |
| | | { |
| | | /// <summary> |
| | | /// 审æ¹èç¹è¡¨ |
| | | /// </summary> |
| | | [SugarTable(nameof(Dt_ApprovalNode), "审æ¹èç¹è¡¨")] |
| | | public class Dt_ApprovalNode : 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, ColumnDescription = "å®¡æ¹æµç¨ç¼å·ï¼å¤é®")] |
| | | public int FlowId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 审æ¹èç¹åç§° |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "审æ¹èç¹åç§°")] |
| | | public string NodeName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// èç¹ç±»åï¼å¦å人审æ¹ãå¤äººå®¡æ¹ãä¼ç¾çï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "èç¹ç±»åï¼å¦å人审æ¹ãå¤äººå®¡æ¹ãä¼ç¾çï¼")] |
| | | public int NodeType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 审æ¹äººè§è²ï¼å¦é¨é¨ç»çãæ»ç»ççï¼ |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "审æ¹äººè§è²ï¼å¦é¨é¨ç»çãæ»ç»ççï¼")] |
| | | public int ApproverRole { get; set; } |
| | | |
| | | /// <summary> |
| | | /// èç¹é¡ºåº |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "èç¹é¡ºåº")] |
| | | public int NodeSequence { get; set; } |
| | | } |