18 lines
480 B
C#
18 lines
480 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("aq_BAS_PERMISSION_BUTTON")]
|
|
public class BAS_PERMISSION_BUTTON
|
|
{
|
|
[Key]
|
|
public int ID { get; set; }
|
|
public int PID { get; set; }
|
|
public string NAME { get; set; }
|
|
public int BUTTONID { get; set; }
|
|
public string CODE { get; set; }
|
|
public string SITE { get; set; }
|
|
}
|
|
}
|