摘要: 一、下载工具包 string sWebRootFolder = GetTupleDocx("Word模板").Item1; string sFileName = GetTupleDocx("Word模板").Item2; FileInfo file = new FileInfo(Path.Combi 阅读全文
posted @ 2021-11-30 15:05 lwmwsh 阅读(500) 评论(0) 推荐(0) 编辑
摘要: echarts官网资源地址: https://echarts.apache.org/examples/zh/index.html @*前端图形创建*@ <div class="layui-card-body" style=" height: 360px; text-align: center;"> 阅读全文
posted @ 2021-10-07 14:11 lwmwsh 阅读(353) 评论(0) 推荐(1) 编辑
摘要: --1、distinct 去重关键字 【用法:查询字段前面】Push_EmailLog :记录表 select distinct UserName from Push_EmailLog --2、分组排序 ROW_NUMBER()OVER(PARTITION BY 字段1 ORDER BY 字段2 d 阅读全文
posted @ 2021-08-18 13:54 lwmwsh 阅读(71) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 多级类定义字段 /// </summary> public class PostAreasTree { public string id { get; set; } = "0"; public string parentId { get; set; } = "0" 阅读全文
posted @ 2021-08-02 15:41 lwmwsh 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、常用单词 2、命名规范 3、整数拓展 进制练习 4、转义符 \t 转行符 \n 5、变量作用域 6、运算符 备注: a++ 操作完后自增;++a 自增后操作 7、位运算 8、三元运算符 阅读全文
posted @ 2021-07-03 20:43 lwmwsh 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 常用的导出Excle格式设置ExcelWorksheet worksheet = package.Workbook.Worksheets.Add("aspnetcore"); worksheet.Cells.Style.VerticalAlignment = ExcelVerticalAlignme 阅读全文
posted @ 2020-08-13 12:01 lwmwsh 阅读(428) 评论(0) 推荐(0) 编辑
摘要: --查询近7天数据记录行数,没有返回0 select a.click_date,ISNULL(b.count,0) as countfrom ( SELECT convert(varchar(10),getdate()-7,120) as click_date union all SELECT co 阅读全文
posted @ 2020-06-10 17:33 lwmwsh 阅读(620) 评论(0) 推荐(0) 编辑