using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.RA { public class Center<T> { /// <summary> /// 园区 /// </summary> public string name { get; set; } public List<T> list { get; set; } } }