12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities {
- public partial class CmInvestigation2History {
- [Display(Name = "현장 고유번호"), Key]
- public int SiteId { get; set; }
- [Display(Name = "정보조사2 고유번호"), Key]
- public int InvestigationId { get; set; }
- [Display(Name = "정보조사2 이력 고유번호"), Key]
- public int HistoryId { get; set; }
- [Display(Name = "Rev번호")]
- public int? RevisionNo { get; set; }
- [Display(Name = "파일")]
- public int? FileId { get; set; }
- [Display(Name = "도면설명")]
- [StringLength(2000)]
- public string Description { get; set; }
- [Display(Name = "수정일")]
- [Column(TypeName = "datetime")]
- public DateTime? UpdatedDate { get; set; }
- [Display(Name = "수정자")]
- [StringLength(24)]
- public string UpdatedUserId { get; set; }
- [ForeignKey("SiteId,FileId")]
- public virtual CmFile CmFile { get; set; }
- [ForeignKey("SiteId")]
- public virtual CmSite CmSite { get; set; }
- [ForeignKey("UpdatedUserId")]
- public virtual CmUser CmUser { get; set; }
- [ForeignKey("SiteId,InvestigationId")]
- public virtual CmInvestigation2 CmInvestigation2 { get; set; }
- }
- }
|