19 lines
618 B
C#
19 lines
618 B
C#
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class BAS_MODULEMENU
|
|
{
|
|
[DisplayName("菜单名")]
|
|
[NotMapped]
|
|
public string map_MNAME { get { return this.MNAME; } set { this.MNAME = value; } }
|
|
[DisplayName("权限")]
|
|
[NotMapped]
|
|
public string map_RIGHTID { get { return this.RIGHTID; } set { this.RIGHTID = value; } }
|
|
[DisplayName("图片")]
|
|
[NotMapped]
|
|
public string map_IMAGEURL { get { return this.IMAGEURL; } set { this.IMAGEURL = value; } }
|
|
}
|
|
}
|