1234567891011121314151617181920212223242526272829 |
- using Datory;
- using Datory.Annotations;
- namespace GxPress.Entity
- {
-
-
-
- [DataTable("tede_role")]
- public class Role : Datory.Entity
- {
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
-
-
- [DataColumn]
- public int GroupId { get; set; }
-
-
-
- [DataColumn]
- public int Sort { get; set; }
- }
- }
|