using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 概要统计输出参数 /// public class SummaryCountOutput { /// /// 概要统计类型 /// [Required] public SummaryCountType Type { get; set; } /// /// 统计数量 /// [Required] public int Count { get; set; } = 0; }