| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | | using System; |  | using System.Collections.Generic; |  | using System.Linq; |  | using System.Text; |  | using System.Threading.Tasks; |  |   |  | namespace WIDESEA_Core |  | { |  |     public class SaveModel |  |     { |  |         public Dictionary<string, object> MainData { get; set; } |  |         public List<Dictionary<string, object>> DetailData { get; set; } |  |         public List<object> DelKeys { get; set; } |  |   |  |         /// <summary> |  |         /// 从前台传入的其他参数(自定义扩展可以使用) |  |         /// </summary> |  |         public object Extra { get; set; } |  |   |  |     } |  | } | 
 |