32 lines
675 B
C#
32 lines
675 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 人均费用Model
|
|
/// </summary>
|
|
public class StatisticalPerCapitaExpensesModel
|
|
{
|
|
/// <summary>
|
|
/// 患者编号(GUID)
|
|
/// </summary>
|
|
public string PatientGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出院时间
|
|
/// </summary>
|
|
public string CYTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 住院总费用(单位:元(人民币))
|
|
/// </summary>
|
|
public string AllInCost { get; set; }
|
|
|
|
|
|
}
|
|
}
|