72 lines
1.8 KiB
C#
72 lines
1.8 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2022-06-07 13:13:13
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using System;
|
|
using IRaCIS.Core.Domain.Share;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
///<summary>
|
|
///TaskAllocationRule
|
|
///</summary>
|
|
[Table("TaskAllocationRule")]
|
|
public class TaskAllocationRule : Entity, IAuditUpdate, IAuditAdd
|
|
{
|
|
/// <summary>
|
|
/// CreateUserId
|
|
/// </summary>
|
|
[Required]
|
|
public Guid CreateUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// CreateTime
|
|
/// </summary>
|
|
[Required]
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// UpdateTime
|
|
/// </summary>
|
|
[Required]
|
|
public DateTime UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// UpdateUserId
|
|
/// </summary>
|
|
[Required]
|
|
public Guid UpdateUserId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 计划比率
|
|
/// </summary>
|
|
[Required]
|
|
public int PlanReadingRatio { get; set; }
|
|
|
|
public Guid DoctorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// IsEnable
|
|
/// </summary>
|
|
[Required]
|
|
public bool IsEnable { get; set; }
|
|
|
|
/// <summary>
|
|
/// Arm 组
|
|
/// </summary>
|
|
[Required]
|
|
public int GroupEnum { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分配类型
|
|
/// </summary>
|
|
[Required]
|
|
public int AllocationObjectEnum { get; set; }
|
|
|
|
}
|
|
|
|
}
|