|
@@ -239,5 +239,23 @@ public class DataOrder : CreationModificationEntity
|
|
/// 实际办理意见
|
|
/// 实际办理意见
|
|
/// </summary>
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "实际办理意见", IsNullable = true)]
|
|
[SugarColumn(ColumnDescription = "实际办理意见", IsNullable = true)]
|
|
- public string? ActualOpinion { get; set; }
|
|
|
|
|
|
+ public string? ActualOpinion { get; set; }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 整理标题
|
|
|
|
+ /// </summary>
|
|
|
|
+ [SugarColumn(ColumnDescription = "整理标题", IsNullable = true)]
|
|
|
|
+ public string? ArrangeTitle { get; set; }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 整理内容
|
|
|
|
+ /// </summary>
|
|
|
|
+ [SugarColumn(ColumnDescription = "整理标题", IsNullable = true, ColumnDataType = "varchar(2000)")]
|
|
|
|
+ public string? ArrangeContent { get; set; }
|
|
|
|
+
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 整理结果
|
|
|
|
+ /// </summary>
|
|
|
|
+ [SugarColumn(ColumnDescription = "整理标题", IsNullable = true, ColumnDataType = "varchar(2000)")]
|
|
|
|
+ public string? ArrangeOpinion { get; set; }
|
|
}
|
|
}
|