ComplianceServer/oldcode/Core.Model/Entity/BAS_ROLERIGHTRESOURCE.cs

26 lines
593 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("aq_BAS_ROLERIGHTRESOURCE")]
public partial class BAS_ROLERIGHTRESOURCE
{
[Key]
[Column(Order = 0)]
public int ROLEID { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(4)]
public string RIGHTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public decimal? TOOLBARVALUE { get; set; }
}
}