TG.WXCRM.V4/Model/MAP/BAS_RIGHTGROUP.cs

18 lines
604 B
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.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
using WX.CRM.Common.MvcValidation;
namespace WX.CRM.Model.Entity
{
public partial class BAS_RIGHTGROUP
{
[DisplayName("权限组名")]
[NotMapped]
public string map_NAME { get { return this.NAME; } set { this.NAME = value; } }
[DisplayName("上级权限组")]
[NotMapped]
[NoInput("[-1]", ErrorMessage = "")]
public decimal map_PARENTID { get { return this.PARENTID; } set { this.PARENTID = value; } }
}
}