web_info.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package model
  2. // User user info
  3. type User struct {
  4. Mid int64 `json:"mid"`
  5. Uname string `json:"uname"`
  6. Userid string `json:"userid"`
  7. Sign string `json:"sign"`
  8. Birthday string `json:"birthday"`
  9. Sex string `json:"sex"`
  10. NickFree bool `json:"nick_free"`
  11. }
  12. // Settings settings
  13. type Settings struct {
  14. Uname string `json:"uname"`
  15. Sign string `json:"sign"`
  16. Sex string `json:"sex"`
  17. Birthday string `json:"birthday"`
  18. }
  19. // LogCoins log money
  20. type LogCoins struct {
  21. List []*LogCoin `json:"list"`
  22. Count int `json:"count"`
  23. }
  24. // Coin coin.
  25. type Coin struct {
  26. Money float64 `json:"money"`
  27. }
  28. // LogCoin money
  29. type LogCoin struct {
  30. Time string `json:"time"`
  31. Delta float64 `json:"delta"`
  32. Reason string `json:"reason"`
  33. }
  34. // LogMorals log moral
  35. type LogMorals struct {
  36. Moral int64 `json:"moral"`
  37. List []*LogMoral `json:"list"`
  38. Count int `json:"count"`
  39. }
  40. // LogMoral moral
  41. type LogMoral struct {
  42. Origin string `json:"origin"`
  43. Delta float64 `json:"delta"`
  44. Reason string `json:"reason"`
  45. Time string `json:"time"`
  46. }
  47. // LogExps log exp
  48. type LogExps struct {
  49. List []*LogExp `json:"list"`
  50. Count int `json:"count"`
  51. }
  52. // LogExp exp
  53. type LogExp struct {
  54. Delta float64 `json:"delta"`
  55. Time string `json:"time"`
  56. Reason string `json:"reason"`
  57. }
  58. // LogLogins log login
  59. type LogLogins struct {
  60. Count int `json:"count"`
  61. List []*LogLogin `json:"list"`
  62. }
  63. // LogLogin logLogin
  64. type LogLogin struct {
  65. IP string `json:"ip"`
  66. Time int64 `json:"time"`
  67. TimeAt string `json:"time_at"`
  68. Status bool `json:"status"`
  69. Type int64 `json:"type"`
  70. Geo string `json:"geo"`
  71. }
  72. // Reward exp reward.
  73. type Reward struct {
  74. Login bool `json:"login"`
  75. Watch bool `json:"watch"`
  76. Coin int64 `json:"coins"`
  77. Share bool `json:"share"`
  78. }
  79. // OfficialApply .
  80. type OfficialApply struct {
  81. Role int8 `form:"role" validate:"min=0,max=6" json:"role"`
  82. Name string `form:"name" validate:"required" json:"name"`
  83. Title string `form:"title" validate:"required" json:"title"`
  84. Desc string `form:"desc" json:"desc"`
  85. Realname int8 `form:"realname" json:"realname"`
  86. Operator string `form:"operator" json:"operator"`
  87. Telephone string `form:"telephone" json:"telephone"`
  88. TelVerifyCode int64 `form:"tel_verify_code" json:"tel_verify_code"`
  89. Email string `form:"email" json:"email"`
  90. Address string `form:"address" json:"address"`
  91. Company string `form:"company" json:"company"`
  92. CreditCode string `form:"credit_code" json:"credit_code"` // 社会信用代码
  93. Organization string `form:"organization" json:"organization"` // 政府或组织名称
  94. OrganizationType string `form:"organization_type" json:"organization_type"` // 组织或机构类型
  95. BusinessLicense string `form:"business_license" json:"business_license"` // 企业营业执照
  96. BusinessScale string `form:"business_scale" json:"business_scale"` // 企业规模
  97. BusinessLevel string `form:"business_level" json:"business_level"` // 企业登记
  98. BusinessAuth string `form:"business_auth" json:"business_auth"` // 企业授权函
  99. Supplement string `form:"supplement" json:"supplement"` // 其他补充材料
  100. Professional string `form:"professional" json:"professional"` // 专业资质
  101. Identification string `form:"identification" json:"identification"` // 身份认证
  102. OfficialSite string `form:"official_site" json:"official_site"` // 官方站点
  103. RegisteredCapital string `form:"registered_capital" json:"registered_capital"` // 注册资本
  104. }
  105. // OfficialSubmittedTimes is
  106. type OfficialSubmittedTimes struct {
  107. Submitted int64 `json:"submitted"`
  108. Remain int64 `json:"remain"`
  109. }
  110. // OfficialConditions is official conditions
  111. type OfficialConditions struct {
  112. IsFormal bool `json:"is_formal"`
  113. BindTel bool `json:"bind_tel"`
  114. Realname bool `json:"realname"`
  115. FollowerCount bool `json:"follower_count"`
  116. ArchiveCount bool `json:"archive_count"`
  117. // ViewCount bool `json:"view_count"`
  118. }
  119. // ArgMobileVerify is.
  120. type ArgMobileVerify struct {
  121. Mobile string `form:"mobile" validate:"required"`
  122. Country int64 `form:"country"`
  123. }
  124. // AllPass is
  125. func (cons *OfficialConditions) AllPass() bool {
  126. return cons.IsFormal &&
  127. cons.BindTel &&
  128. cons.Realname &&
  129. cons.FollowerCount &&
  130. cons.ArchiveCount // &&
  131. // cons.ViewCount
  132. }