<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_大型信息化建设标准基础数据管理平台【商业版，铜墙铁壁】_分类_[05] 走火入魔技术架构</title><id>http://feed.cnblogs.com/blog/u/39147/category/271287/rss</id><updated>2012-06-02T23:01:45Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/category/271287.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/39147/category/271287/rss"/><entry><id>http://www.cnblogs.com/jirigala/archive/2011/05/24/2054702.html</id><title type="text">开发软件项目过程中的开发辅助工具的威力【以数据集权限为例，人工输入花费几个小时输得眼花缭乱，电脑生成花费5分钟轻松搞定】</title><summary type="text">为了实现记录级权限的条件约束功能，为了实现下面的页面效果，我们需要在数据库里设置一些数据，甚至需要人工录入一些大量数据才能达到下面的页面效果。 人工输入数据最大问题是耗费很多时间，而且未必有人有空录入这些数据，还需要给录入的人讲解注意事项等等，最糟糕的是很容易录入错误的数据，其次我们的数据结构、字段注释等也会总是变来变去的，若数据库结构等变了后这些数据又需要重新校对，那是足够要命的事情了、头都大的事情。 那我们就花费几个小时时间编写一个工具，可以在几秒钟内产生好所有的表字段结构说明，生成好的SQL语句在查询分析器里一执行就可以轻松搞定。而且做好的工具还可以分享给300-400个有偿购买组件的.</summary><published>2011-05-24T06:34:00Z</published><updated>2011-05-24T06:34:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/05/24/2054702.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/05/24/2054702.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/05/04/2036566.html</id><title type="text">通用权限管理系统组件遭遇VS2008是英文版，OS是日语XP后。。。</title><summary type="text">网上有一个朋友购买了通用权限管理组件了，发生了下面的乱码情况， 他用的VS2008是英文版，OS是日语XP，由于以前折腾过日本外包项目有接近2年，所以心里也稍微有点儿底气，能把这个问题修正好，其实当年在台资企业也愈多过类似的问题，同时也相信VS系列的多语言兼容性能力。 把所有的文件都重新另外高级保存了，修改了几百个文件，连续作战了2-3个小时后，把这个问题搞定了，重新交付给客户后，顺利编译通过搞定。</summary><published>2011-05-04T07:36:00Z</published><updated>2011-05-04T07:36:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/05/04/2036566.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/05/04/2036566.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/03/03/1969710.html</id><title type="text">C#代码生成器 如果发生重构或模板变更可以直接覆盖，在自动生成之后不会被覆盖，防止误操作？</title><summary type="text">客户在代码自动生成中，为什么管理类只生成了manager.auto.cs，而没有生成manager.cs呢？是不是可以理解为，manager.auto.cs里面的代码是自动生成的，如果发生重构或模板变更可以直接覆盖，而manager.cs则属于手工生成，在自动生成之后不会被覆盖，防止误操作？Ψ吉日嘎拉完全正确客户好的，3ku</summary><published>2011-03-03T03:25:00Z</published><updated>2011-03-03T03:25:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/03/03/1969710.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/03/03/1969710.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/02/23/1962548.html</id><title type="text">C#.NET 剪切板复制粘贴泛型的例子代码参考 Clipboard Copy Paste List</title><summary type="text">我们经常希望我们的软件有复制粘贴功能，可以把一个角色（用户组）里的用户全部复制粘贴到另外一个角色（用户组）里，若软件有复制粘贴的功能，操作起来会非常方便，所以在走火入魔通用权限管理系统组件源码里，也有类似的复制粘贴的例子代码，有需要的可以参考下面的代码实现，虽然代码很简单，但是也折腾了1天才调试好，希望能对有需要的人有些帮助少浪费宝贵生命，及时找到需要的资料。 //这里判断是否有数据被复制objectclipboardData=Clipboard.GetData("userEntites"); this.btnPaste.Enabled=(clipboardData!=nu</summary><published>2011-02-23T09:54:00Z</published><updated>2011-02-23T09:54:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/02/23/1962548.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/02/23/1962548.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/02/19/1958768.html</id><title type="text">以前搞Delphi就没见过这么强大的用户权限系统，学C#才一个月，通用权限管理系统组件源码工具很强</title><summary type="text">界面上的所在单位四个字在哪里改？界面改了没用？Ψ吉日嘎拉23:02:47语言包在语言包里修改语言包在那里知道不？山泉23:03:07哦，在哪里？Ψ吉日嘎拉23:03:06按窗体的名字找语言包山泉23:03:27我看看，这套系统很强大且复杂Ψ吉日嘎拉23:03:35D:\DotNet.Common\DotNet.CommonV3.2\DotNet.WinForm\Resource\Localization在这个目录里可以在vs2010里直接修改山泉23:04:13我找找看Ψ吉日嘎拉23:04:17几下就找到了山泉23:08:13找到谢谢Ψ吉日嘎拉</summary><published>2011-02-19T15:15:00Z</published><updated>2011-02-19T15:15:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/02/19/1958768.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/02/19/1958768.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/02/19/1958466.html</id><title type="text">一个用户的上级部门的上级部门对用户也有修改权限，怎么判断？</title><summary type="text">山泉13:06:17一个用户的上级部门对用户有修改权限一个用户的上级部门的上级部门对用户也有修改权限，怎么判断？山泉13:06:30主要是第二山泉13:06:45怎么设置？Ψ吉日嘎拉13:07:30这个是权限范围的概念山泉13:07:37恩Ψ吉日嘎拉13:07:39数据集权限山泉13:07:57程序中怎么判断呢？山泉13:08:06能否举个例子，谢谢Ψ吉日嘎拉13:08:161：定义一个操作权限，设置为数据集权限。2：然后哪个人，可以管理哪些范围，按组织机构设置。3：这个人都能管理哪些组织机构，哪些人，都有函数Ψ吉日嘎拉13:08:36web里有例子，你</summary><published>2011-02-19T05:11:00Z</published><updated>2011-02-19T05:11:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/02/19/1958466.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/02/19/1958466.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/01/09/1931370.html</id><title type="text">设计模式在软件应用系统开发中的实战参考</title><summary type="text">晚上在武汉飞往杭州的飞机上感觉有些无聊，这次总算是见到一位美女空姐了，的确很漂亮看着赏心悦目，无聊了就写一篇博客到杭州家里发布上去，就写一篇设计模式在实际应用系统开发中的例子。 其实真正能看懂设计模式并熟练应用设计模式并不是一件很容易的事情，因为大部分的日常开发工作不集合设计陌生等都可以达到目的。 当有一些特殊需要时，若不采用设计模式的思想，的确是比较难实现或者及时实现了代码也会非常臃肿，甚至让人不好理解阅读。 假设我们有一个客户端程序需要有多种运行模式的兼容支持，而且只需要写一份程序，而不是针对不同的发布模式写不同的客户端代码，毕竟同时维护4套客户端程序是要命的事情若能写一套客户端程序是最理</summary><published>2011-01-09T14:31:00Z</published><updated>2011-01-09T14:31:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/01/09/1931370.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/01/09/1931370.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2011/01/08/1924456.html</id><title type="text">软件项目开发无成熟框架套路之成本代价</title><summary type="text"> 很多年前刚毕业没多久时也参与组织了一个小型的信息管理系统，就是家政管理系统，整个项目组有6个人，由于当时经验不足，也没成熟的软件开发套路，很多技术也都略懂一二但是多人同时开发同一个项目的经验实在不足，当然更没开发过大型软件项目的经验，更多是擅长写一个小功能、完成一个小模块而已的水平而已。</summary><published>2011-01-08T08:05:00Z</published><updated>2011-01-08T08:05:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2011/01/08/1924456.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2011/01/08/1924456.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/11/12/1875663.html</id><title type="text">数据字典（选项）管理 的具体使用方法介绍 - 以审批流程类别管理为例（工作流类型管理）</title><summary type="text">我们的管理系统，经常需要维护很多种选项数据管理，例如 用户的籍贯、学历、学位、名族、性别、党派、等等一大堆选项的管理，若我们的软件有非常灵活控制管理这些基础选项的功能，那是非常理想的。</summary><published>2010-11-12T06:23:00Z</published><updated>2010-11-12T06:23:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/11/12/1875663.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/11/12/1875663.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/11/12/1875368.html</id><title type="text">C# ASP.NET 权限设计 完全支持多数据库多语言包的通用权限管理系统组件源码</title><summary type="text">最近支付权限客户1000元辛苦费，把走火入魔通用权限管理系统中里的英文语言包进行了彻底完善，大概耗费了2周工作时间，经过一轮测试修正后就可以正式交付使用了。好在原先通用权限管理系统设计时就按支持多语言的定位来开发的，完善英文语言包的朋友当时这个客户也购买了权限系统源码，你买我的源码，我买你的翻译服务，也算是有投入有产出了，哈哈。</summary><published>2010-11-12T01:17:00Z</published><updated>2010-11-12T01:17:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/11/12/1875368.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/11/12/1875368.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/11/01/1865922.html</id><title type="text">C# ASP.NET 通用权限管理系统组件源码中WCF例子程序客户端运行详细配置参考</title><summary type="text">WCF的客户端、服务器端的整体整体逻辑图、架构图如下: 当年水平还很菜的时候，就不知道如何让程序在真正的客户端服务器端模式来运行，就是所谓的用2台电脑或者更多的电脑来运行整个系统，把核心程序都写在服务器端，然后让客户端来调用服务器上的程序，工作很多年后，有一天真的会这个功能了，很开心很开心。</summary><published>2010-11-01T01:28:00Z</published><updated>2010-11-01T01:28:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/11/01/1865922.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/11/01/1865922.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/31/1865784.html</id><title type="text">C# ASP.NET 通用权限管理系统组件源码中WCF例子程序服务器端运行详细配置参考</title><summary type="text">WCF的客户端、服务器端的整体整体逻辑图、架构图如下:</summary><published>2010-10-31T14:17:00Z</published><updated>2010-10-31T14:17:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/31/1865784.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/31/1865784.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/27/1862024.html</id><title type="text">【商业版、提供全部源码】1000元RMB购买走火入魔C#.NET精品即时通讯组件功能源码的老大哥哥今天很高兴，还特意表扬了程序很强大、很好用、支持局域网、支持广域网</title><summary type="text">C#.NET简易即时通讯的运行效果图如下 http://www.cnblogs.com/jirigala/archive/2010/10/17/1853540.html  有个内蒙自治区呼和浩特市做通讯工作的老大哥，花费1000元购买了C#.NET通用权限管理系统组件及C#.NET即时通讯组件功能的所有源码，老大哥是比我大10岁，都接近40岁的人了，虽然也会写程序但是一直用的是VB，而且最近几年也不写程序了，可能开始做一些其他日常维护工作了。</summary><published>2010-10-26T16:06:00Z</published><updated>2010-10-26T16:06:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/27/1862024.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/27/1862024.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/19/1855887.html</id><title type="text">与购买代码生成器源码网友的聊天记录，为什么要购买？节省出来的时间干啥？</title><summary type="text">Ψ吉日嘎拉 20:54:35在不？我告诉你淘宝地址 jirigala.taobao.com ok接代码枝依 20:55:17钱都付了。哈哈 又欠银行100Ψ吉日嘎拉 20:56:08不会吧？你都欠信用卡的？我才欠 500元而已枝依 20:56:23欠了几千的。。成功发送文件“DotNet.WinForm.CodeBuilder.rar”(393.00KB)。 </summary><published>2010-10-19T13:34:00Z</published><updated>2010-10-19T13:34:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/19/1855887.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/19/1855887.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/19/1855716.html</id><title type="text">通用权限管理组件支持SqLite，感谢完善者岩子（250952377）为软件改进做出的重大贡献</title><summary type="text">权限组件客户咨询通用权限管理组件中的数据库访问组件相关的技术问题，同时打开多种数据库相关的问题，我就热情的给客户做解答交流，在设计时通用数据库访问组件就是可以同时打开多个多种数据库的，哪里应该如何修改、注意哪些事项，哪里有什么例子都沟通了一下，客户也很满意。</summary><published>2010-10-19T09:37:00Z</published><updated>2010-10-19T09:37:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/19/1855716.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/19/1855716.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/17/1853540.html</id><title type="text">第8章 C# .NET 开源可进行二次开发的即时通讯组件提供全部源码下载</title><summary type="text">提供所有的C# .NET相关源码并提供一年的技术服务，有需要的可以在淘宝上购买，淘宝上的购买地址为 http://jirigala.taobao.com/即时通讯功能主要是为了实现管理系统的通知信息能即时发送给相应的用户账户，为了实现即时高效的通知功能。虽然与真正的商业化的即时通讯软件无法匹敌，但是往往内部个性化的管理系统，还是需要即时通知、即时沟通的需要。</summary><published>2010-10-17T04:26:00Z</published><updated>2010-10-17T04:26:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/17/1853540.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/17/1853540.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/12/1849197.html</id><title type="text">如何取得通用权限管理控件授权(下载C#通用权限管理源码)</title><summary type="text">如何取得通用权限管理控件正版授权通过普通下载方式取得的控件是未授权版，未授权版控件没有软件源码 + 1年的技术支持，如果想获得控件的完全版本请按如下方式操作： 1、 登录在线支付网址 http://item.taobao.com/item.htm?id=3430408842 在线支付 或通过其它方式进行汇款。</summary><published>2010-10-12T13:25:00Z</published><updated>2010-10-12T13:25:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/12/1849197.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/12/1849197.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/08/1846195.html</id><title type="text">多年一直想完善的自由行政审批流程组件【2002年PHP,2008年.NET,2010年完善数据设计、代码实现】</title><summary type="text">几乎没一个公司，什么事情都一个人说了算的，都需要大家一起协商、协调才会最终生效，都需要走一个流程的，这也是管理软件需要流程审批组件的原因。</summary><published>2010-10-08T15:38:00Z</published><updated>2010-10-08T15:38:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/08/1846195.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/08/1846195.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/07/1845275.html</id><title type="text">3天搞定的小型B/S内部管理类软件定制开发项目【软件开发实战10步骤详解】</title><summary type="text">十一休假，杭州西湖边逛了一圈只能用人山人海来形容，浙大紫金港校区也逛了一圈风景如画，建设得真不错很棒，假期就去了这2个地方，然后在家里陪老婆、看孩子、洗尿布、打了几局星际争霸，在网上接了一个B/S架构的内部管理类定制软件、淘宝上收了600元辛苦费后就开始行动了、现在把整个开发过程讲解分享如下文。</summary><published>2010-10-07T13:39:00Z</published><updated>2010-10-07T13:39:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/07/1845275.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/07/1845275.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/jirigala/archive/2010/10/06/1844625.html</id><title type="text">系统架构逻辑参考图【强调了领域模型+面向服务编程理念】</title><summary type="text">10.1假期过得真快啊，一下子过去6天，还有一天休息就上班了，其实这个假期有春节那么长，但是没春节那么热闹而已，这今天杭州的天气不错，去浙大紫金港校区转了一圈，新浙大校区的确建得很不错，从家里打车过去只要12元就够了，算是很近了。  鼻炎一直没有彻底好，稍微有些闹心，网友希望能看到整个系统的逻辑图，我就画了一张，看看自己的思路是否足够严谨，希望能与大家都沟通多交流。</summary><published>2010-10-06T05:39:00Z</published><updated>2010-10-06T05:39:00Z</updated><author><name>通用信息化建设平台</name><uri>http://www.cnblogs.com/jirigala/</uri></author><link rel="alternate" href="http://www.cnblogs.com/jirigala/archive/2010/10/06/1844625.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/jirigala/archive/2010/10/06/1844625.html"/><content type="html"/></entry></feed>
