using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NEIntelligentControl2.Models.PV { /// /// 光伏信息 /// public class PVDetails { /// /// 名称 /// public string Name { get; set; } /// /// 状态 /// public PVTagInfo Status { get; set; } private List codeInfo; /// /// 标签点 /// public List CodeInfos { get => codeInfo ?? (codeInfo = new List()); set => codeInfo = value; } } }