1234567891011121314151617181920212223242526272829 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmCompanyType
- {
- public CmCompanyType()
- {
- this.CmCompany = new HashSet<CmCompany>();
- }
-
- public int SiteId { get; set; }
- public int CompanyTypeId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual ICollection<CmCompany> CmCompany { get; set; }
- }
- }
|