Uat_Study
parent
1cb3de3429
commit
371261cd0f
|
@ -0,0 +1,43 @@
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------
|
||||||
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
||||||
|
// 生成时间 2022-08-22 10:06:13
|
||||||
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
||||||
|
using System;
|
||||||
|
using IRaCIS.Core.Domain.Share;
|
||||||
|
using System.ComponentModel.DataAnnotations;
|
||||||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
|
namespace IRaCIS.Core.Domain.Models
|
||||||
|
{
|
||||||
|
///<summary>
|
||||||
|
///肿瘤评估
|
||||||
|
///</summary>
|
||||||
|
[Table("TumorAssessment")]
|
||||||
|
public class TumorAssessment : Entity
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 靶病灶
|
||||||
|
/// </summary>
|
||||||
|
public string TargetLesion { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 非靶病灶
|
||||||
|
/// </summary>
|
||||||
|
public string NonTargetLesions { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 新病灶
|
||||||
|
/// </summary>
|
||||||
|
public string NewLesion { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 整体疗效
|
||||||
|
/// </summary>
|
||||||
|
public string OverallEfficacy { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -249,6 +249,9 @@ namespace IRaCIS.Core.Infra.EFCore
|
||||||
|
|
||||||
public virtual DbSet<ReadingTableQuestionTrial> ReadingTableQuestionTrial { get; set; }
|
public virtual DbSet<ReadingTableQuestionTrial> ReadingTableQuestionTrial { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public virtual DbSet<TumorAssessment> TumorAssessment { get; set; }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Subject and Visit and study
|
#region Subject and Visit and study
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
public static readonly string ConnectionString = "Server=123.56.94.154,1433\\MSSQLSERVER;Database=IRaCIS_New_Tet;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true";
|
public static readonly string ConnectionString = "Server=123.56.94.154,1433\\MSSQLSERVER;Database=IRaCIS_New_Tet;User ID=sa;Password=dev123456DEV;TrustServerCertificate=true";
|
||||||
public static readonly string DbDatabase = "IRaCIS_New_Tet";
|
public static readonly string DbDatabase = "IRaCIS_New_Tet";
|
||||||
//表名称用字符串,拼接
|
//表名称用字符串,拼接
|
||||||
public static readonly string TableName = "ReadingTableQuestionAnswer";
|
public static readonly string TableName = "TumorAssessment";
|
||||||
//具体文件里面 例如service 可以配置是否分页
|
//具体文件里面 例如service 可以配置是否分页
|
||||||
}
|
}
|
||||||
#>
|
#>
|
||||||
|
|
Loading…
Reference in New Issue