username@email.com
2025-11-26 68ff182a8b7cffaead3e3f89d8e123d7a6821557
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using CY.BLL;
using CY.BLL.Sys;
using CY.Model;
using CY.Infrastructure.Query;
using CY.Infrastructure.Common;
 
namespace CY.WebForm.Pages.work
{
    //吴辉
    //行政物品分类管理
    public partial class Gongzuozuzhijiagou : BasePage
    {
        Sys_DictionaryBLL bll_Sys_DictionaryBLL = null;
        OA_GongzuoneirongCateBLL bll_OA_GongzuoneirongCateBLL = null;
 
        //初始化
        public Gongzuozuzhijiagou()
        {
            bll_Sys_DictionaryBLL = new Sys_DictionaryBLL();
            bll_OA_GongzuoneirongCateBLL = new OA_GongzuoneirongCateBLL();
        }
 
        //页面加载
        protected void Page_Load(object sender, EventArgs e)
        {
            
        }
 
 
        
    }
}