123456789101112131415161718192021222324252627282930313233343536 |
- using Datory.Annotations;
- namespace GxPress.Entity.Navigations
- {
-
-
-
- [DataTable("tede_middle_lable")]
- public class MiddleLable : Datory.Entity
- {
-
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
-
-
-
- [DataColumn]
- public string LabelId { get; set; }
-
-
-
-
- [DataColumn]
- public int Sort { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsDisable { get; set; }
- }
- }
|