摘要: API 代码 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microso 阅读全文
posted @ 2020-06-10 08:03 CuiJie0605 阅读(303) 评论(0) 推荐(0) 编辑
摘要: --单表万能存储过程 create procedure Proc_SingleTablePager ( @TableName varchar(50), --表名 @ReFieldsStr varchar(200) = '*', --字段名(全部字段为'*') @OrderString varchar 阅读全文
posted @ 2020-11-11 15:16 CuiJie0605 阅读(385) 评论(0) 推荐(0) 编辑
摘要: API代码using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Cors; using Microsoft 阅读全文
posted @ 2020-06-07 18:55 CuiJie0605 阅读(724) 评论(13) 推荐(0) 编辑
摘要: create proc FY_GetCityList ( @page int, @rows int, @rowCount int out ) as begin --定义字符串变量,表示之后执行的sql语句 declare @strSql nvarchar(2000) set @strSql=N'se 阅读全文
posted @ 2020-06-06 09:26 CuiJie0605 阅读(135) 评论(0) 推荐(0) 编辑
摘要: $('#save').click(function () { var obj = { "Name": $('#txt_Name').val(), "JinE": $('#txt_JinE').val(), "ShouYi": $('#txt_ShouYi').val() }; $.ajax({ ur 阅读全文
posted @ 2020-06-06 08:35 CuiJie0605 阅读(703) 评论(0) 推荐(0) 编辑
摘要: onclick="detial(\'' + item.id + '\')" 阅读全文
posted @ 2020-06-05 21:00 CuiJie0605 阅读(79) 评论(1) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.SqlClient; using 阅读全文
posted @ 2020-06-05 14:13 CuiJie0605 阅读(104) 评论(1) 推荐(0) 编辑