广告平台(站长下代理使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 週之前
123456789101112131415161718192021222324
  1. package md
  2. type MediumListReq struct {
  3. Limit string `json:"limit"`
  4. Page string `json:"page" `
  5. Name string `json:"name"`
  6. State string `json:"state"`
  7. }
  8. type MediumListRes struct {
  9. State []SelectData `json:"state" `
  10. List []MediumListData `json:"list"`
  11. Total int64 `json:"total"`
  12. }
  13. type MediumListData struct {
  14. MediumId string `json:"medium_id" example:"媒体id"`
  15. CompanyName string `json:"company_name" example:"公司名称"`
  16. Id string `json:"id" example:"id"`
  17. Memo string `json:"memo" example:"备注 审核时填写的"`
  18. State string `json:"state" example:"状态(0:待提交 1:待审核 2:审核通过 3:审核拒绝)"`
  19. UnifiedSocialCreditCode string `json:"unified_social_credit_code" example:"统一社会信用代码"`
  20. LegalRepresentative string `json:"legal_representative" example:"法定代表人"`
  21. Account string `json:"account" example:"媒体账号"`
  22. BusinessLicenseAddress string `json:"business_license_address" example:"营业执照地址"`
  23. }