12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsFormulaTable
- {
- public BemsFormulaTable()
- {
- this.BemsFormulaTableValue = new HashSet<BemsFormulaTableValue>();
- }
-
- public int TableId { get; set; }
- public string FunctionName { get; set; }
- public string Description { get; set; }
-
- public virtual ICollection<BemsFormulaTableValue> BemsFormulaTableValue { get; set; }
- }
- }
|