banner.go 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package source
  2. import (
  3. "encoding/json"
  4. resource "go-common/app/service/main/resource/model"
  5. xtime "go-common/library/time"
  6. )
  7. // Banner str
  8. type Banner struct {
  9. ID int `json:"id"`
  10. ParentID int `json:"-"`
  11. Plat int8 `json:"-"`
  12. Module string `json:"-"`
  13. Position string `json:"-"`
  14. Title string `json:"title"`
  15. Content string `json:"content"`
  16. Image string `json:"image"`
  17. Pic string `json:"pic"`
  18. Hash string `json:"hash"`
  19. URI string `json:"uri"`
  20. Link string `json:"link"`
  21. Goto string `json:"-"`
  22. Value string `json:"-"`
  23. Param string `json:"-"`
  24. Channel string `json:"-"`
  25. Build int `json:"-"`
  26. Condition string `json:"-"`
  27. Area string `json:"-"`
  28. Rule string `json:"-"`
  29. Type int8 `json:"-"`
  30. Start xtime.Time `json:"-"`
  31. End xtime.Time `json:"-"`
  32. MTime xtime.Time `json:"-"`
  33. ResourceID int `json:"resource_id"`
  34. RequestId string `json:"request_id"`
  35. CreativeId int `json:"creative_id"`
  36. SrcId int `json:"src_id"`
  37. IsAd bool `json:"is_ad"`
  38. IsAdReplace bool `json:"-"`
  39. IsAdLoc bool `json:"is_ad_loc"`
  40. CmMark int `json:"cm_mark"`
  41. AdCb string `json:"ad_cb"`
  42. ShowUrl string `json:"show_url"`
  43. ClickUrl string `json:"click_url"`
  44. ClientIp string `json:"client_ip"`
  45. Index int `json:"index"`
  46. Rank int `json:"rank"`
  47. ServerType int `json:"server_type"`
  48. Extra json.RawMessage `json:"extra"`
  49. CreativeType int `json:"creative_type"`
  50. }
  51. // ChangeBanner fn
  52. func (b *Banner) ChangeBanner(banner *resource.Banner) {
  53. b.ID = banner.ID
  54. b.Rank = banner.Index
  55. b.Title = banner.Title
  56. b.Content = banner.Title
  57. b.Image = banner.Image
  58. b.Pic = banner.Image
  59. b.Hash = banner.Hash
  60. b.URI = banner.URI
  61. b.Link = banner.URI
  62. b.ResourceID = banner.ResourceID
  63. b.RequestId = banner.RequestId
  64. b.CreativeId = banner.CreativeId
  65. b.SrcId = banner.SrcId
  66. b.IsAd = banner.IsAd
  67. b.IsAdLoc = banner.IsAdLoc
  68. b.CmMark = banner.CmMark
  69. b.AdCb = banner.AdCb
  70. b.ShowUrl = banner.ShowUrl
  71. b.ClickUrl = banner.ClickUrl
  72. b.ClientIp = banner.ClientIp
  73. b.Index = banner.Index
  74. b.ServerType = banner.ServerType
  75. b.Extra = banner.Extra
  76. b.CreativeType = banner.CreativeType
  77. b.CreativeId = banner.CreativeId
  78. }
  79. // BannerList for operation list.
  80. type BannerList struct {
  81. Banners []*Banner `json:"operations"`
  82. Pn int `json:"pn"`
  83. Ps int `json:"ps"`
  84. Total int `json:"total"`
  85. }