34 lines
1.4 KiB
C#
34 lines
1.4 KiB
C#
using System;
|
||
using System.ComponentModel;
|
||
using System.ComponentModel.DataAnnotations.Schema;
|
||
using WX.CRM.Common.MvcValidation;
|
||
|
||
namespace WX.CRM.Model.Entity
|
||
{
|
||
public partial class BAS_LEFTMEMU
|
||
{
|
||
[DisplayName("菜单所属模块")]
|
||
[NotMapped]
|
||
public Nullable<decimal> map_MODULEMENUID { get { return this.MODULEMENUID; } set { this.MODULEMENUID = value; } }
|
||
[DisplayName("菜单名称")]
|
||
[NotMapped]
|
||
public string map_MNAME { get { return this.MNAME; } set { this.MNAME = value; } }
|
||
[DisplayName("菜单URL")]
|
||
[NotMapped]
|
||
public string map_URL { get { return this.URL; } set { this.URL = value; } }
|
||
[DisplayName("是否组")]
|
||
[NotMapped]
|
||
public short map_ISGROUP { get { return this.ISGROUP; } set { this.ISGROUP = value; } }
|
||
[DisplayName("是否显示")]
|
||
[NotMapped]
|
||
public short map_ISSHOW { get { return this.ISSHOW; } set { this.ISSHOW = value; } }
|
||
[DisplayName("对应权限")]
|
||
[NotMapped]
|
||
public string map_RIGHTID { get { return this.RIGHTID; } set { this.RIGHTID = value; } }
|
||
[DisplayName("父节点")]
|
||
[NotMapped]
|
||
[NoInput("[0]", ErrorMessage = "不能选中自己或者子集作为父级!")]
|
||
public Nullable<decimal> map_PARENTID { get { return this.PARENTID; } set { this.PARENTID = value; } }
|
||
}
|
||
}
|