广告平台(站长下代理使用)
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
991 B

  1. package md
  2. type AccountBase struct {
  3. AdminPhone string `json:"admin_phone" example:"管理员手机号"`
  4. Nickname string `json:"nickname" example:"昵称"`
  5. CompanyName string `json:"company_name" example:"公司名称"`
  6. CompanyAbbreviation string `json:"company_abbreviation" example:"公司简称"`
  7. AgentId string `json:"agent_id" example:"账户ID"`
  8. ContactName string `json:"contact_name" example:"联系人"`
  9. ContactEmail string `json:"contact_email" example:"邮箱"`
  10. ContactPhone string `json:"contact_phone" example:"联系电话"`
  11. ContactAddress string `json:"contact_address" example:"联系地址"`
  12. CurrencyConf string `json:"currency_conf" example:"结算币种"`
  13. CountryRegion string `json:"country_region" example:"国家地区"`
  14. }
  15. type AccountUpdatePasswordReq struct {
  16. PassWord string `json:"password" example:"登录密码"`
  17. Captcha string `json:"captcha" example:"验证码"`
  18. }