Files
go-gin-api/pkg/ddm/type.go
T
2021-06-12 16:19:29 +08:00

22 lines
450 B
Go

package ddm
// Mobile 手机号 132****7986
type Mobile string
// BankCard 银行卡号 622888******5676
type BankCard string
// IDCard 身份证号 1******7
type IDCard string
// IDName 姓名 *鸿章
// TODO:参考 https://blog.thinkeridea.com/201910/go/efficient_string_truncation.html
// Deprecated:有更好的性能选择
type IDName string
// PassWord 密码 ******
type PassWord string
// Email 邮箱 l***w@gmail.com
type Email string