1.DelegateCommand.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 u ...
对话框标题:Problem Occurred 对话框内容:Unhandled event loop exception No more handles 对话框按钮:第一个超链接:Show Error Log,第二个:OK,第三个:Details>> 原因Eclipse 提示An SWT error ...
分类:
其他好文 时间:
2020-01-10 15:22:34
阅读次数:
60
1.新建项目 2.添加引用 3.config中添加如下 <system.web> <httpHandlers> <add path="FastReport.Export.axd" verb="*" type="FastReport.Web.Handlers.WebExport" /> </httpH ...
分类:
Web程序 时间:
2020-01-10 12:47:28
阅读次数:
223
一、公共字段自动填充简介 顾名思义:就是在更新或插入数据时,如果数据项没有设置,则会填充默认的值 在这里就会涉及到元数据处理接口以及它的两个方法: com.baomidou.mybatisplus.mapper.MetaObjectHandlerinsertFill(MetaObject metaO ...
分类:
其他好文 时间:
2020-01-10 00:57:14
阅读次数:
129
models中的常用字段 AutoField(primary_key=True) 主键 (int自增列,必须填入参数 primary_key=True。当model中如果没有自增列,则自动会创建一个列名为id的列。) CharField(max_length=32) varchar(32) Inte ...
分类:
数据库 时间:
2020-01-09 21:13:26
阅读次数:
122
工单bom ,材料配送 ,库存标识 ,物流器具 --查工单bom 串查投料工序 select * from BOM_COMPONENT BC, BOM_OPERATION BO where BC.HANDLE = BO.BOM_COMPONENT_BO AND BC.BOM_BO = 'BOMBO:... ...
分类:
其他好文 时间:
2020-01-08 22:54:31
阅读次数:
363
python基础学习——网络编程 阅读目录 一.楔子 二.客户端/服务端架构 三.网络基础 四.套接字(socket)初使用 五.黏包 六.socket的更多方法介绍 七.验证客户端链接的合法性 八.socketserver模块 一.楔子 你现在已经学会了写python代码,假如你写了两个pytho ...
分类:
编程语言 时间:
2020-01-08 16:02:24
阅读次数:
78
? GSLB ? SLB ? 四层负载均衡 ? 七层负载均衡 ? 四层负载均衡 四层负载均衡工作在OSI模型的传输层,由于在传输层,只有TCP/UDP协议,这两种协议中除了包含源IP、目标IP以外,还包含源端口号及目的端口号。四层负载均衡服务器在接受到客户端请求后,以后通过修改数据包的地址信息(IP ...
分类:
其他好文 时间:
2020-01-07 18:24:14
阅读次数:
104
创建开发仓库 打开git Bash,删除之前root管理创建的仓库目录 rm -rf admin-test 选择项目进行拷贝 ? 克隆 # git -c http.sslVerify=false clone https://gitlab.example.com/root/admin-test.git ...
分类:
其他好文 时间:
2020-01-07 17:55:31
阅读次数:
147
nginx日志类型 包括:error.log access_log 依赖于log_format Syntax: log_format name [escape=default|json] string...; #语法 Default: log_format combined "..." #默认 Co ...
分类:
其他好文 时间:
2020-01-07 16:02:08
阅读次数:
89