using Shentun.Peis.PeisReports; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace Shentun.Peis.CustomerReports { public class GetAsbitemSpecificResultReportRequestDto { /// /// 单位相关 /// public List CustomerOrgs { get; set; } = new List(); /// /// 组合项目ID 集合 必填 /// [Required(ErrorMessage ="组合项目不能为空")] public List AsbitemId { get; set; } } }