Example #1
0
        public void ProcessRequest(HttpContext context)
        {
            string field         = context.Request["Field"];
            string fieldShowName = context.Request["FieldShowName"];
            string isNull        = context.Request["IsNull"];
            string sort          = context.Request["Sort"];
            string modoleType    = context.Request["ModuleType"];
            string isShowInList  = context.Request["IsShowInList"];

            apiResp.status = bll.AddProjectFieldMap(field, fieldShowName, isNull, sort, modoleType, isShowInList);
            if (apiResp.status)
            {
                apiResp.msg = "添加成功";
            }
            else
            {
            }
            context.Response.Write(ZentCloud.Common.JSONHelper.ObjectToJson(apiResp));
        }