12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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; }
- }
- }
|