23 lines
444 B
C#
23 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class T_Service_Apoplexy_FollowUpBaseDTO2
|
|
{
|
|
/// <summary>
|
|
/// GUID
|
|
/// </summary>
|
|
public string GUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除标记
|
|
/// </summary>
|
|
public int DeleteFlag { get; set; }
|
|
|
|
}
|
|
}
|