| 12345678910111213141516171819202122232425262728 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using Abp.Domain.Entities.Auditing;
- using WeApp.Authorization.Users;
- using WeApp.Configuration;
- namespace WeApp.TrainingCamp
- {
- /// <summary>
- /// 分组指挥部角色
- /// </summary>
- [Table("Train_CampGroupRoles")]
- public class GroupRoleInfo : CreationAuditedEntity<int, User>
- {
- [MaxLength(IwbConsts.PrimaryKey)]
- public string GroupNo { get; set; }
- [MaxLength(1000)]
- public string RoleNames { get; set; }
- [MaxLength(200)]
- public string RoleGroupNos { get; set; }
- [MaxLength(500)]
- public string CustomRoles { get; set; }
- }
- }
|