12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmFacilityFile
- {
- public int SiteId { get; set; }
- public int FileId { get; set; }
- public int FacilityCode { get; set; }
- public Nullable<System.DateTime> InsertedDate { get; set; }
- public string InsertedUserId { get; set; }
- public Nullable<System.DateTime> UpdatedDate { get; set; }
- public string UpdatedUserId { get; set; }
-
- public virtual CmFile CmFile { get; set; }
- public virtual CmFacility CmFacility { get; set; }
- }
- }
|