体检系统架构
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.
 
 
 

56 lines
1.7 KiB

#region CopyRight
/****************************************************************
* Project:健康体检信息管理系统(PEIS)
* Author:罗绍明
* CLR Version:4.0.30319.42000
* CreateTime:2023-05-01 14:54:23
* Version:v2.0
*
* Description:
*
* History:
*
*****************************************************************
* Copyright @ 云南新八达科技有限公司 2023 All rights reserved
*****************************************************************/
#endregion
using System;
using System.Collections.Generic;
using PEIS.Base;
using PEIS.Entity;
using PEIS.Event;
namespace PEIS.View.Statistics
{
interface IStatisticalReportView : IViewBase
{
// 体检人次统计表
event EventHandler<Args<dynamic>> GetPeopleCount;
void ShowPeopleCount(List<EnrollmentPatient> items);
// 费用明细统计表
event EventHandler<Args<dynamic>> GetEFeeItems;
void ShowEFeeItems(List<EnrollmentFeeItem> items);
// 获取科室列表
event EventHandler<Args<Dept>> GetDeptList;
void ShowDeptList(List<User> items);
// 订单统计表
event EventHandler<Args<dynamic>> GetCheckCost;
void ShowCheckCost(List<EnrollmentCheckCost> items);
// 两癌筛查统计表
event EventHandler<Args<dynamic>> GetTwoCancerData;
void ShowTwoCancerData(List<TwoCancer> items);
// 体检团体筛查
event EventHandler<Args<dynamic>> GetOrgData;
void ShowOrgData(List<EnrollmentOrg> items);
// 团体费用统计
event EventHandler<Args<dynamic>> GetOrgCostFeeData;
void ShowOrgCostFeeData(List<EnrollmentFeeItem> items);
}
}