1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using Datory.Annotations;
- namespace GxPress.Entity.SystemLabel
- {
-
-
-
- [DataTable("tede_system_lable")]
- public class SystemLabel : Datory.Entity
- {
-
-
-
-
- [DataColumn]
- public string LabelName { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsDisable { get; set; }
-
-
-
-
- [DataColumn]
- public int Sort { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsSkip { get; set; }
-
-
-
-
- [DataColumn]
- public bool IsPage { get; set; }
-
-
-
-
- [DataColumn]
- public string ControllerUrl { get; set; }
-
-
-
-
- [DataColumn]
- public string ActionUrl { get; set; }
-
-
-
-
- [DataColumn]
- public int ResourceType { get; set; }
-
-
-
-
- [DataColumn]
- public string StyleType { get; set; }
- }
- }
|