30 lines
721 B
C#
30 lines
721 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.BAS_ROLERIGHTRESOURCE")]
|
|
public partial class BAS_ROLERIGHTRESOURCE
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal 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; }
|
|
|
|
public virtual BAS_RIGHT BAS_RIGHT { get; set; }
|
|
|
|
public virtual BAS_ROLE BAS_ROLE { get; set; }
|
|
}
|
|
}
|