123456789101112131415161718192021222324 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsWorkCodeLegalInspectionAgency
- {
- public int SiteId { get; set; }
- public int InspectionAgencyId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual CmSite CmSite { get; set; }
- }
- }
|