12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class test_comm_set
- {
- public test_comm_set()
- {
- this.test_comm_param_set = new HashSet<test_comm_param_set>();
- }
-
-
-
-
- public decimal comm_set_id { get; set; }
-
-
-
- public string note { get; set; }
-
-
-
-
- public virtual HashSet<test_comm_param_set> test_comm_param_set { get; set; }
- }
- }
|