19 lines
490 B
C#
19 lines
490 B
C#
![]() |
|
|||
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace VOL.Entity.DomainModels
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|