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.
 

24 lines
640 B

using BWP.B3System;
using BWP.Web.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TSingSoft.WebPluginFramework;
namespace BWP.B3SheepButcherManage.Web
{
public class PluginClass : IPluginClass
{
public void OnInit()
{
SubSystem.RegisterSubSystem(new SubSystem("B3SheepButcherManage", "羊屠宰场管理")
{
IconUrl = "~/Images/ChildSystemIcons/B3Butchery.png",
NotSelectedIconUrl = "~/Images/ChildSystemIcons/B3Butchery_NotSelected.png",
DisplayOrder = -600
});
B3SheepButcherManageChoiceBoxProvider.Register();
}
}
}