23 lines
436 B
C#
23 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class MedicalStaffWorkloadListModel
|
|
{
|
|
/// <summary>
|
|
/// 标题列表
|
|
/// </summary>
|
|
public List<string> TitleList;
|
|
|
|
/// <summary>
|
|
/// 数据列
|
|
/// </summary>
|
|
public List<List<string>> list;
|
|
|
|
}
|
|
}
|