This commit is contained in:
2023-10-19 17:25:09 +08:00
parent a20f8dc7fa
commit b1919eb898
7 changed files with 24 additions and 14 deletions

38
define/strategy_type.go Normal file
View File

@ -0,0 +1,38 @@
// Package data_mask ...
//
// Description : data_mask ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-05-23 14:26
package define
const (
// TypeDefault 默认实现
TypeDefault = "DEFAULT_DATA_MASK"
// TypeMail 邮箱数据脱敏
TypeMail = "MAIL_DATA_MASK"
// TypePhone 手机号脱敏
TypePhone = "PHONE_DATA_MASK"
// TypePassword 密码数据脱敏
TypePassword = "PASSWORD_DATA_MASK"
)
// TypeDesc 脱敏类型描述
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 11:34 2023/5/25
type TypeDesc struct {
Type string `json:"type"` // 数据脱敏类型
Desc string `json:"desc"` // 脱敏类型描述
}
var (
TypeList = []TypeDesc{
{TypeDefault, "默认策略"},
{TypeMail, "邮箱数据脱敏"},
{TypePhone, "手机号数据脱敏"},
{TypePassword, "密码数据脱敏"},
}
)