StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Chest_FollowUpSt...

29 lines
825 B
C#

using HL_FristAidPlatform_Help;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_IDataBase
{
public interface IT_Service_Chest_FollowUpStatistics
{
// <summary>
/// 随访率统计
/// </summary>
/// <param name="stratTime"></param>
/// <param name="endTime"></param>
/// <returns></returns>
FollowUpRateModel GetFollowUpStatistics(string startTime, string endTime);
/// <summary>
/// 随访上传总数统计
/// </summary>
/// <param name="startTime"></param>
/// <param name="endTime"></param>
/// <returns></returns>
FollowUpRateModel GetFollowUpReporting(string startTime, string endTime);
}
}