StableVersion4.3/HL_FristAidPlatform_Help/DictionaryListModel.cs

21 lines
411 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
using System.Collections.Generic;
namespace HL_FristAidPlatform_Help
{
/// <summary>
/// 表格数据,支持分页
/// </summary>
public class DictionaryListModel
{
/// <summary>
/// 年龄
/// </summary>
public int age { get; set; }
/// <summary>
/// 病种
/// </summary>
public string diagnosis { get; set; }
}
}