当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

09 2020 档案

摘要:static public DateTime ToDate(this object data) { if (data == null) return DateTime.MinValue; DateTime result; return DateTime.TryParse(data.ToString( 阅读全文
posted @ 2020-09-30 11:17 hofmann 阅读(2680) 评论(0) 推荐(0)
摘要:Dictionary<string, string> dict = new Dictionary<string, string>(); list.Add("BENEFICIARY", "受益所有人"); var res12 = string.Empty; var dicKey = "1000"; d 阅读全文
posted @ 2020-09-17 16:21 hofmann 阅读(3108) 评论(0) 推荐(0)
摘要:<style type="text/css"> .form-inline { display: inline-block; } .query-hidornot ul {list-style:none;margin:0px;} .query-hidornot ul li {float:left;tex 阅读全文
posted @ 2020-09-17 10:59 hofmann 阅读(788) 评论(0) 推荐(0)
摘要:<div id="winReport" class="easyui-dialog" title="命中结果" style="width: 640px; height: 480px; padding: 10px 20px;" closed="true" buttons="#dlg-buttons" m 阅读全文
posted @ 2020-09-16 17:05 hofmann 阅读(137) 评论(0) 推荐(0)
摘要:wsdl.exe D:\DKX4003\demand\demand.20190621\wsdl\PBOCDataService.wsdl /out:D:\DKX4003\demand\demand.20190621\wsdl wsdl.exe D:\DKX4003\demand\demand.201 阅读全文
posted @ 2020-09-15 17:34 hofmann 阅读(271) 评论(0) 推荐(0)
摘要:参考 使用C#创建Windows服务 命令行创建 sc create DemoQueueService binpath= "D:\services\DemoQueueService\IT.QueueService.exe" sc start DemoQueueService sc delete De 阅读全文
posted @ 2020-09-15 14:25 hofmann 阅读(529) 评论(0) 推荐(0)
摘要:MVC是一种框架型模式,它本身并不引入新的功能,只是用来指导我们改善应用程序的架构,使应用的模型和视图相分离,从而得到更好的开发和维护效率。 在 其中模型部分又包含了业务处理层和数据持久层(数据业务)。 视图部分负责数据的输出形式,这也就是我们所谓的页面部分。 设计模式(Design pattern 阅读全文
posted @ 2020-09-15 13:26 hofmann 阅读(559) 评论(0) 推荐(0)
摘要:CR(变更请求)用于记录和追踪缺陷、扩展请求和任何其他类型的产品变更请求。变更请求的优点在于,它们提供了决策记录,且其评估的流程还确保了变更的影响可在整个项目范围内得到认同和理解。 阅读全文
posted @ 2020-09-14 15:41 hofmann 阅读(1034) 评论(0) 推荐(0)
摘要:ETL,是英文Extract-Transform-Load的缩写,用来描述将数据从来源端经过抽取(extract)、转换(transform)、加载(load)至目的端的过程。ETL一词较常用在数据仓库,但其对象并不限于数据仓库。 ETL是将业务系统的数据经过抽取、清洗转换之后加载到数据仓库的过程, 阅读全文
posted @ 2020-09-14 13:18 hofmann 阅读(181) 评论(0) 推荐(0)
摘要:using System; using System.IO; using System.Text; using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using System. 阅读全文
posted @ 2020-09-11 15:25 hofmann 阅读(273) 评论(0) 推荐(0)
摘要:参考 BootstrapVue 阅读全文
posted @ 2020-09-08 16:18 hofmann 阅读(166) 评论(0) 推荐(0)
摘要:参考 基于Jenkins的.Net Core应用自动部署 阅读全文
posted @ 2020-09-08 13:52 hofmann 阅读(163) 评论(0) 推荐(0)
摘要:参考 浅谈为什么vue前后端项目要使用nodejs Vue+NodeJS+ElementUI 的简单示例 vue-element-admin 阅读全文
posted @ 2020-09-07 15:48 hofmann 阅读(80) 评论(0) 推荐(0)
摘要:declare @t nvarchar(max) set @t='<ApplicationInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 阅读全文
posted @ 2020-09-04 09:53 hofmann 阅读(491) 评论(0) 推荐(0)
摘要:List<long> sIds = ids.TrimEnd(',').Split(new char[] { ',' }).ToList().ConvertAll(s => long.Parse(s)); 阅读全文
posted @ 2020-09-03 10:40 hofmann 阅读(2230) 评论(0) 推荐(0)