ComplianceServer/oldcode/Model/MAP/BAS_LEFTMEMU.cs

34 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; } }
}
}