_User.js 619 B

12345678910111213141516171819202122232425262728293031
  1. export const _User = {
  2. "className": "_User",
  3. "fields": {
  4. "avatar": {
  5. "type": "String"
  6. },
  7. "name": {
  8. "type": "String"
  9. },
  10. "mobile": {
  11. "type": "String"
  12. },
  13. // Authing 提供信息
  14. "phone": {
  15. "type": "String"
  16. },
  17. "lastIP":{
  18. "type":"String"
  19. },
  20. "lastLogin": {
  21. "type": "Date"
  22. },
  23. "userSourceType":{
  24. "type": "String"
  25. },
  26. "loginsCount":{
  27. "type": "Number"
  28. }
  29. }
  30. }
  31. module.exports._User = _User