Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pengjinning committed May 22, 2024
1 parent 992f562 commit e8ba028
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 29 deletions.
37 changes: 36 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,39 @@
{
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "automatic"
"java.configuration.updateBuildConfiguration": "automatic",
// 头部注释 https://github.com/OBKoro1/koro1FileHeader/wiki/%E5%AE%89%E8%A3%85%E5%92%8C%E5%BF%AB%E9%80%9F%E4%B8%8A%E6%89%8B
"fileheader.customMade": {
// Author字段是文件的创建者 可以在specialOptions中更改特殊属性
// 公司项目和个人项目可以配置不同的用户名与邮箱 搜索: gitconfig includeIf 比如: https://ayase.moe/2021/03/09/customized-git-config/
// 自动提取当前git config中的: 用户名、邮箱
"Author": "jackning 270580156@qq.com", // 同时获取用户名与邮箱
// "Author": "git config user.name", // 仅获取用户名
// "Author": "git config user.email", // 仅获取邮箱
// "Author": "OBKoro1", // 写死的固定值 不从git config中获取
"Date": "Do not edit", // 文件创建时间(不变)
// LastEditors、LastEditTime、FilePath将会自动更新 如果觉得时间更新的太频繁可以使用throttleTime(默认为1分钟)配置更改更新时间。
"LastEditors": "jackning 270580156@qq.com", // 文件最后编辑者 与Author字段一致
// 由于编辑文件就会变更最后编辑时间,多人协作中合并的时候会导致merge
// 可以将时间颗粒度改为周、或者月,这样冲突就减少很多。搜索变更时间格式: dateFormat
"LastEditTime": "Do not edit", // 文件最后编辑时间
// 输出相对路径,类似: /文件夹名称/src/index.js
// "FilePath": "Do not edit", // 文件在项目中的相对路径 自动更新
// 插件会自动将光标移动到Description选项中 方便输入 Description字段可以在specialOptions更改
"Description": "bytedesk.com https://github.com/Bytedesk/bytedesk", // 介绍文件的作用、文件的入参、出参。
// custom_string_obkoro1~custom_string_obkoro100都可以输出自定义信息
// 可以设置多条自定义信息 设置个性签名、留下QQ、微信联系方式、输入空行等
"custom_string_obkoro1": " Please be aware of the BSL license restrictions before installing Bytedesk IM – \n selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license. \n 仅支持企业内部员工自用,严禁私自用于销售、二次销售或者部署SaaS方式销售 \n Business Source License 1.1: https://github.com/Bytedesk/bytedesk/blob/main/LICENSE \n contact: 270580156@qq.com \n 联系:270580156@qq.com",
// 版权声明 保留文件所有权利 自动替换年份 获取git配置的用户名和邮箱
// 版权声明获取git配置, 与Author字段一致: ${git_name} ${git_email} ${git_name_email}
"custom_string_obkoro1_copyright": "Copyright (c) ${now_year} by bytedesk.com, All Rights Reserved. "
// "custom_string_obkoro1_copyright": "Copyright (c) ${now_year} by 写死的公司名/用户名, All Rights Reserved. "
},
// 函数注释
"fileheader.cursorMode": {
"description": "", // 函数注释生成之后,光标移动到这里
"param": "", // param 开启函数参数自动提取 需要将光标放在函数行或者函数上方的空白行
"return": ""
},
"CodeGPT.apiKey": "CodeGPT Plus Beta",
"java.jdt.ls.vmargs": "-noverify -Xmx8G -XX:+UseG1GC -XX:+UseStringDeduplication"
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.bytedesk.core;
// package com.bytedesk.core;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
// import org.junit.jupiter.api.Test;
// import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class CoreApplicationTests {
// @SpringBootTest
// class CoreApplicationTests {

@Test
void contextLoads() {
}
// @Test
// void contextLoads() {
// }

}
// }
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-01-29 15:51:17
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2024-03-25 11:28:24
* @LastEditTime: 2024-05-22 09:11:31
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM –
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
Expand All @@ -12,16 +12,16 @@
* 联系:270580156@qq.com
* Copyright (c) 2024 by bytedesk.com, All Rights Reserved.
*/
package com.bytedesk.service;
// package com.bytedesk.service;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
// import org.junit.jupiter.api.Test;
// import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class AgentApplicationTests {
// @SpringBootTest
// class AgentApplicationTests {

@Test
void contextLoads() {
}
// @Test
// void contextLoads() {
// }

}
// }
Original file line number Diff line number Diff line change
@@ -1,13 +1,34 @@
package com.bytedesk.social;
/*
* @Author: jackning 270580156@qq.com
*
* @Date: 2024-03-04 09:51:24
*
* @LastEditors: jackning 270580156@qq.com
*
* @LastEditTime: 2024-05-22 09:11:47
*
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* –
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the
* terms and automatically terminates your rights under the license.
* 仅支持企业内部员工自用,严禁私自用于销售、二次销售或者部署SaaS方式销售
* Business Source License 1.1:
* https://github.com/Bytedesk/bytedesk/blob/main/LICENSE
* contact: 270580156@qq.com
* 联系:270580156@qq.com
* Copyright (c) 2024 by bytedesk.com, All Rights Reserved.
*/
// package com.bytedesk.social;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
// import org.junit.jupiter.api.Test;
// import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class SocialApplicationTests {
// @SpringBootTest
// class SocialApplicationTests {

@Test
void contextLoads() {
}
// @Test
// void contextLoads() {
// }

}
// }

0 comments on commit e8ba028

Please sign in to comment.