StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_ImageDTO.cs

60 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

namespace HL_FristAidPlatform_DTO
{
/// <summary>
/// 业务图片表
/// </summary>
public class T_Service_ImageDTO
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 患者编号(GUID)
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 所属系统模块编号
/// </summary>
public long SystemModuleID { get; set; }
/// <summary>
/// 图片名称
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 图片路径
/// </summary>
public string FilePath { get; set; }
/// <summary>
/// 图片类型1心电图2CT
/// </summary>
public int FileType { get; set; }
/// <summary>
/// 图片源文件
/// </summary>
public string FileImage { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public string CreateTime { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}