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.
20 lines
559 B
20 lines
559 B
using Shentun.Peis.PeisReports;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
public class GetItemSpecificResultReportRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 单位相关
|
|
/// </summary>
|
|
public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
|
|
|
|
/// <summary>
|
|
/// 项目ID
|
|
/// </summary>
|
|
public List<Guid> ItemIds { get; set; } = new List<Guid>();
|
|
}
|
|
}
|