巨石化纤

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