26 lines
604 B
C#
26 lines
604 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("aq_BAS_RIGHT_TOOLBUTTON")]
|
|
public partial class BAS_RIGHT_TOOLBUTTON
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(4)]
|
|
public string RIGHTID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public decimal BUTTONID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string BUTTONNAME { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string BUTTONCODE { get; set; }
|
|
}
|
|
}
|