type.go 450 B

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