wxr
2021-12-15 13a36b87ac98e1ce4bbc2c4fda49b953ec820a5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using HDL_ON.Entity;
namespace HDL_ON.UI
{
    public partial class FunctionPage
    {
        /// <summary>
        /// 更新功能列表界面功能状态
        /// </summary>
        /// <param name="function"></param>
        public static void UpdataStates(Function function)
        {
            new ClassificaitionPublicBLL().UpdataStates(function, bodyView, functionListView);
        }
 
 
 
    }
}