You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
671 B
22 lines
671 B
using Shentun.Peis.PeisReports;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
public class GetAsbitemSpecificResultReportRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 单位相关
|
|
/// </summary>
|
|
public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
|
|
|
|
/// <summary>
|
|
/// 组合项目ID 集合 必填
|
|
/// </summary>
|
|
[Required(ErrorMessage ="组合项目不能为空")]
|
|
public List<Guid> AsbitemId { get; set; }
|
|
}
|
|
}
|