123456789101112131415161718192021222324252627282930 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsEquipmentCodeStateType
- {
- public FmsEquipmentCodeStateType()
- {
- this.FmsEquipmentHistory = new HashSet<FmsEquipmentHistory>();
- this.FmsEquipmentRentInfo = new HashSet<FmsEquipmentRentInfo>();
- }
-
- public short EquipmentStateTypeId { get; set; }
- public string Name { get; set; }
- public string Comment { get; set; }
-
- public virtual ICollection<FmsEquipmentHistory> FmsEquipmentHistory { get; set; }
- public virtual ICollection<FmsEquipmentRentInfo> FmsEquipmentRentInfo { get; set; }
- }
- }
|