StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Image.cs

65 lines
1.5 KiB
C#
Raw Permalink 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.

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 业务图片表
/// </summary>
public class T_Service_Image
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
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>
/// 图片类型1CT检查2院前首份心电图;3:院内首份心电图
/// </summary>
public int FileType { get; set; }
/// <summary>
/// 图片源文件
/// </summary>
public byte[] FileImage { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}