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