username@email.com
2 天以前 e4ee60ed94d24e394a7895daa9fb98df813e5953
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)
        {
            
        }
 
 
        
    }
}