StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Base_DiagnosisDetailDTO.cs

21 lines
380 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_Base_DiagnosisDetailDTO
{
public int ID { get; set; }
public string Name { get; set; }
public int ParentId { get; set; }
public int DeleteFlag { get; set; }
}
}