17 lines
418 B
C#
17 lines
418 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_Right : BaseEntity
|
|
{
|
|
[Key]
|
|
public string RightId { get; set; }
|
|
public string RName { get; set; }
|
|
public int SortId { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int ?CreateUser { get; set; }
|
|
public int? GroupId { get; set; }
|
|
}
|
|
}
|