05 2022 档案
摘要:FROM java:8-jre MAINTAINER 888@qq.com RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime RUN mkdir -p /gds-upms WORKDIR /gds-upms EXPOSE 4000
阅读全文
摘要:private static final String[] ROW_NAMES = { "编号", "名称", "名称", "单位", "金额", "申报时间", "办结时间", "审批状态"};private static final String[] ROW_NAMES_EN = { "hand
阅读全文
摘要:package com.govmade.gds.common.utils;import java.io.*;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;impo
阅读全文
摘要:Integer userId = SecurityUtils.getUser().getId(); GdsUser user = SecurityUtils.getUser();List<String> roleIdList = user.getAuthorities() .stream().map
阅读全文
摘要:package com.govmade.gds.cbs.controller;import cn.hutool.core.text.StrBuilder;import cn.hutool.core.util.StrUtil;import com.baomidou.mybatisplus.core.c
阅读全文
摘要:@PostMapping("/reportPolicy/export")@ApiOperation(value = "政策库excel导出", notes = "政策库excel导出", httpMethod = "POST")public void reportPolicy(Page<RepoPo
阅读全文
摘要:@PostMapping("/importExcel")public R importExcel(@RequestBody(required = true) MultipartFile file){ return service.importExcel(file);} @Override @Tran
阅读全文
摘要:@PostMapping(value = "/importExcel")@ApiOperation(value = "导入excel", notes = "导入excel", httpMethod = "POST")public R importExcel(@RequestPart("file")
阅读全文
摘要:@ApiOperation(value = "系统导出")@PostMapping(value = "/vertical_exportData")public void verticalExportData(@RequestBody CatalogSystem columns, HttpServle
阅读全文
摘要://计算当前时间到开始时间的差值,单位为毫秒long min = Duration.between(LocalDateTime.now(), quesQuestionnaire.getEndTime()).toMillis(); List<String> functionStrs = CollUti
阅读全文
摘要:@Overridepublic R<Boolean> excelImport(MultipartFile file, Long projectId) { try { InputStream is = FileMagic.prepareToCheckMagic(file.getInputStream(
阅读全文
摘要:@GetMapping(value = "/excel_export")@ApiOperation(value = "excel导出", notes = "excel导出", httpMethod = "GET")public void excelExport(HttpServletRequest
阅读全文
摘要:server: port: 8080 #指定滑动验证码类型 滑动:blockpuzzle 点选:clickwordspring: profiles: active: blockpuzzle #滑动验证码配置aj: captcha: jigsaw: classpath:images/jigsaw #底
阅读全文
摘要:spring: autoconfigure: exclude: org.springframework.cloud.netflix.ribbon.RibbonAutoConfiguration #非常重要 sca 兼容sc2020 重要配置 jackson: default-property-inc
阅读全文
摘要:cmd中 clac 打开计算器 ipconfig 打开ip配置信息 mspaint 打开画图工具 notepad 打开记事本 cls 清空当前屏幕 shift+鼠标右键可以打开cmd 资源管理器地址前加cmd 可以打开 cd /d F: 可以进入f盘 dir 可以看当前目录下所有文件 md text
阅读全文
摘要:git 管理工具 TortoiseGit git config --list 查看git配置 git config user.name 查看git中的名称 配置个人用户名和邮箱 git config --global user.name "QQJ" git config --global user.
阅读全文
摘要:配置中VM options -Djava.net.preferIPv4Stack=true
阅读全文