摘要: 通过 go get 命令下载各种依赖时,经常需要访问 github/google 等网站。配置好代理后,可以快速稳定的访问。 常用的 go 代理 goproxyhttps://goproxy.io/zh/ 阿里云https://mirrors.aliyun.com/goproxy/ 七牛云https 阅读全文
posted @ 2023-06-09 14:10 gaoze 阅读(1715) 评论(0) 推荐(0)
摘要: 字符串截取 SUBSTRING(str,pos) 参数说明 参数名解释 str 需要拆分的字符串 delim 分隔符,通过某字符进行拆分 count 当 count 为正数,取第 n 个分隔符之前的所有字符; 当 count 为负数,取倒数第 n 个分隔符之后的所有字符。 阅读全文
posted @ 2023-03-30 16:15 gaoze 阅读(27) 评论(0) 推荐(0)
摘要: @Async("threadPoolTaskExecutor")public List<GetPayProjectListVo> getPrivateProject(Page page, DeliveryStatisticSqueryDto dto) { return pmProjectInfoMa 阅读全文
posted @ 2023-03-30 16:13 gaoze 阅读(27) 评论(0) 推荐(0)
摘要: Java contains和indexOf方法 相同点:indexof()方法和Contains()方法都区分大小写 不同点: 1、在区分大小写的情况下,contains()方法效率比indexof()方法效率高 在不不区分大小写的情况下,indexof()方法效率比contains()方法效率高 阅读全文
posted @ 2023-03-30 16:09 gaoze 阅读(329) 评论(0) 推荐(0)
摘要: spring boot服务之间Feign调用 一、服务提供者 1、引入Feign相关依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</art 阅读全文
posted @ 2023-03-30 16:09 gaoze 阅读(442) 评论(0) 推荐(0)
摘要: INSERT INTO itsm_problems(base_id,pro_number)SELECT 45634,CONCAT('ZH_GD',DATE_FORMAT(NOW(),'%Y'),'-',LPAD(IFNULL(CAST(SUBSTR(MAX(pro_number),11,4) AS 阅读全文
posted @ 2022-05-08 02:54 gaoze 阅读(32) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-05-08 02:52 gaoze 阅读(14) 评论(0) 推荐(0)
摘要: 1 .作用:限制时间框的输入范围(下为html部分) <el-form-item label="开始时间"> <el-date-picker v-model="formData.startTime" type="date" :picker-options="pickerOptionsStart" s 阅读全文
posted @ 2022-05-08 02:51 gaoze 阅读(949) 评论(0) 推荐(0)
摘要: /** 浏览页面按钮操作 */async handleAdd() { this.open = true; this.title = "创建数据库表 "; await this.getBuildTableList(); await this.getBuildComplete()}, 阅读全文
posted @ 2022-05-08 02:49 gaoze 阅读(339) 评论(0) 推荐(0)
摘要: this.DataList.filter(item => { var temp = Object.values(item); var tempKey = Object.keys(item); temp.filter((aaa,index) => { // if (typeof(aaa) 'strin 阅读全文
posted @ 2022-05-08 02:49 gaoze 阅读(88) 评论(0) 推荐(0)