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