123456789101112131415161718192021 |
- using System.Collections.Generic;
- using Datory.Annotations;
- namespace GxPress.Entity.SystemRole
- {
-
-
-
- [DataTable("tede_system_role")]
- public class SystemRole : Datory.Entity
- {
-
-
-
-
- [DataColumn]
- public string Name { get; set; }
-
- }
- }
|