using System.ComponentModel.DataAnnotations.Schema; using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Models { /// /// 角色表 /// [Table("Roles")] public class Role : Base { /// /// 角色名称 /// public string Name { get; set; } /// /// 权限 /// public string Permissions { get; set; } } }