using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MenuTool { #region 手机菜单 public class WX_App { public Int32? Id { get; set; } public Int32? CompanyId { get; set; } public String AppName { get; set; } public String FunCode { get; set; } public Int32? SortNo { get; set; } public String AppUrl { get; set; } public String UserType { get; set; } public String ICOUrl { get; set; } public Int32? AppType { get; set; } public Int32? PopedomType { get; set; } public bool? IsUse { get; set; } public WX_App() { ICOUrl = "resources/images/icon_nav_article.png"; } } #endregion }