44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
|
|
//--------------------------------------------------------------------
|
|
// 此代码由T4模板自动生成 byzhouhang 20210918
|
|
// 生成时间 2021-12-23 13:16:57
|
|
// 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。
|
|
using IRaCIS.Core.Domain.Share;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
namespace IRaCIS.Core.Domain.Models;
|
|
|
|
[Comment("项目 - 项目中心调研设备表")]
|
|
[Table("TrialSiteEquipmentSurvey")]
|
|
public class TrialSiteEquipmentSurvey : BaseFullAuditEntity
|
|
{
|
|
#region 导航属性
|
|
[JsonIgnore]
|
|
[ForeignKey("TrialSiteSurveyId")]
|
|
public TrialSiteSurvey TrialSiteSurvey { get; set; }
|
|
|
|
|
|
[JsonIgnore]
|
|
[ForeignKey("EquipmentTypeId")]
|
|
public Dictionary EquipmentType { get; set; }
|
|
#endregion
|
|
|
|
|
|
public Guid TrialSiteSurveyId { get; set; }
|
|
|
|
public Guid EquipmentTypeId { get; set; }
|
|
public string Parameters { get; set; } = string.Empty;
|
|
|
|
public string ManufacturerName { get; set; } = string.Empty;
|
|
|
|
|
|
public string ScannerType { get; set; } = string.Empty;
|
|
|
|
public string Note { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
}
|