using Shentun.Peis.PeisReports; using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.CustomerReports { public class GetItemSpecificResultReportRequestDto { /// /// 单位相关 /// public List CustomerOrgs { get; set; } = new List(); /// /// 项目ID /// public List ItemIds { get; set; } = new List(); } }