16 lines
442 B
C#
16 lines
442 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Bas_Right_ToolButton : BaseEntity
|
|
{
|
|
[Key, Column(Order = 0)]
|
|
public string RightId { get; set; }
|
|
[Key, Column(Order = 1)]
|
|
public int ButtonId { get; set; }
|
|
public string ButtonName { get; set; }
|
|
public string ButtonCode { get; set; }
|
|
}
|
|
}
|