You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
512 B
C#
23 lines
512 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Khd.Core.Domain.Auth
|
|
{
|
|
[Table("wcs_sys_menu")]
|
|
public class SysMenu
|
|
{
|
|
[Key]
|
|
[Column("OBJID")]
|
|
public long? OBJID { get; set; }
|
|
|
|
[Column("MENU_NAME")]
|
|
public string MenuName { get; set; }
|
|
|
|
[Column("MENU_VISIBLE")]
|
|
public int MenuVisble { get; set; }
|
|
|
|
[Column("MENU_ICON")]
|
|
public string MenuIcon { get; set; }
|
|
}
|
|
}
|