1234567891011121314151617181920212223242526272829303132333435 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsLicense
- {
- public FmsLicense()
- {
- this.CmUserToLicense = new HashSet<CmUserToLicense>();
- }
-
- public int SiteId { get; set; }
- public int LicenseId { get; set; }
- public string Name { get; set; }
- public string IssuingOffice { get; set; }
- public Nullable<int> BusinessFieldId { get; set; }
- public string EducationalInstitute { get; set; }
- public string Note { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual CmBusinessField CmBusinessField { get; set; }
- public virtual ICollection<CmUserToLicense> CmUserToLicense { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|