using System; using Volo.Abp.Domain.Entities; namespace LifePayment.Domain.Models { public class Role : Entity, IAggregateRoot { /// /// 名称 /// public string Name { get; set; } /// /// 排序 /// public int Sequence { get; set; } /// /// 是否可用 /// public bool IsEnable { get; set; } = true; /// /// 部门Id /// public int DepartmentId { get; set; } /// /// 数据范围 100全部数据 10个人数据 /// public int DataRange { get; set; } /// /// 备注 /// public string Remark { get; set; } } }