StableVersion4.3/HL_FristAidPlatform_IService/Service/IT_Service_Apoplexy_DeadCol...

25 lines
833 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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_Apoplexy_DeadColumnsNumber
{
/// <summary>
/// 统计:死亡列数
/// </summary>
/// <param name="hospitalGuid"></param>
/// <param name="startTime"></param>
/// <param name="endTime"></param>
/// <param name="type">1代表月2代表年</param>
/// <returns></returns>
/* List<ApoplexyStatisticsModel> GetDeadColumnsNumber(string hospitalGuid, string startTime, string endTime, int type);*/
List<ApoplexyStatisticsModel> GetDeadColumnsNumber1(string hospitalGuid, string startTime, string endTime, int type);
}
}