23 lines
516 B
C#
23 lines
516 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_Help
|
||
{
|
||
public class UpdateStatusModel
|
||
{
|
||
/// <summary>
|
||
/// 患者 ID
|
||
/// </summary>
|
||
public string registerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 随访的月份
|
||
/// 1:1 月随访 3:3 月随访 6:6 月随访 12:12 月随访
|
||
/// </summary>
|
||
public string month { get; set; }
|
||
}
|
||
}
|