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.
31 lines
1.0 KiB
31 lines
1.0 KiB
using Shentun.Peis.PeisReports;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.CustomerReports
|
|
{
|
|
/// <summary>
|
|
/// 精简版
|
|
/// </summary>
|
|
public class GetCustomerOrgFeeSettlementInGroupReportReduceRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 单位相关
|
|
/// </summary>
|
|
public List<GetPeisReportDetailRequest_CustomerOrg> CustomerOrgs { get; set; } = new List<GetPeisReportDetailRequest_CustomerOrg>();
|
|
|
|
/// <summary>
|
|
/// 登记人员类型 1 2 3
|
|
/// 1、按分组包含预登记, 全部
|
|
/// 2、按分组不包含预登记, 剔除预登记
|
|
/// 3、按分组实检(只检1项也算全部已检)) 部分已检跟总检
|
|
/// </summary>
|
|
public char RegisterType { get; set; }
|
|
|
|
/// <summary>
|
|
///Y N 是否包含个人支付与赠送项目(勾选了显示全部,不勾选只显示单位支付)
|
|
/// </summary>
|
|
public char IsPersonalPayment { get; set; }
|
|
}
|
|
}
|