【新增】对象存储

This commit is contained in:
PandaGoAdmin
2022-01-13 17:48:45 +08:00
parent 2f4995753a
commit 9094780f40
25 changed files with 777 additions and 22 deletions

14
base/utils/ddm.go Normal file
View File

@@ -0,0 +1,14 @@
package utils
/**
* @Description 添加qq群467890197 交流学习
* @Author 熊猫
* @Date 2022/1/13 17:16
**/
func Ddm(data string) string {
if len(data) < 6 {
return data
}
return data[:3] + "****" + data[len(data)-3:]
}