07 2020 档案
摘要:USE [riskmain]GO /****** Object: UserDefinedFunction [dbo].[fnSplit] Script Date: 2020/7/23 12:05:46 ******/SET ANSI_NULLS ONGO SET QUOTED_IDENTIFIER
阅读全文
摘要:用户表结构中包含用户及其子用户,使用以下方法递归查询当前用户及其子用户信息 with Tusers as(select UserID,PUserID from [Base].[WGUser] where UserID=1union allselect B.UserID,B.PUserID from
阅读全文
摘要:1、程序需定期编译通过后上传SVN,每天可上传多次,根据个人程序开发进度决定,但每天晚下班前必须将当天的程序编译调试通过并上传SVN。每天早上上班首先需要更新SVN最新版本。 上传的工作流程应该是,更新——编译运行——上传。这个工作流程那一步也不能缺少。更新是在把 别人提交的代码下载下来,看看和自己
阅读全文
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Net.Http;using System.Web;using System.Web.Mvc;using WebApplication4.Mode
阅读全文
摘要:WebApi前端调用 HTML代码: <!DOCTYPE html><html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-3.2.1.js"></script> </head> <body> <in
阅读全文