You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
476 B
18 lines
476 B
1 year ago
|
using System;
|
||
|
|
||
|
namespace SSWMS.Common
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class SYS_MENU
|
||
|
{
|
||
|
public int MENU_ID { get; set; }
|
||
|
public int MENU_PARENT_ID { get; set; }
|
||
|
public string MENU_IS_PARENT { get; set; }
|
||
|
public string MENU_NAME { get; set; }
|
||
|
public string MENU_PARAMETER { get; set; }
|
||
|
public string MENU_FLAG { get; set; }
|
||
|
public string MENU_IMAGE { get; set; }
|
||
|
public int MENU_ORDER { get; set; }
|
||
|
}
|
||
|
}
|