using System.Collections.Generic; namespace Kingo.Plugin.YJJK.ModelEntity { public class BBPCModel { public int ReportName { get; set; } public List Columns { get; set; } } public class PCColumnModel { public int ColumnIndex { get; set; } public double DiffValue { get; set; } public List Ids { get; set; } public bool IsActive { get; set; } } }