using System.Collections; using System.Collections.Generic; namespace WIDESEA_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; } } }