mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
22 lines
450 B
Go
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
|