| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | //------------------------------------------------------------------------------// <auto-generated>//    이 코드는 템플릿에서 생성되었습니다.////    이 파일을 수동으로 변경하면 응용 프로그램에 예기치 않은 동작이 발생할 수 있습니다.//    코드가 다시 생성되면 이 파일에 대한 수동 변경 사항을 덮어씁니다.// </auto-generated>//------------------------------------------------------------------------------namespace iBemsDataService.Model{    using System;    using System.Collections.Generic;        public partial class FmsConstruction    {        public int SiteId { get; set; }        public int ConstructionId { get; set; }        public string Name { get; set; }        public int ConstructionTypeId { get; set; }        public System.DateTime StartDate { get; set; }        public System.DateTime EndDate { get; set; }        public int PartnerId { get; set; }        public string ConstructLocation { get; set; }        public string OwnerShipName { get; set; }        public Nullable<short> CommitmentMan { get; set; }        public string OwnerShipPhoneNo { get; set; }        public Nullable<System.DateTime> WeldWorkStartTime { get; set; }        public Nullable<System.DateTime> WeldWorkEndTime { get; set; }        public Nullable<System.DateTime> GasWorkStartTime { get; set; }        public Nullable<System.DateTime> GasWorkEndTime { get; set; }        public Nullable<System.DateTime> PaintWorkStartTime { get; set; }        public Nullable<System.DateTime> PaintWorkEndTime { get; set; }        public string Comment { get; set; }        public short ProgressId { get; set; }        public System.DateTime AddDate { get; set; }        public System.DateTime UpdateDate { get; set; }        public string ConstructionDetail { get; set; }        public string InOutStockName { get; set; }        public Nullable<int> FileId1 { get; set; }        public Nullable<int> FileId2 { get; set; }        public Nullable<int> FileId3 { get; set; }            public virtual CmFile CmFile { get; set; }        public virtual CmFile CmFile1 { get; set; }        public virtual CmFile CmFile2 { get; set; }        public virtual FmsConstructionCodeProgress FmsConstructionCodeProgress { get; set; }        public virtual FmsConstructionCodeType FmsConstructionCodeType { get; set; }        public virtual FmsConstructionEstimation FmsConstructionEstimation { get; set; }        public virtual CmPartner CmPartner { get; set; }    }}
 |