//------------------------------------------------------------------------------ // // 이 코드는 템플릿에서 생성되었습니다. // // 이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다. // 코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다. // //------------------------------------------------------------------------------ namespace iBemsDataService.Model { using System; using System.Collections.Generic; public partial class FmsConstructionEstimation { public int SiteId { get; set; } public int ConstructionId { get; set; } public System.DateTime EstimateDate { get; set; } public string EstimateUserId { get; set; } public Nullable Safety01_CleanUp { get; set; } public Nullable Safety02_PersonalProtection { get; set; } public Nullable Safety03_FireExtinguisher { get; set; } public Nullable Safety04_HighPlaceWork { get; set; } public Nullable Safety05_Weld { get; set; } public Nullable Safety06_SurroundingCleanUp { get; set; } public Nullable Safety07_SurroundingHealthy { get; set; } public Nullable Safety08_Noise { get; set; } public Nullable Safety09_FacilityProtection { get; set; } public Nullable Safety10_Waste { get; set; } public Nullable Safety11_Execution { get; set; } public Nullable Safety12_Announcement { get; set; } public Nullable Ability01_Compliance { get; set; } public Nullable Ability02_Fault { get; set; } public Nullable Ability03_SkillLevel { get; set; } public Nullable Ability04_ProcessManagement { get; set; } public Nullable Ability05_Collaboration { get; set; } public Nullable Service01_Compliance { get; set; } public Nullable Service02_SkillLevel { get; set; } public string Comment { get; set; } public Nullable TotalEstimateScore { get; set; } public Nullable SafetyScore { get; set; } public Nullable AbilityScore { get; set; } public Nullable ServiceScore { get; set; } public virtual CmUser CmUser { get; set; } public virtual FmsConstruction FmsConstruction { get; set; } } }