detailStruct.go 321 B

1234567891011121314151617
  1. package service
  2. var (
  3. JyBxSeoDetailRoot *DetailRoot = &DetailRoot{}
  4. )
  5. type (
  6. DetailRoot struct {
  7. }
  8. )
  9. // GetDetail 根据seoId查询标讯详情
  10. // seoId 标讯seoId标识
  11. // isLogin 是否登录,未登录内容加密
  12. func (*DetailRoot) GetDetail(seoId string, isLogin bool) map[string]interface{} {
  13. return nil
  14. }