123456789101112131415161718192021222324252627282930 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class CmPartnerType
- {
- public CmPartnerType()
- {
- this.CmPartner = new HashSet<CmPartner>();
- this.FmsContract = new HashSet<FmsContract>();
- }
-
- public int PartnerTypeId { get; set; }
- public string Name { get; set; }
- public Nullable<bool> IsUse { get; set; }
-
- public virtual ICollection<CmPartner> CmPartner { get; set; }
- public virtual ICollection<FmsContract> FmsContract { get; set; }
- }
- }
|