Exemplo n.º 1
0
        public static string GetActivitySignUpC(int currentpage, int pagesize, string key)
        {
            SqlPar par = SqlXml.GetSearchSqlPage("Activity", "报名列表", 0,
                                                 !key.IsNullOrEmpty()
                                                 );

            par.SetParValues(
                key.IsNullOrEmpty() ? null : key
                );
            return(ZH.getPageArray(par, currentpage, pagesize).toJson());
        }
Exemplo n.º 2
0
        public static string GetVersionC(int currentpage, int pagesize, string key)
        {
            SqlPar par = SqlXml.GetSearchSqlPage("Version", "版本列表", 0,
                                                 !key.IsNullOrEmpty()
                                                 );

            par.SetParValues(
                key.IsNullOrEmpty() ? null : key
                );
            return(ZH.getPageArray(par, currentpage, pagesize).toJson());
        }
Exemplo n.º 3
0
        public static string List(int currentpage, int pagesize, string key)
        {
            SqlPar par = SqlXml.GetSearchSqlPage("ManageUser", "管理员列表", 0,
                                                 !key.IsNullOrEmpty()
                                                 );

            par.SetParValues(
                key.IsNullOrEmpty() ? null : key
                );
            return(ZH.getPageArray(par, currentpage, pagesize).toJson());
        }