16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_RightGroup : BaseEntity
|
|
{
|
|
[Key]
|
|
public int PkId { get; set; }
|
|
public string Name { get; set; }
|
|
public int ParentId { get; set; }
|
|
public DateTime CTime { get; set; }
|
|
public int CreateUser { get; set; }
|
|
}
|
|
}
|