12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 이 코드는 템플릿에서 생성되었습니다.
- //
- // 이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다.
- // 코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다.
- // </auto-generated>
- //------------------------------------------------------------------------------
- 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<bool> Safety01_CleanUp { get; set; }
- public Nullable<bool> Safety02_PersonalProtection { get; set; }
- public Nullable<bool> Safety03_FireExtinguisher { get; set; }
- public Nullable<bool> Safety04_HighPlaceWork { get; set; }
- public Nullable<bool> Safety05_Weld { get; set; }
- public Nullable<bool> Safety06_SurroundingCleanUp { get; set; }
- public Nullable<bool> Safety07_SurroundingHealthy { get; set; }
- public Nullable<bool> Safety08_Noise { get; set; }
- public Nullable<bool> Safety09_FacilityProtection { get; set; }
- public Nullable<bool> Safety10_Waste { get; set; }
- public Nullable<bool> Safety11_Execution { get; set; }
- public Nullable<bool> Safety12_Announcement { get; set; }
- public Nullable<bool> Ability01_Compliance { get; set; }
- public Nullable<bool> Ability02_Fault { get; set; }
- public Nullable<bool> Ability03_SkillLevel { get; set; }
- public Nullable<bool> Ability04_ProcessManagement { get; set; }
- public Nullable<bool> Ability05_Collaboration { get; set; }
- public Nullable<bool> Service01_Compliance { get; set; }
- public Nullable<bool> Service02_SkillLevel { get; set; }
- public string Comment { get; set; }
- public Nullable<double> TotalEstimateScore { get; set; }
- public Nullable<double> SafetyScore { get; set; }
- public Nullable<double> AbilityScore { get; set; }
- public Nullable<double> ServiceScore { get; set; }
-
- public virtual CmUser CmUser { get; set; }
- public virtual FmsConstruction FmsConstruction { get; set; }
- }
- }
|