using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_RIGHT_LEVEL")]
[Serializable]
public class BAS_RIGHT_LEVEL
{
[Key]
public decimal PKID { get; set; }
///
/// 权限ID
///
[Required(ErrorMessage = "权限不能为空")]
public string RIGHTID { get; set; }
///
/// 权限名称
///
public string RNAME { get; set; }
///
/// 角色编码
///
public string ROLECODE { get; set; }
///
/// 备注
///
public string REMARKS { get; set; }
///
/// 时间
///
public DateTime CTIME { get; set; }
///
/// 1:正常 0:禁用
///
public decimal STATUS { get; set; }
}
}