12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class FmsMaterialCodeAdjustmentType
- {
- public FmsMaterialCodeAdjustmentType()
- {
- this.FmsMaterialRelease = new HashSet<FmsMaterialRelease>();
- }
-
- public short AdjustmentTypeId { get; set; }
- public string Name { get; set; }
- public string Comment { get; set; }
-
- public virtual ICollection<FmsMaterialRelease> FmsMaterialRelease { get; set; }
- }
- }
|