using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Abp.Domain.Entities.Auditing;
using WeApp.Authorization.Users;
using WeApp.Configuration;
namespace WeApp.TrainingCamp
{
///
/// 分组指挥部角色
///
[Table("Train_CampGroupRoles")]
public class GroupRoleInfo : CreationAuditedEntity
{
[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; }
}
}