用户配置修改
continuous-integration/drone/push Build is passing

This commit is contained in:
he
2026-04-23 10:29:52 +08:00
parent 34008ef6db
commit b29ed4d6a2
8 changed files with 22307 additions and 12 deletions
@@ -0,0 +1,28 @@
namespace IRaCIS.Core.Domain.Models;
[Comment("项目阅片 - 用户配置")]
[Table("ReadingUserConfig")]
public class ReadingUserConfig : BaseAddAuditEntity
{
#region
#endregion
public Guid UserRoleId { get; set; }
/// <summary>
/// 1 Dicom 2非Dicom 3 视频
/// </summary>
[Comment("影像工具类型")]
public int ImageToolType { get; set; }
[Comment("自动切换下一个任务")]
public bool AutoCutNextTask { get; set; }
/// <summary>
/// 是否双屏
/// </summary>
public bool IsDoubleScreen { get; set; } = false;
}