package com.cn.sdjr.common;import java.util.List;import java.util.Map;public class Config { // 参数名称/参数值/值补充/是否必填/字段类型/是否主键//默认值 / / /F不必填 /F字符串 /F不是主键 ...
分类:
数据库 时间:
2021-02-19 13:42:40
阅读次数:
0
1 os.getcwd()获取当前工作目录,即当前python脚本工作的目录路径 2 os.chdir("dirname")改变当前脚本工作目录;相当于shell下cd 3 os.makedirs ('dirname1/dirname2 ')可生成多层递归目录 4 os.removedirs ('d ...
分类:
其他好文 时间:
2021-02-18 12:55:50
阅读次数:
0
思路:在建树的同时进行判断,把建树的模板改一改就能用 #include<iostream> #include<queue> #include<string.h> #include<string> #include<map> #include<unordered_map> #include<vecto ...
分类:
其他好文 时间:
2021-02-17 14:00:40
阅读次数:
0
需要注意的几点: 1. 先要修改状态 LODOP.SET_PRINT_MODE("PRINT_SETUP_PROGRAM",true); //一定要加上这句2. 在中间部分添加回调函数,末尾放LODOP.PRINT_DESIGN()或者LODOP.PRINT_SETUP() //打印设计 if(la ...
分类:
其他好文 时间:
2021-02-08 12:32:40
阅读次数:
0
构建条件方法 @Override public Query getQuery(ReportParam param){ //check MeenoAssert.hasLength(param.getUuid(),"uuid can not empty!"); MeenoAssert.notNull(p ...
分类:
其他好文 时间:
2021-02-08 12:27:48
阅读次数:
0
废话不说,直接上万无一失的办法。wxml: <!-- 今日已打卡 --> <button class="btn" open-type="getUserInfo" bindgetuserinfo="getUserInfo" style="margin-top: 40rpx" > {{ isset ? ...
分类:
微信 时间:
2021-02-06 12:13:27
阅读次数:
0
修改一座山可能同时改变其两侧山的类型。贪心地考虑,要么是修改成其左侧山的高度要么是修改成其右侧山的高度,这样能够在使得当前山不成为山峰和山谷的同时让两侧的山尽可能不成为山峰和山谷。 时间复杂度 \(O\left(\sum n\right)\)。 #include<bits/stdc++.h> usi ...
分类:
其他好文 时间:
2021-02-03 10:39:38
阅读次数:
0
// 获取验证码 getCodes(){ const TIME_COUNT = 60; if (!this.timer) { this.count = TIME_COUNT; this.show = false; this.getcode() this.timer = setInterval(() ...
分类:
其他好文 时间:
2021-02-01 11:53:09
阅读次数:
0
1 using Cognex.VisionPro.FGGigE; 2 using System; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Threadin ...
分类:
其他好文 时间:
2021-01-19 12:06:41
阅读次数:
0
#include<stdlib.h> #include<ncurses,h> #define plane '*' char plane(int x,int y); int main() { int x = 5; int y = 10; char ch; initscr(); cbreak(); no ...
分类:
其他好文 时间:
2021-01-16 11:44:00
阅读次数:
0